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

  /external/v8/src/compiler/
js-graph.cc 121 Node* JSGraph::Int32Constant(int32_t value) {
124 *loc = graph()->NewNode(common()->Int32Constant(value));
code-stub-assembler.cc 56 Node* CodeStubAssembler::Int32Constant(int value) {
57 return raw_assembler_->Int32Constant(value);
92 return Int32Constant(kSmiShiftSize + kSmiTagSize);
117 return raw_assembler_->WordShl(value, Int32Constant(shift));
machine-operator-reducer.cc 36 Node* MachineOperatorReducer::Int32Constant(int32_t value) {
37 return jsgraph()->Int32Constant(value);
216 node->ReplaceInput(0, Int32Constant(0));
222 node->ReplaceInput(1, Int32Constant(WhichPowerOf2(m.right().Value())));
494 node->ReplaceInput(1, Int32Constant(-m.right().Value()));
513 Node* const zero = Int32Constant(0);
517 node->ReplaceInput(0, Int32Constant(0));
539 node->ReplaceInput(0, Int32Constant(0));
561 Node* const zero = Int32Constant(0);
596 Node* const zero = Int32Constant(0)
    [all...]
common-operator.cc 607 const Operator* CommonOperatorBuilder::Int32Constant(int32_t value) {
610 "Int32Constant", // name
interpreter-assembler.cc 110 RegisterFileRawPointer(), Int32Constant(offset));
133 RegisterFileRawPointer(), Int32Constant(offset),
153 return IntPtrAdd(reg_index, Int32Constant(-1));
164 Int32Constant(interpreter::Bytecodes::GetOperandOffset(
176 Int32Constant(interpreter::Bytecodes::GetOperandOffset(
194 Int32Constant(interpreter::Bytecodes::GetOperandOffset(
201 IntPtrAdd(BytecodeOffset(), Int32Constant(offset)));
204 IntPtrAdd(BytecodeOffset(), Int32Constant(offset + 1)));
229 IntPtrAdd(BytecodeOffset(), Int32Constant(operand_offset)));
232 Node* hi_byte_offset = Int32Constant(operand_offset + 1)
    [all...]
raw-machine-assembler.h 77 : Int32Constant(static_cast<int>(value));
79 Node* Int32Constant(int32_t value) {
80 return AddNode(common()->Int32Constant(value));
195 Node* Word32Not(Node* a) { return Word32Xor(a, Int32Constant(-1)); }
196 Node* Word32BinaryNot(Node* a) { return Word32Equal(a, Int32Constant(0)); }
278 Node* Int32Neg(Node* a) { return Int32Sub(Int32Constant(0), a); }
557 return Load(rep, PointerConstant(address), Int32Constant(offset));
wasm-compiler.cc 117 jsgraph()->Int32Constant(val)));
212 jsgraph()->Int32Constant(fun->nargs), // arity
234 ret_value = jsgraph()->Int32Constant(0xdeadbeef);
251 ret_value = jsgraph()->Int32Constant(0xdeadbeef);
366 Node* WasmGraphBuilder::Int32Constant(int32_t value) {
367 return jsgraph()->Int32Constant(value);
396 jsgraph()->Int32Constant(-1)),
416 jsgraph()->Int32Constant(-1)));
420 return d.Phi(MachineRepresentation::kWord32, jsgraph()->Int32Constant(0),
668 return graph()->NewNode(op, input, jsgraph()->Int32Constant(0))
    [all...]
  /external/v8/test/unittests/compiler/
graph-unittest.cc 40 Node* GraphTest::Int32Constant(int32_t value) {
41 return graph()->NewNode(common()->Int32Constant(value));
  /external/v8/test/cctest/compiler/
test-instruction.cc 54 Node* Int32Constant(int32_t val) {
55 Node* node = graph.NewNode(common.Int32Constant(val));
73 Node* node = graph.NewNode(common.Int32Constant(111));
113 R.Int32Constant(i); // Add some nodes to the graph.
197 R.schedule.AddReturn(b0, R.Int32Constant(1));
217 R.schedule.AddReturn(b1, R.Int32Constant(1));
242 R.schedule.AddReturn(b0, R.Int32Constant(1));
graph-builder-tester.h 101 : Int32Constant(static_cast<int>(intptr_value));
103 Node* Int32Constant(int32_t value) {
104 return NewNode(common()->Int32Constant(value));

Completed in 103 milliseconds