/external/v8/src/compiler/ |
D | simd-scalar-lowering.cc | 760 is_signed ? machine()->Int32LessThan() : machine()->Uint32LessThan(); in LowerPack() 1054 LowerIntMinMax(node, machine()->Uint32LessThan(), true, rep_type); in LowerNode() 1060 LowerIntMinMax(node, machine()->Uint32LessThan(), false, rep_type); in LowerNode() 1279 COMPARISON_CASE(Int32x4, kI32x4LtU, Uint32LessThan, false) in LowerNode() 1281 COMPARISON_CASE(Int32x4, kI32x4GtU, Uint32LessThan, true) in LowerNode() 1288 COMPARISON_CASE(Int16x8, kI16x8LtU, Uint32LessThan, false) in LowerNode() 1290 COMPARISON_CASE(Int16x8, kI16x8GtU, Uint32LessThan, true) in LowerNode() 1297 COMPARISON_CASE(Int8x16, kI8x16LtU, Uint32LessThan, false) in LowerNode() 1299 COMPARISON_CASE(Int8x16, kI8x16GtU, Uint32LessThan, true) in LowerNode()
|
D | int64-lowering.cc | 563 machine()->Uint32LessThan()); in LowerNode() 572 LowerComparison(node, machine()->Uint32LessThan(), in LowerNode() 573 machine()->Uint32LessThan()); in LowerNode() 577 LowerComparison(node, machine()->Uint32LessThan(), in LowerNode()
|
D | raw-machine-assembler.h | 335 Node* Uint32LessThan(Node* a, Node* b) { in Uint32LessThan() function 336 return AddNode(machine()->Uint32LessThan(), a, b); in Uint32LessThan() 351 Node* Uint32GreaterThan(Node* a, Node* b) { return Uint32LessThan(b, a); } in Uint32GreaterThan()
|
D | graph-assembler.h | 61 V(Uint32LessThan) \
|
D | machine-operator.h | 278 const Operator* Uint32LessThan(); in NON_EXPORTED_BASE()
|
D | effect-control-linearizer.cc | 1334 Node* check = __ Uint32LessThan(index, limit); in LowerCheckBounds() 1516 Node* check = __ Uint32LessThan(value_instance_type, in LowerCheckString() 2086 Node* vfalse = __ Uint32LessThan( in LowerObjectIsArrayBufferView() 2458 Node* vfalse = __ Uint32LessThan(value_instance_type, in LowerObjectIsString() 3603 Node* check = __ Uint32LessThan(index, elements_length); in LowerMaybeGrowFastElements() 4358 Node* check = __ Uint32LessThan( in LowerConvertReceiver() 4390 Node* check = __ Uint32LessThan( in LowerConvertReceiver()
|
D | opcodes.h | 449 V(Uint32LessThan) \
|
D | representation-change.cc | 951 return machine()->Uint32LessThan(); in Uint32OperatorFor()
|
D | wasm-compiler.cc | 382 op = m->Uint32LessThan(); in Binop() 396 op = m->Uint32LessThan(); in Binop() 2646 Node* in_bounds = graph()->NewNode(machine->Uint32LessThan(), key, ift_size); in CallIndirect() 3360 graph()->NewNode(mcgraph()->machine()->Uint32LessThan(), index, mem_size), in BuildAsmjsStoreMem()
|
D | machine-operator.cc | 111 V(Uint32LessThan, Operator::kNoProperties, 2, 0, 1) \
|
D | code-assembler.h | 453 V(Uint32LessThan, BoolT, Word32T, Word32T) \
|
D | simplified-lowering.cc | 2147 lowering->DoMax(node, lowering->machine()->Uint32LessThan(), in VisitNode() 2180 lowering->DoMin(node, lowering->machine()->Uint32LessThan(), in VisitNode()
|
/external/v8/src/builtins/ |
D | builtins-sharedarraybuffer-gen.cc | 116 GotoIf(Uint32LessThan(index_word, array_length_word32), &check_passed); in ValidateAtomicIndex() 131 Uint32LessThan(index_word, in DebugSanityCheckAtomicIndex()
|
D | builtins-string-gen.cc | 467 Branch(Uint32LessThan(lhs_value, rhs_value), &if_less, &if_greater); in GenerateStringRelationalComparison() 2331 GotoIf(Uint32LessThan(char_code, Int32Constant(0x0009)), if_not_whitespace); in GotoIfNotWhiteSpaceOrLineTerminator() 2339 GotoIf(Uint32LessThan(char_code, Int32Constant(0x00A0)), if_not_whitespace); in GotoIfNotWhiteSpaceOrLineTerminator() 2348 GotoIf(Uint32LessThan(char_code, Int32Constant(0x2000)), if_not_whitespace); in GotoIfNotWhiteSpaceOrLineTerminator() 2452 CSA_SLOW_ASSERT(this, Uint32LessThan(lead, Int32Constant(0xDC00))); in LoadSurrogatePairAt() 2455 CSA_SLOW_ASSERT(this, Uint32LessThan(trail, Int32Constant(0xE000))); in LoadSurrogatePairAt()
|
D | builtins-array-gen.cc | 3561 GotoIfNot(Uint32LessThan(index32, length32), &set_done); in TF_BUILTIN()
|
/external/v8/src/interpreter/ |
D | interpreter-generator.cc | 1909 CSA_ASSERT(this, Uint32LessThan(literal_flag, Int32Constant(num_cases))); in IGNITION_HANDLER()
|
/external/v8/src/ |
D | code-stub-assembler.cc | 4928 Branch(Uint32LessThan(Int32Constant(Smi::kMaxValue), value), &if_overflow, in ChangeUint32ToTagged() 6572 Branch(Uint32LessThan(codepoint, Int32Constant(0x10000)), &if_isword16, in StringFromSingleCodePoint() 8780 GotoIf(Uint32LessThan(first_char, Int32Constant('0')), if_not_special_index); in BranchIfMaybeSpecialIndex() 8781 GotoIf(Uint32LessThan(Int32Constant('9'), first_char), if_not_special_index); in BranchIfMaybeSpecialIndex()
|
D | code-stub-assembler.h | 581 SMI_COMPARISON_OP(SmiBelow, UintPtrLessThan, Uint32LessThan)
|