Lines Matching refs:BranchGenerator
50 class BranchOnCondition : public BranchGenerator {
53 : BranchGenerator(codegen), in BranchOnCondition()
76 class CompareAndBranch : public BranchGenerator {
82 : BranchGenerator(codegen), in CompareAndBranch()
106 class TestAndBranch : public BranchGenerator {
112 : BranchGenerator(codegen), in TestAndBranch()
154 class BranchIfNonZeroNumber : public BranchGenerator {
158 : BranchGenerator(codegen), value_(value), scratch_(scratch) { } in BranchIfNonZeroNumber()
181 class BranchIfHeapNumber : public BranchGenerator {
184 : BranchGenerator(codegen), value_(value) { } in BranchIfHeapNumber()
200 class BranchIfRoot : public BranchGenerator {
204 : BranchGenerator(codegen), value_(value), index_(index) { } in BranchIfRoot()
1376 const BranchGenerator& branch) { in EmitBranchGeneric()