/external/v8/test/cctest/compiler/ |
D | test-branch-combine.cc | 78 m.Branch(m.Int32LessThan(p0, m.Int32Constant(0)), &blocka, &blockb); in TEST() 144 m.Branch(m.Int32LessThan(m.Int32Constant(0), p0), &blocka, &blockb); in TEST() 248 if (op == 0) m.Branch(m.Int32LessThan(p0, p1), &blocka, &blockb); in TEST() 281 if (op == 0) m.Branch(m.Int32LessThan(p0, p1), &blocka, &blockb); in TEST()
|
D | codegen-tester.h | 458 return machine->Int32LessThan(); in op()
|
D | test-machine-operator-reducer.cc | 606 R.binop = R.machine.Int32LessThan(); in TEST()
|
D | test-js-typed-lowering.cc | 1203 R.machine.Int32LessThan(), R.simplified.NumberLessThan(), false}, in TEST() 1208 R.machine.Int32LessThan(), R.simplified.NumberLessThan(), true}, in TEST()
|
D | test-simplified-lowering.cc | 500 Node* condition = t.Int32LessThan(index, limit); in RunCopyElements() 791 return graph()->NewNode(machine()->Int32LessThan(), node, in Use() 1227 const Operator* ops[] = {t.machine()->Int32LessThan(), in TEST()
|
D | test-run-machops.cc | 411 m.machine()->Int32LessThan(), m.machine()->Int32LessThanOrEqual(), in TEST() 979 m.Branch(m.Int32LessThan(phi, bt.param0), &body, &end); in TEST() 3535 m.machine()->Uint32MulHigh(), m.machine()->Int32LessThan(), in TEST()
|
/external/v8/test/unittests/compiler/ |
D | machine-operator-unittest.cc | 218 PURE(Int32LessThan, 2, 0, 1), // -- 394 EXPECT_EQ(machine.Int32LessThan(), machine.IntLessThan()); in TEST_F()
|
/external/v8/src/compiler/ |
D | int64-lowering.cc | 476 LowerComparison(node, machine()->Int32LessThan(), in LowerNode() 481 LowerComparison(node, machine()->Int32LessThan(), in LowerNode() 652 graph()->NewNode(machine()->Int32LessThan(), masked_shift6, in LowerNode()
|
D | raw-machine-assembler.h | 264 Node* Int32LessThan(Node* a, Node* b) { in Int32LessThan() function 265 return AddNode(machine()->Int32LessThan(), a, b); in Int32LessThan() 285 Node* Int32GreaterThan(Node* a, Node* b) { return Int32LessThan(b, a); } in Int32GreaterThan()
|
D | simplified-lowering.cc | 2813 graph()->NewNode(machine()->Int32LessThan(), zero, input), input, in Int32Abs() 2850 Node* check0 = graph()->NewNode(machine()->Int32LessThan(), zero, rhs); in Int32Div() 2860 Node* check1 = graph()->NewNode(machine()->Int32LessThan(), rhs, minus_one); in Int32Div() 2928 Node* check0 = graph()->NewNode(machine()->Int32LessThan(), zero, rhs); in Int32Mod() 2946 Node* check2 = graph()->NewNode(machine()->Int32LessThan(), lhs, zero); in Int32Mod() 2971 Node* check1 = graph()->NewNode(machine()->Int32LessThan(), rhs, minus_one); in Int32Mod()
|
D | code-assembler.h | 51 V(Int32LessThan) \
|
D | machine-operator.h | 244 const Operator* Int32LessThan();
|
D | opcodes.h | 271 V(Int32LessThan) \
|
D | representation-change.cc | 604 return machine()->Int32LessThan(); in Int32OperatorFor()
|
D | effect-control-linearizer.cc | 542 machine()->Int32LessThan(), in LowerChangeFloat64ToTagged() 925 machine()->Int32LessThan(), in BuildCheckedFloat64ToInt32()
|
D | machine-operator.cc | 96 V(Int32LessThan, Operator::kNoProperties, 2, 0, 1) \
|
D | wasm-compiler.cc | 428 op = m->Int32LessThan(); in Binop() 440 op = m->Int32LessThan(); in Binop() 2030 machine->Int32LessThan(), in BuildChangeFloat64ToTagged()
|
D | machine-operator-reducer.cc | 654 0, graph()->NewNode(machine()->Int32LessThan(), dividend, zero)); in ReduceInt32Mod()
|
/external/v8/src/ |
D | code-stubs.cc | 596 assembler->Branch(assembler->Int32LessThan( in Generate() 648 assembler->Branch(assembler->Int32LessThan( in Generate() 724 assembler->Branch(assembler->Int32LessThan( in Generate() 2090 assembler->Branch(assembler->Int32LessThan( in GenerateAbstractRelationalComparison() 2103 assembler->Branch(assembler->Int32LessThan( in GenerateAbstractRelationalComparison() 2474 assembler->Branch(assembler->Int32LessThan( in GenerateEqual() 2594 assembler->Branch(assembler->Int32LessThan( in GenerateEqual() 2646 assembler->Int32LessThan( in GenerateEqual() 3072 assembler->Branch(assembler->Int32LessThan( in GenerateStrictEqual() 3085 assembler->Branch(assembler->Int32LessThan( in GenerateStrictEqual() [all …]
|
D | code-stub-assembler.cc | 1150 Branch(Int32LessThan(value, Int32Constant(0)), &if_overflow, in ChangeUint32ToTagged() 1197 Int32LessThan(value_instance_type, Int32Constant(FIRST_NONSTRING_TYPE)), in ToThisString() 2154 Assert(Int32LessThan(LoadInstanceType(string), in TryLookupElement() 2157 GotoIf(Int32LessThan(index, SmiToWord32(length)), if_found); in TryLookupElement() 2164 Assert(Int32LessThan(LoadInstanceType(string), in TryLookupElement() 2167 GotoIf(Int32LessThan(index, SmiToWord32(length)), if_found); in TryLookupElement()
|
/external/v8/src/interpreter/ |
D | interpreter-assembler.cc | 733 Node* condition = Int32LessThan(index, RegisterCount()); in ExportRegisterFile() 767 Node* condition = Int32LessThan(index, RegisterCount()); in ImportRegisterFile()
|
D | interpreter-intrinsics.cc | 310 Node* comparison = __ Int32LessThan(target_args_count, __ Int32Constant(0)); in Call()
|
/external/v8/test/unittests/compiler/mips/ |
D | instruction-selector-mips-unittest.cc | 194 {{&RawMachineAssembler::Int32LessThan, "Int32LessThan", kMipsCmp,
|
/external/v8/test/unittests/compiler/mips64/ |
D | instruction-selector-mips64-unittest.cc | 206 {{&RawMachineAssembler::Int32LessThan, "Int32LessThan", kMips64Cmp,
|
/external/v8/test/unittests/compiler/x64/ |
D | instruction-selector-x64-unittest.cc | 179 {&RawMachineAssembler::Int32LessThan, "Int32LessThan"},
|