/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-bigint-gen.h | 34 Word32Or(Word32Shl(TruncateIntPtrToInt32(length), in WriteBigIntSignAndLength()
|
H A D | builtins-string-gen.cc | 178 lhs_instance_type, Word32Shl(rhs_instance_type, Int32Constant(8))); in StringEqual_Core() 576 lhs_instance_type, Word32Shl(rhs_instance_type, Int32Constant(8))); in GenerateStringRelationalComparison() 1479 Word32Shl(lead, Int32Constant(16)), trail); in LoadSurrogatePairAt() 1481 Word32Shl(trail, Int32Constant(16)), lead); in LoadSurrogatePairAt() 1492 var_result = Int32Add(Word32Shl(lead, Int32Constant(10)), in LoadSurrogatePairAt()
|
H A D | builtins-handler-gen.cc | 118 Word32Or(Word32Shl(from_kind, Int32Constant(kBitsPerByte)), to_kind); in DispatchForElementsKindTransition()
|
H A D | builtins-regexp-gen.cc | 77 ChangeInt32ToIntPtr(Word32Shl( in LoadCodeObjectEntry() 1504 Word32Shl(ReinterpretCast<Int32T>(global), in CreateRegExpStringIterator() 1507 Word32Shl(ReinterpretCast<Int32T>(full_unicode), in CreateRegExpStringIterator()
|
H A D | builtins-collections-gen.cc | 1156 Word32Shl(hash, Int32Constant(15))); 1158 hash = Int32Add(hash, Word32Shl(hash, Int32Constant(2)));
|
/third_party/node/deps/v8/src/compiler/ |
H A D | code-assembler.h | 287 V(Word32Shl, Word32T, Word32T, Word32T) \ 898 TNode<Int32T> Word32Shl(TNode<Int32T> left, TNode<Int32T> right) { in Word32Shl() function in v8::internal::compiler::CodeAssembler 899 return Signed(Word32Shl(static_cast<TNode<Word32T>>(left), right)); in Word32Shl() 901 TNode<Uint32T> Word32Shl(TNode<Uint32T> left, TNode<Uint32T> right) { in Word32Shl() function in v8::internal::compiler::CodeAssembler 902 return Unsigned(Word32Shl(static_cast<TNode<Word32T>>(left), right)); in Word32Shl() 1096 TNode<Int32T> Word32Shl(TNode<Int32T> left, int right) { in Word32Shl() function in v8::internal::compiler::CodeAssembler 1097 return Word32Shl(left, Int32Constant(right)); in Word32Shl()
|
H A D | wasm-compiler.cc | 873 op = m->Word32Shl(); in Binop() 1676 value = gasm_->Word32Shl(value, Int32Constant(16)); in BuildChangeEndiannessStore() 1680 value = gasm_->Word32Shl(value, Int32Constant(16)); in BuildChangeEndiannessStore() 1722 shiftLower = gasm_->Word32Shl(value, Int32Constant(shiftCount)); in BuildChangeEndiannessStore() 1794 gasm_->Word32Shl(value, Int32Constant(16))); in BuildChangeEndiannessLoad() 1830 shiftLower = gasm_->Word32Shl(value, Int32Constant(shiftCount)); in BuildChangeEndiannessLoad() 1871 result = gasm_->Word32Sar(gasm_->Word32Shl(result, shiftBitCount), in BuildChangeEndiannessLoad() 2575 upper = gasm_->Word32Shl(upper, Int32Constant(16)); in BuildDecodeException32BitValue() 3228 BuildChangeUint32ToUintPtr(gasm_->Word32Shl(key, Int32Constant(2))); in BuildIndirectCall() 3475 ? gasm_->Word32Shl(valu in BuildChangeInt32ToSmi() [all...] |
H A D | csa-load-elimination.cc | 555 graph()->NewNode(machine()->Word32Shl(), node, in TruncateAndExtend()
|
H A D | int64-lowering.cc | 736 auto* op2 = machine()->Word32Shl(); in LowerNode() 768 machine()->Word32Shl(), in LowerNode()
|
H A D | raw-machine-assembler.h | 385 Node* Word32Shl(Node* a, Node* b) { in Word32Shl() function in v8::internal::compiler::RawMachineAssembler 386 return AddNode(machine()->Word32Shl(), a, b); in Word32Shl()
|
H A D | graph-assembler.h | 87 V(Word32Shl) \
|
H A D | machine-operator.h | 418 const Operator* Word32Shl();
|
H A D | opcodes.h | 551 V(Word32Shl) \
|
H A D | effect-control-linearizer.cc | 4008 auto result = __ Int32Add(__ Word32Shl(first_code_unit, __ Int32Constant(10)), in LowerStringCodePointAt() 4250 code = __ Word32Or(__ Word32Shl(lead, __ Int32Constant(16)), trail); in LowerStringFromSingleCodePoint() 4252 code = __ Word32Or(__ Word32Shl(trail, __ Int32Constant(16)), lead); in LowerStringFromSingleCodePoint() 4565 return ChangeTaggedInt32ToSmi(__ Word32Shl(value, SmiShiftBitsConstant())); in ChangeIntPtrToSmi() 4615 Node* smi_value = __ Word32Shl(value, SmiShiftBitsConstant()); in ChangeUint32ToSmi() 6535 __ Word32Shl(value, __ Int32Constant(15))); in ComputeUnseededHash() 6537 value = __ Int32Add(value, __ Word32Shl(value, __ Int32Constant(2))); in ComputeUnseededHash()
|
H A D | simplified-lowering.cc | 2631 ChangeToPureOp(node, lowering->machine()->Word32Shl()); in VisitNode() 2643 ChangeToPureOp(node, lowering->machine()->Word32Shl()); in VisitNode() 2654 ChangeToPureOp(node, lowering->machine()->Word32Shl()); in VisitNode()
|
H A D | machine-operator.cc | 265 V(Word32Shl, Operator::kNoProperties, 2, 0, 1) \
|
H A D | machine-operator-reducer.cc | 395 NodeProperties::ChangeOp(node, machine()->Word32Shl()); in Reduce()
|
/third_party/node/deps/v8/src/compiler/backend/s390/ |
H A D | instruction-selector-s390.cc | 365 V(Word32Shl) \ 1442 V(Word32, Word32Shl, kS390_ShiftLeft32, Shift32OperandMode, null) \
|
/third_party/node/deps/v8/src/interpreter/ |
H A D | interpreter-assembler.cc | 430 TNode<Word32T> value = Word32Shl(bytes[count], shift); in BytecodeOperandReadUnaligned()
|
H A D | interpreter-generator.cc | 2208 actual = Word32And(Word32Shl(UncheckedCast<Int32T>(actual), kShift), kMask); in IGNITION_HANDLER()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.cc | 1582 Word32Shl(index, Uint32Constant(kExternalPointerIndexShift)); 3399 Word32Shl(TruncateIntPtrToInt32(length), 7953 TNode<Word32T> encoded_value = Word32Shl(value, Int32Constant(shift)); 13948 return ChangeInt32ToTagged(Signed(Word32Shl(left32, right32)));
|
/third_party/node/deps/v8/src/ic/ |
H A D | accessor-assembler.cc | 2220 Word32Shl(hash, Int32Constant(PropertyArray::HashField::kShift)); in ExtendPropertiesBackingStore()
|