Searched defs:Int32Constant (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/v8/src/compiler/
H A Djs-graph.cc150 Node* JSGraph::Int32Constant(int32_t value) { function in class:v8::internal::compiler::JSGraph
153 *loc = NewNode(common()->Int32Constant(value));
H A Dmachine-operator-reducer.cc34 Node* MachineOperatorReducer::Int32Constant(int32_t value) { function in class:v8::internal::compiler::MachineOperatorReducer
35 return jsgraph()->Int32Constant(value);
204 node->ReplaceInput(0, Int32Constant(0));
210 node->ReplaceInput(1, Int32Constant(WhichPowerOf2(m.right().Value())));
228 node->ReplaceInput(0, Int32Constant(0));
245 node->ReplaceInput(1, Int32Constant(WhichPowerOf2(m.right().Value())));
274 node->ReplaceInput(1, Int32Constant(m.right().Value() - 1));
H A Dcommon-operator.cc128 const Operator* CommonOperatorBuilder::Int32Constant(int32_t value) { function in class:v8::internal::compiler::CommonOperatorBuilder
130 IrOpcode::kInt32Constant, Operator::kPure, 0, 1, "Int32Constant", value);
H A Djs-generic-lowering.cc40 Node* JSGenericLowering::Int32Constant(int immediate) { function in class:v8::internal::compiler::JSGenericLowering
41 return jsgraph()->Int32Constant(immediate);
224 Node* arity = Int32Constant(nargs);
340 Int32Constant(Context::SlotOffset(Context::PREVIOUS_INDEX)),
343 node->ReplaceInput(1, Int32Constant(Context::SlotOffset(access.index())));
357 Int32Constant(Context::SlotOffset(Context::PREVIOUS_INDEX)),
361 node->ReplaceInput(1, Int32Constant(Context::SlotOffset(access.index())));
376 PatchInsertInput(node, 1, Int32Constant(arity - 1));
H A Dgraph-unittest.cc57 Node* GraphTest::Int32Constant(int32_t value) { function in class:v8::internal::compiler::GraphTest
58 return graph()->NewNode(common()->Int32Constant(value));
H A Draw-machine-assembler.h72 : Int32Constant(static_cast<int>(value));
74 Node* Int32Constant(int32_t value) { function in class:v8::internal::compiler::RawMachineAssembler
75 return NewNode(common()->Int32Constant(value));
97 return Load(rep, base, Int32Constant(0));
103 Store(rep, base, Int32Constant(0), value);
177 Node* Word32Not(Node* a) { return Word32Xor(a, Int32Constant(-1)); }
178 Node* Word32BinaryNot(Node* a) { return Word32Equal(a, Int32Constant(0)); }
253 Node* Int32Neg(Node* a) { return Int32Sub(Int32Constant(0), a); }
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-phi-reducer.cc43 Node* Int32Constant(int32_t val) { function in class:PhiReducerTester
44 return graph.NewNode(common.Int32Constant(val));
98 Node* zero = R.Int32Constant(0);
99 Node* one = R.Int32Constant(1);
112 Node* zero = R.Int32Constant(0);
113 Node* one = R.Int32Constant(1);
142 Node* zero = R.Int32Constant(0);
143 Node* one = R.Int32Constant(1);
176 Node* zero = R.Int32Constant(0);
177 Node* one = R.Int32Constant(
[all...]
H A Dsimplified-graph-builder.h43 : Int32Constant(static_cast<int>(intptr_value));
45 Node* Int32Constant(int32_t value) { function in class:v8::internal::compiler::SimplifiedGraphBuilder
46 return NewNode(common()->Int32Constant(value));
H A Dtest-instruction.cc60 Node* Int32Constant(int32_t val) { function in class:InstructionTester
61 Node* node = graph.NewNode(common.Int32Constant(val));
79 Node* node = graph.NewNode(common.Int32Constant(111));
103 R.Int32Constant(i); // Add some nodes to the graph.
192 R.schedule.AddReturn(b0, R.Int32Constant(1));
219 R.schedule.AddReturn(b1, R.Int32Constant(1));
260 R.schedule.AddReturn(b0, R.Int32Constant(1));

Completed in 730 milliseconds