Searched refs:HeapConstant (Results 1 - 21 of 21) sorted by relevance

/external/v8/src/compiler/
H A Djs-graph.cc15 return NewNode(common()->HeapConstant(unique));
96 Node* JSGraph::HeapConstant(Unique<Object> value) { function in class:v8::internal::compiler::JSGraph
98 return NewNode(common()->HeapConstant(value));
102 Node* JSGraph::HeapConstant(Handle<Object> value) { function in class:v8::internal::compiler::JSGraph
106 // return HeapConstant(Unique<Object>::CreateUninitialized(value));
111 return HeapConstant(unique);
131 return HeapConstant(value);
H A Djs-builtin-reducer-unittest.cc38 return HeapConstant(
71 Node* fun = HeapConstant(Unique<HeapObject>::CreateUninitialized(f));
89 Node* fun = HeapConstant(Unique<HeapObject>::CreateUninitialized(f));
104 Node* fun = HeapConstant(Unique<HeapObject>::CreateUninitialized(f));
122 Node* fun = HeapConstant(Unique<HeapObject>::CreateUninitialized(f));
158 Node* fun = HeapConstant(Unique<HeapObject>::CreateUninitialized(f));
H A Djs-graph.h47 // Creates a HeapConstant node, possibly canonicalized, without inspecting the
49 Node* HeapConstant(Unique<Object> value);
51 // Creates a HeapConstant node, possibly canonicalized, and may access the
53 Node* HeapConstant(Handle<Object> value);
H A Dcommon-operator.h91 const Operator* HeapConstant(const Unique<Object>&);
H A Draw-machine-assembler.cc90 Node* stub_code = HeapConstant(callable.code());
114 Node* centry = HeapConstant(CEntryStub(isolate(), 1).GetCode());
H A Djs-generic-lowering.cc46 return jsgraph()->HeapConstant(code);
51 return jsgraph()->HeapConstant(function);
286 PatchInsertInput(node, 1, jsgraph()->HeapConstant(p.name));
301 PatchInsertInput(node, 1, jsgraph()->HeapConstant(params.name));
H A Draw-machine-assembler.h62 return NewNode(common()->HeapConstant(unique));
86 Node* HeapConstant(Handle<Object> object) { function in class:v8::internal::compiler::RawMachineAssembler
88 return NewNode(common()->HeapConstant(val));
H A Dcommon-operator.cc169 const Operator* CommonOperatorBuilder::HeapConstant( function in class:v8::internal::compiler::CommonOperatorBuilder
172 IrOpcode::kHeapConstant, Operator::kPure, 0, 1, "HeapConstant", value);
H A Dgraph-unittest.cc72 Node* GraphTest::HeapConstant(const Unique<HeapObject>& value) { function in class:v8::internal::compiler::GraphTest
73 return graph()->NewNode(common()->HeapConstant(value));
78 return HeapConstant(
84 return HeapConstant(
H A Dgraph-unittest.h39 Node* HeapConstant(const Unique<HeapObject>& value);
H A Dopcodes.h32 V(HeapConstant)
H A Djs-typed-lowering.cc473 return ReplaceWith(jsgraph()->HeapConstant(
477 return ReplaceWith(jsgraph()->HeapConstant(
H A Dsimplified-lowering.cc896 node->InsertInput(zone(), 0, jsgraph()->HeapConstant(callable.code()));
913 jsgraph()->HeapConstant(stub.GetCode()),
/external/v8/test/cctest/compiler/
H A Dtest-codegen-deopt.cc134 Node* deopt_fun_node = m.NewNode(common.HeapConstant(deopt_fun_constant));
140 m.NewNode(common.HeapConstant(caller_context_constant));
154 Node* context_node = m.NewNode(common.HeapConstant(context_constant));
249 Node* this_fun_node = m.NewNode(common.HeapConstant(this_fun_constant));
254 Node* context_node = m.NewNode(common.HeapConstant(context_constant));
H A Dsimplified-graph-builder.h48 Node* HeapConstant(Handle<Object> object) { function in class:v8::internal::compiler::SimplifiedGraphBuilder
50 return NewNode(common()->HeapConstant(val));
H A Dcodegen-tester.h46 return this->HeapConstant(
H A Dtest-scheduler.cc726 op = common_builder.HeapConstant(unique_constant);
861 op = common_builder.HeapConstant(unique_constant);
985 op = common_builder.HeapConstant(unique_constant);
1234 op = common_builder.HeapConstant(unique_constant);
1576 op = common_builder.HeapConstant(unique_constant);
H A Dtest-js-typed-lowering.cc54 return graph.NewNode(common.HeapConstant(unique));
57 Node* HeapConstant(Handle<Object> constant) { function in class:JSTypedLoweringTester
59 return graph.NewNode(common.HeapConstant(unique));
H A Dcodegen-tester.cc482 m.Return(m.HeapConstant(number));
H A Dtest-simplified-lowering.cc536 return tagged ? t->HeapConstant(tagged_array)
H A Dtest-run-machops.cc3938 Node* true_node = m.HeapConstant(true_val);
3939 Node* false_node = m.HeapConstant(false_val);

Completed in 2369 milliseconds