Searched refs:mleft (Results 1 – 2 of 2) sorted by relevance
/external/chromium_org/v8/src/compiler/ |
D | machine-operator-reducer.cc | 68 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/ |
D | instruction-selector-arm.cc | 401 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 …]
|