Searched refs:Word64Shl (Results 1 - 10 of 10) sorted by relevance
/third_party/node/deps/v8/src/compiler/ |
H A D | code-assembler.h | 294 V(Word64Shl, Word64T, Word64T, Word64T) \ 911 TNode<Int64T> Word64Shl(TNode<Int64T> left, TNode<Int64T> right) { in Word64Shl() function in v8::internal::compiler::CodeAssembler 912 return Signed(Word64Shl(static_cast<TNode<Word64T>>(left), right)); in Word64Shl() 914 TNode<Uint64T> Word64Shl(TNode<Uint64T> left, TNode<Uint64T> right) { in Word64Shl() function in v8::internal::compiler::CodeAssembler 915 return Unsigned(Word64Shl(static_cast<TNode<Word64T>>(left), right)); in Word64Shl()
|
H A D | raw-machine-assembler.h | 419 Node* Word64Shl(Node* a, Node* b) { in Word64Shl() function in v8::internal::compiler::RawMachineAssembler 420 return AddNode(machine()->Word64Shl(), a, b); in Word64Shl()
|
H A D | graph-assembler.h | 95 V(Word64Shl) \
|
H A D | machine-operator.h | 453 const Operator* Word64Shl();
|
H A D | opcodes.h | 573 V(Word64Shl) \
|
H A D | wasm-compiler.cc | 955 op = m->Word64Shl(); in Binop() 1712 shiftLower = gasm_->Word64Shl(value, Int64Constant(shiftCount)); in BuildChangeEndiannessStore() 1820 shiftLower = gasm_->Word64Shl(value, Int64Constant(shiftCount)); in BuildChangeEndiannessLoad() 1867 gasm_->Word64Shl(gasm_->ChangeInt32ToInt64(result), shiftBitCount), in BuildChangeEndiannessLoad()
|
H A D | machine-operator.cc | 289 V(Word64Shl, Operator::kNoProperties, 2, 0, 1) \
|
H A D | machine-operator-reducer.cc | 1101 NodeProperties::ChangeOp(node, machine()->Word64Shl()); in ReduceInt64Mul()
|
H A D | simplified-lowering.cc | 2988 graph()->NewNode(lowering->machine()->Word64Shl(), value, in VisitNode()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.cc | 15872 ? Word64Shl(src_data, Uint64Constant(dest_offset - src_offset))
|
Completed in 53 milliseconds