Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dmachine-operator-reducer.cc292 Int32BinopMatcher mleft(m.left().node()); in Reduce() local
293 if (mleft.right().HasValue()) { in Reduce()
297 const uint32_t k = mleft.right().Value() & 0x1F; in Reduce()
299 node->ReplaceInput(0, mleft.left().node()); in Reduce()
708 Int32BinopMatcher mleft(m.left().node()); in ReduceInt32Add() local
709 if (mleft.left().Is(0)) { // (0 - x) + y => y - x in ReduceInt32Add()
711 node->ReplaceInput(1, mleft.right().node()); in ReduceInt32Add()
953 Int32BinopMatcher mleft(m.left().node()); in ReduceStore() local
954 if (mleft.right().Is(m.right().Value())) { in ReduceStore()
955 node->ReplaceInput(value_input, mleft.left().node()); in ReduceStore()
[all …]
Dnode-matchers.h769 LoadMatcher<LoadMatcher<NodeMatcher>> mleft(l.node()); in MatchedInternal()
770 if (mleft.object().IsLoad() && mleft.index().Is(0) && in MatchedInternal()
771 mleft.object().object().IsParameter()) { in MatchedInternal()
798 LoadMatcher<ExternalReferenceMatcher> mleft(l.node()); in MatchedInternal()
801 if (mleft.object().Is(js_stack_limit) && mleft.index().Is(0)) return true; in MatchedInternal()
/external/v8/src/compiler/ppc/
Dinstruction-selector-ppc.cc393 Matcher mleft(m->left().node()); in VisitLogical() local
394 if (mleft.right().Is(-1)) { in VisitLogical()
397 g.UseRegister(mleft.left().node())); in VisitLogical()
457 Int32BinopMatcher mleft(m.left().node()); in VisitWord32And() local
458 if (mleft.right().IsInRange(0, 31)) { in VisitWord32And()
459 left = mleft.left().node(); in VisitWord32And()
460 sh = mleft.right().Value(); in VisitWord32And()
496 Int64BinopMatcher mleft(m.left().node()); in VisitWord64And() local
497 if (mleft.right().IsInRange(0, 63)) { in VisitWord64And()
498 left = mleft.left().node(); in VisitWord64And()
[all …]
/external/v8/src/compiler/mips/
Dinstruction-selector-mips.cc411 Int32BinopMatcher mleft(m.left().node()); in VisitWord32And() local
412 if (mleft.right().HasValue()) { in VisitWord32And()
414 uint32_t lsb = mleft.right().Value() & 0x1F; in VisitWord32And()
423 Emit(kArchNop, g.DefineSameAsFirst(node), g.Use(mleft.left().node())); in VisitWord32And()
426 g.UseRegister(mleft.left().node()), g.TempImmediate(lsb), in VisitWord32And()
459 Int32BinopMatcher mleft(m.left().node()); in VisitWord32Xor() local
460 if (!mleft.right().HasValue()) { in VisitWord32Xor()
463 g.UseRegister(mleft.left().node()), in VisitWord32Xor()
464 g.UseRegister(mleft.right().node())); in VisitWord32Xor()
484 Int32BinopMatcher mleft(m.left().node()); in VisitWord32Shl() local
[all …]
/external/v8/src/compiler/mips64/
Dinstruction-selector-mips64.cc517 Int32BinopMatcher mleft(m.left().node()); in VisitWord32And() local
518 if (mleft.right().HasValue()) { in VisitWord32And()
520 uint32_t lsb = mleft.right().Value() & 0x1F; in VisitWord32And()
529 g.UseRegister(mleft.left().node()), g.TempImmediate(lsb), in VisitWord32And()
567 Int64BinopMatcher mleft(m.left().node()); in VisitWord64And() local
568 if (mleft.right().HasValue()) { in VisitWord64And()
570 uint32_t lsb = static_cast<uint32_t>(mleft.right().Value() & 0x3F); in VisitWord64And()
579 Emit(kArchNop, g.DefineSameAsFirst(node), g.Use(mleft.left().node())); in VisitWord64And()
582 g.UseRegister(mleft.left().node()), g.TempImmediate(lsb), in VisitWord64And()
622 Int32BinopMatcher mleft(m.left().node()); in VisitWord32Xor() local
[all …]
/external/v8/src/compiler/arm64/
Dinstruction-selector-arm64.cc817 Matcher mleft(m->left().node()); in VisitLogical() local
818 if (mleft.right().Is(-1)) { in VisitLogical()
822 g.UseRegister(mleft.left().node())); in VisitLogical()
867 Int32BinopMatcher mleft(m.left().node()); in VisitWord32And() local
868 if (mleft.right().HasValue()) { in VisitWord32And()
870 uint32_t lsb = mleft.right().Value() & 0x1F; in VisitWord32And()
879 g.UseRegister(mleft.left().node()), in VisitWord32And()
880 g.UseImmediateOrTemp(mleft.right().node(), lsb), in VisitWord32And()
908 Int64BinopMatcher mleft(m.left().node()); in VisitWord64And() local
909 if (mleft.right().HasValue()) { in VisitWord64And()
[all …]
/external/v8/src/compiler/arm/
Dinstruction-selector-arm.cc800 Int32BinopMatcher mleft(m.left().node()); in VisitWord32And() local
801 if (mleft.right().Is(-1)) { in VisitWord32And()
802 EmitBic(this, node, m.right().node(), mleft.left().node()); in VisitWord32And()
967 Int32BinopMatcher mleft(m.left().node()); in VisitWord32Shr() local
968 if (mleft.right().HasValue()) { in VisitWord32Shr()
969 uint32_t value = (mleft.right().Value() >> lsb) << lsb; in VisitWord32Shr()
974 return EmitUbfx(this, node, mleft.left().node(), lsb, width); in VisitWord32Shr()
986 Int32BinopMatcher mleft(m.left().node()); in VisitWord32Sar() local
987 if (m.right().HasValue() && mleft.right().HasValue()) { in VisitWord32Sar()
989 uint32_t shl = mleft.right().Value(); in VisitWord32Sar()
[all …]
/external/v8/src/compiler/s390/
Dinstruction-selector-s390.cc874 Int64BinopMatcher mleft(m.left().node()); in VisitWord64And() local
875 if (mleft.right().IsInRange(0, 63)) { in VisitWord64And()
876 left = mleft.left().node(); in VisitWord64And()
877 sh = mleft.right().Value(); in VisitWord64And()
920 Int64BinopMatcher mleft(m.left().node()); in VisitWord64Shl() local
924 if (mleft.right().HasValue() && in VisitWord64Shl()
925 IsContiguousMask64(mleft.right().Value() << sh, &mb, &me)) { in VisitWord64Shl()
947 g.UseRegister(mleft.left().node()), g.TempImmediate(sh), in VisitWord64Shl()
961 Int64BinopMatcher mleft(m.left().node()); in VisitWord64Shr() local
965 if (mleft.right().HasValue() && in VisitWord64Shr()
[all …]
/external/v8/src/compiler/x64/
Dinstruction-selector-x64.cc683 BaseWithIndexAndDisplacement64Matcher mleft(m.left().node(), in TryMatchLoadWord64AndShiftRight() local
685 if (mleft.matches() && (mleft.displacement() == nullptr || in TryMatchLoadWord64AndShiftRight()
686 g.CanBeImmediate(mleft.displacement()))) { in TryMatchLoadWord64AndShiftRight()
691 if (mleft.displacement() == nullptr) { in TryMatchLoadWord64AndShiftRight()
742 int32_t displacement = g.GetImmediateIntegerValue(mleft.displacement()); in TryMatchLoadWord64AndShiftRight()
765 Int32BinopMatcher mleft(m.left().node()); in VisitWord32Sar() local
766 if (mleft.right().Is(16) && m.right().Is(16)) { in VisitWord32Sar()
767 Emit(kX64Movsxwl, g.DefineAsRegister(node), g.Use(mleft.left().node())); in VisitWord32Sar()
769 } else if (mleft.right().Is(24) && m.right().Is(24)) { in VisitWord32Sar()
770 Emit(kX64Movsxbl, g.DefineAsRegister(node), g.Use(mleft.left().node())); in VisitWord32Sar()
[all …]
/external/v8/src/compiler/ia32/
Dinstruction-selector-ia32.cc1618 Float64Matcher mleft(left); in VisitFloat64InsertLowWord32() local
1619 if (mleft.HasValue() && (bit_cast<uint64_t>(mleft.Value()) >> 32) == 0u) { in VisitFloat64InsertLowWord32()
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/link/20130806_221321-fw_1.0.AA-robot/
Dtouch_firmware_report-link-fw_1.0.AA-robot-20130806_2213213184 Use one finger to tap on the left hand side of the touch surface.
3219 Use one finger to tap on the left hand side of the touch surface.
3254 Use one finger to tap on the left hand side of the touch surface.