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

/external/chromium_org/v8/src/compiler/
H A Dmachine-operator-reducer.cc39 Node* MachineOperatorReducer::Int64Constant(int64_t value) { function in class:v8::internal::compiler::MachineOperatorReducer
40 return graph()->NewNode(common()->Int64Constant(value));
H A Dcommon-operator.cc134 const Operator* CommonOperatorBuilder::Int64Constant(int64_t value) { function in class:v8::internal::compiler::CommonOperatorBuilder
136 IrOpcode::kInt64Constant, Operator::kPure, 0, 1, "Int64Constant", value);
H A Dgraph-unittest.cc62 Node* GraphTest::Int64Constant(int64_t value) { function in class:v8::internal::compiler::GraphTest
63 return graph()->NewNode(common()->Int64Constant(value));
H A Draw-machine-assembler.h71 return kPointerSize == 8 ? Int64Constant(value)
77 Node* Int64Constant(int64_t value) { function in class:v8::internal::compiler::RawMachineAssembler
78 return NewNode(common()->Int64Constant(value));
207 Node* Word64Not(Node* a) { return Word64Xor(a, Int64Constant(-1)); }
208 Node* Word64BinaryNot(Node* a) { return Word64Equal(a, Int64Constant(0)); }
276 Node* Int64Neg(Node* a) { return Int64Sub(Int64Constant(0), a); }
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-simplified-lowering.cc713 return graph()->NewNode(machine()->Int64Add(), Int64Constant(1),
714 Int64Constant(1));
733 Int64Constant(1));
749 Node* Int64Constant(int64_t v) { function in class:TestingGraph
750 return graph()->NewNode(common()->Int64Constant(v));

Completed in 606 milliseconds