Home
last modified time | relevance | path

Searched refs:mleft (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/v8/src/compiler/
Dmachine-operator-reducer.cc68 Int32BinopMatcher mleft(m.left().node()); in Reduce() local
70 if (mleft.left().node() == mright.left().node()) { in Reduce()
75 mrightright.right().node() == mleft.right().node()) { in Reduce()
77 node->ReplaceInput(0, mleft.left().node()); in Reduce()
78 node->ReplaceInput(1, mleft.right().node()); in Reduce()
83 if (mleft.right().IsInRange(0, 31) && in Reduce()
84 mright.right().Is(32 - mleft.right().Value())) { in Reduce()
86 node->ReplaceInput(0, mleft.left().node()); in Reduce()
87 node->ReplaceInput(1, mleft.right().node()); in Reduce()
94 Int32BinopMatcher mleft(m.left().node()); in Reduce() local
[all …]
/external/chromium_org/v8/src/compiler/arm/
Dinstruction-selector-arm.cc401 Int32BinopMatcher mleft(m.left().node()); in VisitWord32And() local
402 if (mleft.right().Is(-1)) { in VisitWord32And()
403 EmitBic(this, node, m.right().node(), mleft.left().node()); in VisitWord32And()
421 Int32BinopMatcher mleft(m.left().node()); in VisitWord32And() local
422 if (mleft.right().IsInRange(0, 31)) { in VisitWord32And()
424 g.UseRegister(mleft.left().node()), in VisitWord32And()
425 g.UseImmediate(mleft.right().node()), g.TempImmediate(width)); in VisitWord32And()
526 Int32BinopMatcher mleft(m.left().node()); in VisitWord32Shr() local
527 if (mleft.right().HasValue()) { in VisitWord32Shr()
528 uint32_t value = (mleft.right().Value() >> lsb) << lsb; in VisitWord32Shr()
[all …]