Lines Matching refs:BranchGenerator
73 class BranchOnCondition : public BranchGenerator {
76 : BranchGenerator(codegen), in BranchOnCondition()
99 class CompareAndBranch : public BranchGenerator {
105 : BranchGenerator(codegen), in CompareAndBranch()
129 class TestAndBranch : public BranchGenerator {
135 : BranchGenerator(codegen), in TestAndBranch()
177 class BranchIfNonZeroNumber : public BranchGenerator {
181 : BranchGenerator(codegen), value_(value), scratch_(scratch) { } in BranchIfNonZeroNumber()
204 class BranchIfHeapNumber : public BranchGenerator {
207 : BranchGenerator(codegen), value_(value) { } in BranchIfHeapNumber()
223 class BranchIfRoot : public BranchGenerator {
227 : BranchGenerator(codegen), value_(value), index_(index) { } in BranchIfRoot()
1224 const BranchGenerator& branch) { in EmitBranchGeneric()