HomeSort by relevance Sort by last modified time
    Searched refs:TENURED (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/v8/test/cctest/heap/
test-compaction.cc 53 heap::CreatePadding(heap, Page::kAllocatableMemory, TENURED);
101 heap, Page::kAllocatableMemory, TENURED, object_size);
115 heap::CreatePadding(heap, object_size * num_objects, TENURED,
167 isolate->factory()->NewFixedArray(10, TENURED);
178 heap::CreatePadding(heap, Page::kAllocatableMemory, TENURED,
198 heap::CreatePadding(heap, used_memory, TENURED, object_size);
254 isolate->factory()->NewFixedArray(10, TENURED);
264 heap, Page::kAllocatableMemory, TENURED, object_size);
291 heap::CreatePadding(heap, used_memory, TENURED, object_size);
339 ->NewStringFromOneByte(string_to_broken_addresss, TENURED)
    [all...]
test-alloc.cc 56 heap->AllocateByteArray(100, TENURED).ToObjectChecked();
60 heap->AllocateFixedArray(10000, TENURED).ToObjectChecked();
69 kLargeObjectSpaceFillerLength, TENURED).ToObjectChecked();
72 kLargeObjectSpaceFillerLength, TENURED).ToObjectChecked();
81 heap->AllocateFixedArray(100, TENURED).ToObjectChecked();
heap-utils.cc 39 if (tenure == i::TENURED) {
69 (tenure == TENURED && heap->InOldSpace(*handles.back())));
test-array-buffer-tracker.cc 200 heap->isolate()->factory()->NewFixedArray(1, TENURED);
235 heap->isolate()->factory()->NewFixedArray(1, TENURED);
269 heap->isolate()->factory()->NewFixedArray(1, TENURED);
test-heap.cc 767 Handle<FixedArray> constant_pool = factory->NewFixedArray(5, TENURED);
    [all...]
  /external/v8/test/cctest/
test-slots-buffer.cc 22 Handle<FixedArray> array = factory->NewFixedArray(2, TENURED);
74 Handle<FixedArray> fake_object = factory->NewFixedArray(23, TENURED);
94 factory->NewFixedArray(23, TENURED);
106 isolate->factory()->NewFixedArray(23, TENURED);
test-weakmaps.cc 186 Handle<JSObject> object = factory->NewJSObject(function, TENURED);
224 keys[i] = factory->NewJSObject(function, TENURED);
test-weaksets.cc 185 Handle<JSObject> object = factory->NewJSObject(function, TENURED);
223 keys[i] = factory->NewJSObject(function, TENURED);
test-dictionary.cc 235 Handle<NameDictionary> dict = NameDictionary::New(isolate, 0, TENURED);
  /external/v8/src/
bootstrapper.h 47 Handle<FixedArray> new_array = factory->NewFixedArray(length + 2, TENURED);
51 factory->NewStringFromAscii(name, TENURED).ToHandleChecked();
bootstrapper.cc 598 factory->NewJSObject(isolate->object_function(), TENURED);
784 factory()->NewJSObject(isolate()->object_function(), TENURED);
786 factory()->NewJSObject(isolate()->object_function(), TENURED)
    [all...]
globals.h 525 enum PretenureFlag { NOT_TENURED, TENURED };
531 case TENURED:
532 return os << "Tenured";
    [all...]
  /external/v8/src/interpreter/
handler-table-builder.cc 22 HandlerTable::LengthForRange(handler_table_size), TENURED));
source-position-table.cc 138 static_cast<int>(bytes_.size()), TENURED);
constant-array-builder.cc 99 static_cast<int>(size()), PretenureFlag::TENURED);
  /external/v8/src/wasm/
wasm-function-name-table.cc 33 isolate->factory()->NewByteArray(total_array_length_int, TENURED);
wasm-debug.cc 85 factory->NewFixedArray(kWasmDebugInfoNumEntries, TENURED);
94 Handle<Object> hash_obj = factory->NewNumberFromInt(hash, TENURED);
174 factory->NewFixedArray(static_cast<int>(arr_size), TENURED);
wasm-module.cc 694 Handle<FixedArray> deopt_data = factory->NewFixedArray(2, TENURED);
723 factory->NewFixedArray(static_cast<int>(functions.size()), TENURED);
781 instance.js_object = factory->NewJSObjectFromMap(map, TENURED);
793 factory->NewStringFromOneByte(module_bytes_vec, TENURED)
    [all...]
  /external/v8/src/runtime/
runtime-maths.cc 106 isolate->factory()->NewJSArrayBuffer(SharedFlag::kNotShared, TENURED);
runtime-literals.cc 54 isolate->heap()->InNewSpace(*literals) ? NOT_TENURED : TENURED;
121 isolate->heap()->InNewSpace(*literals) ? NOT_TENURED : TENURED;
  /external/v8/src/crankshaft/
lithium-codegen.cc 311 DeoptimizationInputData::New(isolate(), length, TENURED);
328 factory()->NewFixedArray(deoptimization_literals_.length(), TENURED);
  /external/v8/src/heap/
heap.cc 577 if (site->GetPretenureMode() == TENURED) {
585 // Step 2: Deopt maybe tenured allocation sites if necessary.
611 "mementos=%d tenured=%d not_tenured=%d\n",
    [all...]
  /external/v8/src/compiler/
simplified-operator.cc 380 AllocateOperator<TENURED> kAllocateTenuredOperator;
481 case TENURED:
code-generator.cc 218 TENURED));
437 DeoptimizationInputData::New(isolate(), deopt_count, TENURED);
454 static_cast<int>(deoptimization_literals_.size()), TENURED);
  /external/v8/src/ast/
ast-value-factory.cc 184 value_ = isolate->factory()->NewNumber(number_, TENURED);

Completed in 746 milliseconds

1 2 3