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

  /external/v8/test/cctest/
test-alloc.cc 71 CHECK(!heap->AllocateByteArray(0, TENURED)->IsFailure());
73 CHECK(!heap->AllocateRawAsciiString(100, TENURED)->IsFailure());
77 CHECK(!heap->AllocateFixedArray(10000, TENURED)->IsFailure());
79 CHECK(!heap->AllocateFixedArray(10000, TENURED)->IsFailure());
92 CHECK(!heap->AllocateFixedArray(100, TENURED)->IsFailure());
test-serialize.cc 601 TENURED)->ToObjectChecked();
619 TENURED)->ToObjectChecked();
659 TENURED)->ToObjectChecked();
test-mark-compact.cc 132 { MaybeObject* maybe_obj = HEAP->AllocateFixedArray(100, TENURED);
test-disasm-ia32.cc 71 Handle<FixedArray> foo = FACTORY->NewFixedArray(10, TENURED);
102 Handle<FixedArray> foo2 = FACTORY->NewFixedArray(10, TENURED);
test-heap.cc 814 objs[next_objs_index++] = FACTORY->NewJSArray(10, TENURED);
820 FACTORY->NewStringFromAscii(CStrVector("abcdefghij"), TENURED);
828 FACTORY->NewStringFromAscii(CStrVector(str), TENURED);
    [all...]
  /external/v8/src/
bootstrapper.h 69 FACTORY->NewFixedArray(length + 2, TENURED);
72 Handle<String> str = FACTORY->NewStringFromAscii(name, TENURED);
bootstrapper.cc 444 TENURED);
578 Handle<FixedArray> arguments = factory->NewFixedArray(2, TENURED);
579 Handle<FixedArray> caller = factory->NewFixedArray(2, TENURED);
764 factory->NewJSObject(global_proxy_function, TENURED));
    [all...]
v8globals.h 215 enum PretenureFlag { NOT_TENURED, TENURED };
heap.cc     [all...]
factory.h 251 PretenureFlag pretenure = TENURED);
parser.cc     [all...]
scopeinfo.cc 312 SerializedScopeInfo::cast(*FACTORY->NewFixedArray(length, TENURED)));
factory.cc 269 Handle<Proxy> wrapper = NewProxy(0, TENURED);
297 return NewProxy((Address) desc, TENURED);
    [all...]
full-codegen.cc 345 NewDeoptimizationOutputData(length, TENURED);
548 isolate()->factory()->NewFixedArray(2 * globals, TENURED);
    [all...]
deoptimizer.cc     [all...]
heap.h 573 // Allocate a non-tenured byte array of the specified length
589 // Allocate a tenured JS global property cell.
    [all...]
objects.cc 702 PretenureFlag tenure = heap->InNewSpace(this) ? pretenure : TENURED;
    [all...]
runtime.cc     [all...]
api.cc     [all...]
  /external/v8/src/ia32/
deoptimizer-ia32.cc 109 factory->NewByteArray(reloc_length + padding, TENURED);
lithium-codegen-ia32.cc 584 factory()->NewDeoptimizationInputData(length, TENURED);
591 factory()->NewFixedArray(deoptimization_literals_.length(), TENURED);
    [all...]
  /external/v8/src/arm/
lithium-codegen-arm.cc 627 factory()->NewDeoptimizationInputData(length, TENURED);
634 factory()->NewFixedArray(deoptimization_literals_.length(), TENURED);
    [all...]
  /external/v8/src/x64/
lithium-codegen-x64.cc 579 factory()->NewDeoptimizationInputData(length, TENURED);
586 factory()->NewFixedArray(deoptimization_literals_.length(), TENURED);
    [all...]

Completed in 183 milliseconds