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

  /external/v8/src/compiler/
js-graph.cc 160 Node* JSGraph::Int64Constant(int64_t value) {
163 *loc = graph()->NewNode(common()->Int64Constant(value));
machine-operator-reducer.cc 42 Node* MachineOperatorReducer::Int64Constant(int64_t value) {
43 return graph()->NewNode(common()->Int64Constant(value));
    [all...]
code-assembler.cc 96 Node* CodeAssembler::Int64Constant(int64_t value) {
97 return raw_assembler_->Int64Constant(value);
common-operator.cc 689 const Operator* CommonOperatorBuilder::Int64Constant(int64_t value) {
692 "Int64Constant", // name
    [all...]
raw-machine-assembler.h 76 return kPointerSize == 8 ? Int64Constant(value)
86 Node* Int64Constant(int64_t value) {
87 return AddNode(common()->Int64Constant(value));
238 Node* Word64Not(Node* a) { return Word64Xor(a, Int64Constant(-1)); }
316 Node* Int64Neg(Node* a) { return Int64Sub(Int64Constant(0), a); }
wasm-compiler.cc 116 node, jsgraph()->Int64Constant(val)),
162 return jsgraph()->Int64Constant(0xdeadbeefdeadbeef);
368 Node* WasmGraphBuilder::Int64Constant(int64_t value) {
369 return jsgraph()->Int64Constant(value);
851 return graph()->NewNode(op, input, jsgraph()->Int64Constant(0));
990 if (match.Value() != masked) node = jsgraph()->Int64Constant(masked);
993 jsgraph()->Int64Constant(kMask64));
    [all...]
  /external/v8/test/unittests/compiler/
graph-unittest.cc 45 Node* GraphTest::Int64Constant(int64_t value) {
46 return graph()->NewNode(common()->Int64Constant(value));
  /external/v8/test/cctest/compiler/
test-simplified-lowering.cc 781 return graph()->NewNode(machine()->Int64Add(), Int64Constant(1),
782 Int64Constant(1));
801 Int64Constant(1));
820 Node* Int64Constant(int64_t v) {
821 return graph()->NewNode(common()->Int64Constant(v));
    [all...]

Completed in 585 milliseconds