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

  /external/chromium_org/v8/src/compiler/
machine-operator-reducer.cc 34 Node* MachineOperatorReducer::Int32Constant(int32_t value) {
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));
js-graph.cc 150 Node* JSGraph::Int32Constant(int32_t value) {
153 *loc = NewNode(common()->Int32Constant(value));
common-operator.cc 128 const Operator* CommonOperatorBuilder::Int32Constant(int32_t value) {
130 IrOpcode::kInt32Constant, Operator::kPure, 0, 1, "Int32Constant", value);
graph-unittest.cc 57 Node* GraphTest::Int32Constant(int32_t value) {
58 return graph()->NewNode(common()->Int32Constant(value));
js-generic-lowering.cc 40 Node* JSGenericLowering::Int32Constant(int immediate) {
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));
raw-machine-assembler.h 72 : Int32Constant(static_cast<int>(value));
74 Node* Int32Constant(int32_t value) {
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/
test-phi-reducer.cc 43 Node* Int32Constant(int32_t val) {
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(1)
    [all...]
simplified-graph-builder.h 43 : Int32Constant(static_cast<int>(intptr_value));
45 Node* Int32Constant(int32_t value) {
46 return NewNode(common()->Int32Constant(value));
test-instruction.cc 60 Node* Int32Constant(int32_t val) {
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 360 milliseconds