HomeSort by relevance Sort by last modified time
    Searched refs:Int64Constant (Results 1 - 17 of 17) sorted by null

  /external/v8/src/compiler/
js-graph.h 96 // Creates a Int64Constant node, usually canonicalized.
97 Node* Int64Constant(int64_t value);
99 return Int64Constant(bit_cast<int64_t>(value));
102 // Creates a Int32Constant/Int64Constant node, depending on the word size of
104 // TODO(turbofan): Code using Int32Constant/Int64Constant to store pointer
108 : Int64Constant(static_cast<int64_t>(value));
machine-operator-reducer.h 37 Node* Int64Constant(int64_t value);
42 return Int64Constant(bit_cast<int64_t>(value));
73 return Replace(Int64Constant(value));
basic-block-instrumentor.cc 45 ? common->Int64Constant(reinterpret_cast<intptr_t>(ptr))
js-graph.cc 198 Node* JSGraph::Int64Constant(int64_t value) {
201 *loc = graph()->NewNode(common()->Int64Constant(value));
raw-machine-assembler.h 80 return kPointerSize == 8 ? Int64Constant(value)
90 Node* Int64Constant(int64_t value) {
91 return AddNode(common()->Int64Constant(value));
271 Node* Word64Not(Node* a) { return Word64Xor(a, Int64Constant(-1)); }
352 Node* Int64Neg(Node* a) { return Int64Sub(Int64Constant(0), a); }
wasm-compiler.cc 170 node, jsgraph()->Int64Constant(val)),
272 return jsgraph()->Int64Constant(0xdeadbeefdeadbeef);
475 Node* WasmGraphBuilder::Int64Constant(int64_t value) {
476 return jsgraph()->Int64Constant(value);
    [all...]
common-operator.h 338 const Operator* Int64Constant(int64_t);
code-assembler.cc 167 Node* CodeAssembler::Int64Constant(int64_t value) {
168 return raw_assembler()->Int64Constant(value);
code-assembler.h 213 Node* Int64Constant(int64_t value);
machine-operator-reducer.cc 43 Node* MachineOperatorReducer::Int64Constant(int64_t value) {
44 return graph()->NewNode(common()->Int64Constant(value));
769 if (m.LeftEqualsRight()) return Replace(Int64Constant(0)); // x - x => 0
771 node->ReplaceInput(1, Int64Constant(-m.right().Value()));
    [all...]
wasm-compiler.h 147 Node* Int64Constant(int64_t value);
opcodes.h 41 V(Int64Constant) \
common-operator.cc     [all...]
representation-change.cc 760 return jsgraph()->Int64Constant(0);
    [all...]
  /external/v8/src/wasm/
function-body-decoder.cc 657 return builder_->Int64Constant(0);
    [all...]
  /external/swiftshader/third_party/subzero/src/
WasmTranslator.cpp 372 Node Int64Constant(int64_t Value) {
373 LOG(out << "Int64Constant(" << Value << ") = ");
    [all...]
  /external/v8/src/
code-stub-assembler.cc     [all...]

Completed in 2771 milliseconds