Home | History | Annotate | Download | only in compiler

Lines Matching refs:Node

7 #include "src/compiler/node-properties.h"
14 Node* MachineGraph::Int32Constant(int32_t value) {
15 Node** loc = cache_.FindInt32Constant(value);
22 Node* MachineGraph::Int64Constant(int64_t value) {
23 Node** loc = cache_.FindInt64Constant(value);
30 Node* MachineGraph::IntPtrConstant(intptr_t value) {
35 Node* MachineGraph::RelocatableInt32Constant(int32_t value,
37 Node** loc = cache_.FindRelocatableInt32Constant(
45 Node* MachineGraph::RelocatableInt64Constant(int64_t value,
47 Node** loc = cache_.FindRelocatableInt64Constant(
55 Node* MachineGraph::RelocatableIntPtrConstant(intptr_t value,
62 Node* MachineGraph::Float32Constant(float value) {
63 Node** loc = cache_.FindFloat32Constant(value);
70 Node* MachineGraph::Float64Constant(double value) {
71 Node** loc = cache_.FindFloat64Constant(value);
78 Node* MachineGraph::PointerConstant(intptr_t value) {
79 Node** loc = cache_.FindPointerConstant(value);
86 Node* MachineGraph::ExternalConstant(ExternalReference reference) {
87 Node** loc = cache_.FindExternalConstant(reference);
94 Node* MachineGraph::ExternalConstant(Runtime::FunctionId function_id) {