Home
last modified time | relevance | path

Searched refs:Int32BinopMatcher (Results 1 – 8 of 8) sorted by relevance

/external/v8/src/compiler/
Dmachine-operator-reducer.cc50 Int32BinopMatcher m(node); in Reduce()
60 Int32BinopMatcher m(node); in Reduce()
68 Int32BinopMatcher mleft(m.left().node()); in Reduce()
69 Int32BinopMatcher mright(m.right().node()); in Reduce()
73 Int32BinopMatcher mrightright(mright.right().node()); in Reduce()
94 Int32BinopMatcher mleft(m.left().node()); in Reduce()
95 Int32BinopMatcher mright(m.right().node()); in Reduce()
98 Int32BinopMatcher mleftright(mleft.right().node()); in Reduce()
120 Int32BinopMatcher m(node); in Reduce()
129 Int32BinopMatcher m(node); in Reduce()
[all …]
Dnode-matchers.h136 typedef BinopMatcher<Int32Matcher, Int32Matcher> Int32BinopMatcher; typedef
Dinstruction-selector.cc618 Int32BinopMatcher m(node); in VisitWord32Equal()
877 Int32BinopMatcher m(value); in VisitBranch()
/external/v8/src/compiler/arm/
Dinstruction-selector-arm.cc127 Int32BinopMatcher m(node); in TryMatchROR()
146 Int32BinopMatcher m(node); in TryMatchASR()
165 Int32BinopMatcher m(node); in TryMatchLSL()
184 Int32BinopMatcher m(node); in TryMatchLSR()
233 Int32BinopMatcher m(node); in VisitBinop()
399 Int32BinopMatcher m(node); in VisitWord32And()
401 Int32BinopMatcher mleft(m.left().node()); in VisitWord32And()
408 Int32BinopMatcher mright(m.right().node()); in VisitWord32And()
421 Int32BinopMatcher mleft(m.left().node()); in VisitWord32And()
454 Int32BinopMatcher m(node); in VisitWord32Xor()
[all …]
/external/v8/src/compiler/arm64/
Dinstruction-selector-arm64.cc271 VisitBinop<Int32BinopMatcher>(this, node, kArm64And32, kLogical32Imm); in VisitWord32And()
281 VisitBinop<Int32BinopMatcher>(this, node, kArm64Or32, kLogical32Imm); in VisitWord32Or()
292 Int32BinopMatcher m(node); in VisitWord32Xor()
296 VisitBinop<Int32BinopMatcher>(this, node, kArm64Xor32, kLogical32Imm); in VisitWord32Xor()
353 VisitBinop<Int32BinopMatcher>(this, node, kArm64Add32, kArithmeticImm); in VisitInt32Add()
364 Int32BinopMatcher m(node); in VisitInt32Sub()
369 VisitBinop<Int32BinopMatcher>(this, node, kArm64Sub32, kArithmeticImm); in VisitInt32Sub()
518 VisitBinop<Int32BinopMatcher>(this, node, kArm64Add32, kArithmeticImm, cont); in VisitInt32AddWithOverflow()
524 VisitBinop<Int32BinopMatcher>(this, node, kArm64Sub32, kArithmeticImm, cont); in VisitInt32SubWithOverflow()
/external/v8/src/compiler/ia32/
Dinstruction-selector-ia32.cc168 Int32BinopMatcher m(node); in VisitBinop()
227 Int32BinopMatcher m(node); in VisitWord32Xor()
248 Int32BinopMatcher m(node); in VisitShift()
250 Int32BinopMatcher mright(right); in VisitShift()
288 Int32BinopMatcher m(node); in VisitInt32Sub()
/external/v8/src/compiler/x64/
Dinstruction-selector-x64.cc180 Int32BinopMatcher m(node); in VisitBinop()
281 Int32BinopMatcher m(node); in VisitWord32Shift()
283 Int32BinopMatcher mright(right); in VisitWord32Shift()
372 Int32BinopMatcher m(node); in VisitInt32Sub()
/external/v8/test/cctest/compiler/
Dtest-simplified-lowering.cc1278 Int32BinopMatcher index(load_or_store->InputAt(1)); in CheckElementAccessArithmetic()
1285 Int32BinopMatcher mul(index.left().node()); in CheckElementAccessArithmetic()