Searched defs:Int64Constant (Results 1 - 6 of 6) sorted by relevance

/external/v8/src/compiler/
H A Djs-graph.cc186 Node* JSGraph::Int64Constant(int64_t value) { function in class:v8::internal::compiler::JSGraph
189 *loc = graph()->NewNode(common()->Int64Constant(value));
H A Dmachine-operator-reducer.cc42 Node* MachineOperatorReducer::Int64Constant(int64_t value) { function in class:v8::internal::compiler::MachineOperatorReducer
43 return graph()->NewNode(common()->Int64Constant(value));
740 if (m.LeftEqualsRight()) return Replace(Int64Constant(0)); // x - x => 0
742 node->ReplaceInput(1, Int64Constant(-m.right().Value()));
H A Dcode-assembler.cc104 Node* CodeAssembler::Int64Constant(int64_t value) { function in class:v8::internal::compiler::CodeAssembler
105 return raw_assembler_->Int64Constant(value);
H A Dcommon-operator.cc838 const Operator* CommonOperatorBuilder::Int64Constant(int64_t value) { function in class:v8::internal::compiler::CommonOperatorBuilder
841 "Int64Constant", // name
H A Draw-machine-assembler.h80 return kPointerSize == 8 ? Int64Constant(value)
90 Node* Int64Constant(int64_t value) { function in class:v8::internal::compiler::RawMachineAssembler
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); }
H A Dwasm-compiler.cc151 node, jsgraph()->Int64Constant(val)),
204 return jsgraph()->Int64Constant(0xdeadbeefdeadbeef);
409 Node* WasmGraphBuilder::Int64Constant(int64_t value) { function in class:v8::internal::compiler::WasmGraphBuilder
410 return jsgraph()->Int64Constant(value);
931 return graph()->NewNode(op, input, jsgraph()->Int64Constant(0));
1087 if (match.Value() != masked) node = jsgraph()->Int64Constant(masked);
1090 jsgraph()->Int64Constant(kMask64));
1123 result = jsgraph()->Int64Constant(0);
1174 jsgraph()->Int64Constant(shiftCount));
1176 jsgraph()->Int64Constant(shiftCoun
[all...]

Completed in 193 milliseconds