Home
last modified time | relevance | path

Searched refs:Int64Constant (Results 1 - 22 of 22) sorted by relevance

/third_party/node/deps/v8/src/compiler/
H A Dmachine-graph.cc22 Node* MachineGraph::Int64Constant(int64_t value) { in Int64Constant() function in v8::internal::compiler::MachineGraph
25 *loc = graph()->NewNode(common()->Int64Constant(value)); in Int64Constant()
32 : Int64Constant(static_cast<int64_t>(value)); in IntPtrConstant()
H A Dmachine-graph.h37 // Creates a Int64Constant node, usually canonicalized.
38 Node* Int64Constant(int64_t value);
40 return Int64Constant(bit_cast<int64_t>(value)); in Uint64Constant()
43 // Creates a Int32Constant/Int64Constant node, depending on the word size of
45 // TODO(turbofan): Code using Int32Constant/Int64Constant to store pointer
H A Dmachine-operator-reducer.h43 Node* Int64Constant(int64_t value);
48 return Int64Constant(bit_cast<int64_t>(value)); in Uint64Constant()
81 return Replace(Int64Constant(value)); in ReplaceInt64()
H A Dwasm-compiler.cc720 Node* WasmGraphBuilder::Int64Constant(int64_t value) { in Int64Constant() function in v8::internal::compiler::WasmGraphBuilder
721 return mcgraph()->Int64Constant(value); in Int64Constant()
1336 return gasm_->Word64Equal(input, Int64Constant(0)); in Unop()
1536 TrapIfTrue(reason, gasm_->Word64Equal(node, Int64Constant(val)), position); in TrapIfEq64()
1609 if (match.ResolvedValue() != masked) node = Int64Constant(masked); in MaskShiftCount64()
1611 node = gasm_->Word64And(node, Int64Constant(kMask64)); in MaskShiftCount64()
1649 result = Int64Constant(0); in BuildChangeEndiannessStore()
1712 shiftLower = gasm_->Word64Shl(value, Int64Constant(shiftCount)); in BuildChangeEndiannessStore()
1713 shiftHigher = gasm_->Word64Shr(value, Int64Constant(shiftCount)); in BuildChangeEndiannessStore()
1715 shiftLower, Int64Constant(static_cas in BuildChangeEndiannessStore()
[all...]
H A Dbasic-block-instrumentor.cc43 ? common->Int64Constant(value) in IntPtrConstant()
H A Dgraph-assembler.cc69 Node* GraphAssembler::Int64Constant(int64_t value) { in Int64Constant() function in v8::internal::compiler::GraphAssembler
70 return AddClonedNode(mcgraph()->Int64Constant(value)); in Int64Constant()
80 ? common()->Int64Constant(value) in UniqueIntPtrConstant()
H A Dmachine-operator-reducer.cc144 Node* IntNConstant(int64_t value) { return r_->Int64Constant(value); } in IntNConstant()
187 Node* MachineOperatorReducer::Int64Constant(int64_t value) { in Int64Constant() function in v8::internal::compiler::MachineOperatorReducer
188 return graph()->NewNode(common()->Int64Constant(value)); in Int64Constant()
1030 // (x + Int64Constant(a)) + Int64Constant(b) => x + Int64Constant(a + b) in ReduceInt64Add()
1035 1, Int64Constant(base::AddWithWraparound(m.right().ResolvedValue(), in ReduceInt64Add()
1071 if (m.LeftEqualsRight()) return Replace(Int64Constant(0)); // x - x => 0 in ReduceInt64Sub()
1075 Int64Constant(base::NegateWithWraparound(m.right().ResolvedValue()))); in ReduceInt64Sub()
1092 node->ReplaceInput(0, Int64Constant( in ReduceInt64Mul()
[all...]
H A Draw-machine-assembler.h92 return kSystemPointerSize == 8 ? Int64Constant(value) in IntPtrConstant()
102 Node* Int64Constant(int64_t value) { in Int64Constant() function in v8::internal::compiler::RawMachineAssembler
103 return AddNode(common()->Int64Constant(value)); in Int64Constant()
150 // Test if `node` is a `Phi(Int64Constant(0))` in IsMapOffsetConstant()
438 Node* Word64Not(Node* a) { return Word64Xor(a, Int64Constant(-1)); } in Word64Not()
519 Node* Int64Neg(Node* a) { return Int64Sub(Int64Constant(0), a); } in Int64Neg()
H A Drepresentation-change.cc1078 jsgraph()->Int64Constant(0)); in GetBitRepresentationFor()
1113 jsgraph()->Int64Constant(iv)); in GetWord64RepresentationFor()
1126 jsgraph()->Int64Constant(static_cast<int64_t>(bigint.AsUint64()))); in GetWord64RepresentationFor()
H A Dcommon-operator.h508 const Operator* Int64Constant(int64_t);
H A Deffect-control-linearizer.cc1563 __ Uint64LessThanOrEqual(value, __ Int64Constant(Smi::kMaxValue)); in LowerChangeUint64ToTagged()
2538 Node* check = __ Uint64LessThanOrEqual(value, __ Int64Constant(kMaxInt)); in LowerCheckedUint64ToInt32()
2550 __ Uint64LessThanOrEqual(value, __ Int64Constant(Smi::kMaxValue)); in LowerCheckedUint64ToTaggedSigned()
2599 __ IntLessThan(value64, __ Int64Constant(kMaxSafeInteger)); in BuildCheckedFloat64ToIndex()
2603 __ IntLessThan(__ Int64Constant(-kMaxSafeInteger), value64); in BuildCheckedFloat64ToIndex()
2639 Node* check_zero = __ Word64Equal(value64, __ Int64Constant(0)); in BuildCheckedFloat64ToInt64()
2920 Node* sign_mask = __ Word64Sar(value, __ Int64Constant(63)); in LowerChangeInt64ToBigInt()
2956 __ Goto(&done, __ Int64Constant(0)); in LowerTruncateBigIntToWord64()
2968 __ Goto(&done, __ Int64Sub(__ Int64Constant(0), lsd)); in LowerTruncateBigIntToWord64()
3314 __ Goto(&done, __ Word64Equal(value64, __ Int64Constant(kMinusZeroBit in LowerObjectIsMinusZero()
[all...]
H A Dmemory-lowering.cc252 common()->Int64Constant(state_size)); in ReduceAllocateRaw()
H A Dcode-assembler.cc260 TNode<Int64T> CodeAssembler::Int64Constant(int64_t value) { in Int64Constant() function in v8::internal::compiler::CodeAssembler
261 return UncheckedCast<Int64T>(jsgraph()->Int64Constant(value)); in Int64Constant()
H A Dcode-assembler.h524 TNode<Int64T> Int64Constant(int64_t value);
526 return Unsigned(Int64Constant(bit_cast<int64_t>(value))); in Uint64Constant()
H A Dgraph-assembler.h246 Node* Int64Constant(int64_t value);
H A Dopcodes.h39 V(Int64Constant) \
H A Dwasm-compiler.h281 Node* Int64Constant(int64_t value);
H A Dcommon-operator.cc1160 const Operator* CommonOperatorBuilder::Int64Constant(int64_t value) { in Int64Constant() function in v8::internal::compiler::CommonOperatorBuilder
1163 "Int64Constant", // name in Int64Constant()
H A Dsimplified-lowering.cc2974 1, jsgraph_->Int64Constant(mask)); in VisitNode()
3211 jsgraph_->Int64Constant(0)); in VisitNode()
/third_party/node/deps/v8/src/wasm/
H A Dgraph-builder-interface.cc372 result->node = builder_->Int64Constant(value); in I64Const()
1466 return builder_->Int64Constant(0); in DefaultValue()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DWasmTranslator.cpp372 Node Int64Constant(int64_t Value) { in Int64Constant() function in IceBuilder
373 LOG(out << "Int64Constant(" << Value << ") = "); in Int64Constant()
/third_party/node/deps/v8/src/codegen/
H A Dcode-stub-assembler.cc2768 return Word64Equal(element, Int64Constant(kHoleNanInt64));
4738 Is64() ? ReinterpretCast<UintPtrT>(Int64Constant(kHoleNanInt64))
5031 Is64() ? ReinterpretCast<UintPtrT>(Int64Constant(kHoleNanInt64))

Completed in 67 milliseconds