Lines Matching refs:value

14 Node* MachineGraph::Int32Constant(int32_t value) {
15 Node** loc = cache_.FindInt32Constant(value);
17 *loc = graph()->NewNode(common()->Int32Constant(value));
22 Node* MachineGraph::Int64Constant(int64_t value) {
23 Node** loc = cache_.FindInt64Constant(value);
25 *loc = graph()->NewNode(common()->Int64Constant(value));
30 Node* MachineGraph::IntPtrConstant(intptr_t value) {
31 return machine()->Is32() ? Int32Constant(static_cast<int32_t>(value))
32 : Int64Constant(static_cast<int64_t>(value));
35 Node* MachineGraph::UintPtrConstant(uintptr_t value) {
36 return machine()->Is32() ? Uint32Constant(static_cast<uint32_t>(value))
37 : Uint64Constant(static_cast<uint64_t>(value));
40 Node* MachineGraph::TaggedIndexConstant(intptr_t value) {
41 int32_t value32 = static_cast<int32_t>(value);
49 Node* MachineGraph::RelocatableInt32Constant(int32_t value,
52 value, static_cast<RelocInfoMode>(rmode));
54 *loc = graph()->NewNode(common()->RelocatableInt32Constant(value, rmode));
59 Node* MachineGraph::RelocatableInt64Constant(int64_t value,
62 value, static_cast<RelocInfoMode>(rmode));
64 *loc = graph()->NewNode(common()->RelocatableInt64Constant(value, rmode));
69 Node* MachineGraph::RelocatableIntPtrConstant(intptr_t value,
72 ? RelocatableInt64Constant(value, rmode)
73 : RelocatableInt32Constant(static_cast<int>(value), rmode);
76 Node* MachineGraph::Float32Constant(float value) {
77 Node** loc = cache_.FindFloat32Constant(value);
79 *loc = graph()->NewNode(common()->Float32Constant(value));
84 Node* MachineGraph::Float64Constant(double value) {
85 Node** loc = cache_.FindFloat64Constant(value);
87 *loc = graph()->NewNode(common()->Float64Constant(value));
92 Node* MachineGraph::PointerConstant(intptr_t value) {
93 Node** loc = cache_.FindPointerConstant(value);
95 *loc = graph()->NewNode(common()->PointerConstant(value));