HomeSort by relevance Sort by last modified time
    Searched defs:HeapConstant (Results 1 - 8 of 8) sorted by null

  /external/v8/src/compiler/
js-graph.cc 19 HeapConstant(isolate()->builtins()->AllocateInNewSpace()));
24 HeapConstant(isolate()->builtins()->AllocateInOldSpace()));
29 HeapConstant(isolate()->builtins()->ToNumber()));
35 HeapConstant(CEntryStub(isolate(), 1).GetCode()));
37 return HeapConstant(CEntryStub(isolate(), result_size).GetCode());
43 HeapConstant(factory()->empty_fixed_array()));
48 HeapConstant(factory()->empty_literals_array()));
53 HeapConstant(factory()->heap_number_map()));
58 HeapConstant(factory()->optimized_out()));
63 HeapConstant(factory()->stale_register()))
    [all...]
code-assembler.cc 112 Node* CodeAssembler::HeapConstant(Handle<HeapObject> object) {
113 return raw_assembler_->HeapConstant(object);
256 return HeapConstant(Handle<HeapObject>::cast(root));
399 Node* target = HeapConstant(callable.code());
405 Node* target = HeapConstant(callable.code());
413 Node* target = HeapConstant(callable.code());
420 Node* target = HeapConstant(callable.code());
523 Node* target = HeapConstant(callable.code());
531 Node* target = HeapConstant(callable.code());
605 Node* target = HeapConstant(callable.code())
    [all...]
common-operator.cc 735 const Operator* CommonOperatorBuilder::HeapConstant(
739 "HeapConstant", // name
    [all...]
raw-machine-assembler.h 63 return HeapConstant(isolate()->factory()->null_value());
67 return HeapConstant(isolate()->factory()->undefined_value());
98 Node* HeapConstant(Handle<HeapObject> object) {
99 return AddNode(common()->HeapConstant(object));
103 return HeapConstant(Handle<HeapObject>::cast(object));
644 return HeapConstant(isolate()->factory()->InternalizeUtf8String(string));
wasm-compiler.cc 244 builder_->HeapConstant(module->instance->context), // context
912 Node* WasmGraphBuilder::HeapConstant(Handle<HeapObject> value) {
913 return jsgraph()->HeapConstant(value);
    [all...]
  /external/v8/test/unittests/compiler/
graph-unittest.cc 55 Node* GraphTest::HeapConstant(const Handle<HeapObject>& value) {
56 Node* node = graph()->NewNode(common()->HeapConstant(value));
64 return HeapConstant(factory()->false_value());
69 return HeapConstant(factory()->true_value());
74 return HeapConstant(factory()->undefined_value());
  /external/v8/test/cctest/compiler/
graph-builder-tester.h 106 Node* HeapConstant(Handle<HeapObject> object) {
107 return NewNode(common()->HeapConstant(object));
test-js-typed-lowering.cc 61 return graph.NewNode(common.HeapConstant(value));
64 Node* HeapConstant(Handle<HeapObject> constant) {
65 return graph.NewNode(common.HeapConstant(constant));
    [all...]

Completed in 959 milliseconds