Searched defs:IntPtrConstant (Results 1 - 4 of 4) sorted by relevance

/external/v8/src/compiler/
H A Djs-graph.h106 Node* IntPtrConstant(intptr_t value) { function in class:v8::internal::compiler::JSGraph
H A Dgraph-assembler.cc22 Node* GraphAssembler::IntPtrConstant(intptr_t value) { function in class:v8::internal::compiler::GraphAssembler
23 return jsgraph()->IntPtrConstant(value);
H A Dcode-assembler.cc171 Node* CodeAssembler::IntPtrConstant(intptr_t value) { function in class:v8::internal::compiler::CodeAssembler
172 return raw_assembler()->IntPtrConstant(value);
180 return BitcastWordToTaggedSigned(IntPtrConstant(bit_cast<intptr_t>(value)));
335 return IntPtrConstant(left_constant + right_constant);
355 return IntPtrConstant(left_constant - right_constant);
366 return (shift != 0) ? raw_assembler()->WordShl(value, IntPtrConstant(shift))
371 return (shift != 0) ? raw_assembler()->WordShr(value, IntPtrConstant(shift))
431 IntPtrConstant(root_index * kPointerSize));
470 IntPtrConstant(root_index * kPointerSize), value);
H A Draw-machine-assembler.h76 return IntPtrConstant(reinterpret_cast<intptr_t>(value));
78 Node* IntPtrConstant(intptr_t value) { function in class:v8::internal::compiler::RawMachineAssembler
125 return Load(rep, base, IntPtrConstant(0));
132 return Store(rep, base, IntPtrConstant(0), value, write_barrier);
143 return UnalignedLoad(rep, base, IntPtrConstant(0));
153 return UnalignedStore(rep, base, IntPtrConstant(0), value);

Completed in 172 milliseconds