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

1 2 3

  /external/v8/test/cctest/heap/
test-compaction.cc 45 CreatePadding(heap, Page::kAllocatableMemory, TENURED);
92 CreatePadding(heap, Page::kAllocatableMemory, TENURED, object_size);
105 heap, object_size * num_objects, TENURED, object_size);
154 isolate->factory()->NewFixedArray(10, TENURED);
168 CreatePadding(heap, Page::kAllocatableMemory, TENURED, object_size);
187 CreatePadding(heap, used_memory, TENURED, object_size);
241 isolate->factory()->NewFixedArray(10, TENURED);
254 CreatePadding(heap, Page::kAllocatableMemory, TENURED, object_size);
280 CreatePadding(heap, used_memory, TENURED, object_size);
327 ->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();
utils-inl.h 31 if (tenure == i::TENURED) {
58 (tenure == TENURED && heap->InOldSpace(*handles.back())));
  /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 195 Handle<JSObject> object = factory->NewJSObject(function, TENURED);
233 keys[i] = factory->NewJSObject(function, TENURED);
test-weaksets.cc 194 Handle<JSObject> object = factory->NewJSObject(function, TENURED);
232 keys[i] = factory->NewJSObject(function, TENURED);
test-disasm-x87.cc 65 Handle<FixedArray> foo = isolate->factory()->NewFixedArray(10, TENURED);
107 Handle<FixedArray> foo2 = isolate->factory()->NewFixedArray(10, TENURED);
test-dictionary.cc 235 Handle<NameDictionary> dict = NameDictionary::New(isolate, 0, TENURED);
test-unboxed-doubles.cc 915 Handle<JSObject> object = factory->NewJSObjectFromMap(map, TENURED);
    [all...]
  /external/v8/src/
bootstrapper.h 47 Handle<FixedArray> new_array = factory->NewFixedArray(length + 2, TENURED);
51 factory->NewStringFromAscii(name, TENURED).ToHandleChecked();
bootstrapper.cc 537 factory->NewJSObject(isolate->object_function(), TENURED);
772 factory()->NewJSObject(isolate()->object_function(), TENURED);
774 factory()->NewJSObject(isolate()->object_function(), TENURED);
776 factory()->NewJSObject(isolate()->object_function(), TENURED);
    [all...]
globals.h 502 enum PretenureFlag { NOT_TENURED, TENURED };
508 case TENURED:
509 return os << "Tenured";
factory.h 61 // Create a pre-tenured empty AccessorPair.
300 // Allocate a tenured AllocationSite. It's payload is null.
511 Handle<Context> context, PretenureFlag pretenure = TENURED);
515 PretenureFlag pretenure = TENURED);
706 PretenureFlag pretenure = TENURED);
factory.cc 738 NewFixedArray(Context::NATIVE_CONTEXT_SLOTS, TENURED);
753 NewFixedArray(scope_info->ContextLength(), TENURED);
777 NewFixedArray(scope_info->ContextLength(), TENURED);
911 return NewForeign((Address) desc, TENURED);
    [all...]
  /external/v8/src/interpreter/
constant-array-builder.cc 91 factory->NewFixedArray(static_cast<int>(size()), PretenureFlag::TENURED);
  /external/v8/src/crankshaft/
lithium-codegen.cc 291 DeoptimizationInputData::New(isolate(), length, TENURED);
308 factory()->NewFixedArray(deoptimization_literals_.length(), TENURED);
  /external/v8/src/heap/
heap.cc 582 if (site->GetPretenureMode() == TENURED) {
589 // Step 2: Deopt maybe tenured allocation sites if necessary.
615 "mementos=%d tenured=%d not_tenured=%d\n",
    [all...]
  /external/v8/src/compiler/
js-graph.cc 76 value = String::Flatten(Handle<String>::cast(value), TENURED);
code-generator.cc 191 TENURED));
364 DeoptimizationInputData::New(isolate(), deopt_count, TENURED);
381 static_cast<int>(deoptimization_literals_.size()), TENURED);
  /external/v8/src/runtime/
runtime-literals.cc 60 isolate->heap()->InNewSpace(*literals) ? NOT_TENURED : TENURED;
148 isolate->heap()->InNewSpace(*literals) ? NOT_TENURED : TENURED;
runtime-maths.cc 268 isolate->factory()->NewJSArrayBuffer(SharedFlag::kNotShared, TENURED);
runtime-function.cc 198 number_of_literals, TENURED);
  /external/v8/src/wasm/
wasm-module.cc 260 Handle<JSObject> module = factory->NewJSObjectFromMap(map, TENURED);
262 factory->NewFixedArray(static_cast<int>(functions->size()), TENURED);
  /external/v8/src/ast/
ast-value-factory.cc 182 value_ = isolate->factory()->NewNumber(number_, TENURED);
  /external/v8/src/compiler/arm/
code-generator-arm.cc 73 isolate()->factory()->NewNumber(constant.ToFloat32(), TENURED));
76 isolate()->factory()->NewNumber(constant.ToFloat64(), TENURED));
    [all...]

Completed in 262 milliseconds

1 2 3