Lines Matching refs:loc
15 Node** loc = cache_.FindInt32Constant(value);
16 if (*loc == nullptr) {
17 *loc = graph()->NewNode(common()->Int32Constant(value));
19 return *loc;
23 Node** loc = cache_.FindInt64Constant(value);
24 if (*loc == nullptr) {
25 *loc = graph()->NewNode(common()->Int64Constant(value));
27 return *loc;
42 Node** loc = cache_.FindTaggedIndexConstant(value32);
43 if (*loc == nullptr) {
44 *loc = graph()->NewNode(common()->TaggedIndexConstant(value32));
46 return *loc;
51 Node** loc = cache_.FindRelocatableInt32Constant(
53 if (*loc == nullptr) {
54 *loc = graph()->NewNode(common()->RelocatableInt32Constant(value, rmode));
56 return *loc;
61 Node** loc = cache_.FindRelocatableInt64Constant(
63 if (*loc == nullptr) {
64 *loc = graph()->NewNode(common()->RelocatableInt64Constant(value, rmode));
66 return *loc;
77 Node** loc = cache_.FindFloat32Constant(value);
78 if (*loc == nullptr) {
79 *loc = graph()->NewNode(common()->Float32Constant(value));
81 return *loc;
85 Node** loc = cache_.FindFloat64Constant(value);
86 if (*loc == nullptr) {
87 *loc = graph()->NewNode(common()->Float64Constant(value));
89 return *loc;
93 Node** loc = cache_.FindPointerConstant(value);
94 if (*loc == nullptr) {
95 *loc = graph()->NewNode(common()->PointerConstant(value));
97 return *loc;
101 Node** loc = cache_.FindExternalConstant(reference);
102 if (*loc == nullptr) {
103 *loc = graph()->NewNode(common()->ExternalConstant(reference));
105 return *loc;