/third_party/node/deps/v8/src/compiler/ |
H A D | basic-block-instrumentor.cc | 121 Node* overflow = graph->NewNode(machine.Uint32LessThan(), inc, load); in Instrument()
|
H A D | int64-lowering.cc | 596 machine()->Uint32LessThan()); in LowerNode() 605 LowerComparison(node, machine()->Uint32LessThan(), in LowerNode() 606 machine()->Uint32LessThan()); in LowerNode() 610 LowerComparison(node, machine()->Uint32LessThan(), in LowerNode()
|
H A D | raw-machine-assembler.h | 476 Node* Uint32LessThan(Node* a, Node* b) { in Uint32LessThan() function in v8::internal::compiler::RawMachineAssembler 477 return AddNode(machine()->Uint32LessThan(), a, b); in Uint32LessThan() 492 Node* Uint32GreaterThan(Node* a, Node* b) { return Uint32LessThan(b, a); } in Uint32GreaterThan()
|
H A D | effect-control-linearizer.cc | 2043 Node* check = __ Uint32LessThan(value_instance_type, in LowerCheckString() 2468 Node* check = __ Uint32LessThan(index, limit); in LowerCheckedUint32Bounds() 2703 Node* is_string = __ Uint32LessThan(value_instance_type, in LowerCheckedTaggedToArrayIndex() 3055 Node* vfalse = __ Uint32LessThan( in LowerObjectIsArrayBufferView() 3467 Node* vfalse = __ Uint32LessThan(value_instance_type, in LowerObjectIsString() 4776 Node* check = __ Uint32LessThan(index, elements_length); in LowerMaybeGrowFastElements() 6116 Node* check = __ Uint32LessThan( in LowerConvertReceiver() 6149 Node* check = __ Uint32LessThan( in LowerConvertReceiver()
|
H A D | graph-assembler.h | 77 V(Uint32LessThan) \
|
H A D | machine-operator.h | 496 const Operator* Uint32LessThan();
|
H A D | opcodes.h | 527 V(Uint32LessThan) \
|
H A D | wasm-compiler.cc | 907 op = m->Uint32LessThan(); in Binop() 921 op = m->Uint32LessThan(); in Binop() 3212 Node* in_bounds = gasm_->Uint32LessThan(key, ift_size); in BuildIndirectCall() 4283 gasm_->Uint32LessThan(index, mem_size), in BuildAsmjsStoreMem() 5658 Node* check = gasm_->Uint32LessThan(offset, end_offset); in ArrayNewWithRtt() 6051 TrapIfFalse(wasm::kTrapArrayOutOfBounds, gasm_->Uint32LessThan(index, length),
|
H A D | machine-operator-reducer.cc | 1433 : machine()->Uint32LessThan(); in Map64To32Comparison() 1438 return machine()->Uint32LessThan(); in Map64To32Comparison()
|
H A D | representation-change.cc | 1386 return machine()->Uint32LessThan(); in Uint32OperatorFor()
|
H A D | code-assembler.h | 231 V(Uint32LessThan, BoolT, Word32T, Word32T) \
|
H A D | machine-operator.cc | 278 V(Uint32LessThan, Operator::kNoProperties, 2, 0, 1) \
|
H A D | simplified-lowering.cc | 2801 lowering->DoMax(node, lowering->machine()->Uint32LessThan(), in VisitNode() 2859 lowering->DoMin(node, lowering->machine()->Uint32LessThan(), in VisitNode()
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-string-gen.cc | 289 Branch(Uint32LessThan(codepoint, Int32Constant(0x10000)), &if_isword16, in StringFromSingleUTF16EncodedCodePoint() 376 GotoIf(Uint32LessThan(new_length, Uint32Constant(ConsString::kMinLength)), in StringAdd() 636 Branch(Uint32LessThan(lhs_value, rhs_value), &if_less, &if_greater); in GenerateStringRelationalComparison() 1469 CSA_SLOW_DCHECK(this, Uint32LessThan(lead, Int32Constant(0xDC00))); in LoadSurrogatePairAt() 1472 CSA_SLOW_DCHECK(this, Uint32LessThan(trail, Int32Constant(0xE000))); in LoadSurrogatePairAt()
|
H A D | builtins-array-gen.cc | 1246 GotoIfNot(Uint32LessThan(index32, length32), &set_done); in TF_BUILTIN()
|
/third_party/node/deps/v8/src/interpreter/ |
H A D | interpreter-generator.cc | 1802 CSA_DCHECK(this, Uint32LessThan(literal_flag, Int32Constant(num_cases))); in IGNITION_HANDLER()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.cc | 5780 Branch(Uint32LessThan(Uint32Constant(Smi::kMaxValue), value), &if_overflow, 10119 GotoIf(Uint32LessThan(first_char, Int32Constant('0')), if_not_special_index); 10120 GotoIf(Uint32LessThan(Int32Constant('9'), first_char), if_not_special_index);
|
H A D | code-stub-assembler.h | 712 SMI_COMPARISON_OP(SmiBelow, UintPtrLessThan, Uint32LessThan)
|