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

1 2

  /external/v8/test/cctest/
test-alloc.cc 71 CHECK(!heap->AllocateByteArray(0, TENURED)->IsFailure());
73 CHECK(!heap->AllocateRawAsciiString(100, TENURED)->IsFailure());
81 CHECK(!heap->AllocateFixedArray(kOldPointerSpaceFillerLength, TENURED)->
84 CHECK(!heap->AllocateFixedArray(kOldPointerSpaceFillerLength, TENURED)->
93 CHECK(!heap->AllocateFixedArray(kLargeObjectSpaceFillerLength, TENURED)->
96 CHECK(!heap->AllocateFixedArray(kLargeObjectSpaceFillerLength, TENURED)->
110 CHECK(!heap->AllocateFixedArray(100, TENURED)->IsFailure());
test-serialize.cc 604 TENURED)->ToObjectChecked();
624 TENURED)->ToObjectChecked();
664 TENURED)->ToObjectChecked();
test-heap.cc 814 objs[next_objs_index++] = FACTORY->NewJSArray(10, FAST_ELEMENTS, TENURED);
820 FACTORY->NewStringFromAscii(CStrVector("abcdefghij"), TENURED);
828 FACTORY->NewStringFromAscii(CStrVector(str), TENURED);
    [all...]
test-disasm-ia32.cc 71 Handle<FixedArray> foo = FACTORY->NewFixedArray(10, TENURED);
102 Handle<FixedArray> foo2 = FACTORY->NewFixedArray(10, TENURED);
test-mark-compact.cc 143 { MaybeObject* maybe_obj = HEAP->AllocateFixedArray(100, TENURED);
  /external/v8/src/
bootstrapper.h 71 FACTORY->NewFixedArray(length + 2, TENURED);
74 Handle<String> str = FACTORY->NewStringFromAscii(name, TENURED);
bootstrapper.cc 483 TENURED);
793 factory()->NewJSObject(global_proxy_function, TENURED));
    [all...]
v8globals.h 199 enum PretenureFlag { NOT_TENURED, TENURED };
heap.cc     [all...]
full-codegen.cc 372 NewDeoptimizationOutputData(length, TENURED);
394 isolate()->factory()->NewFixedArray(array_size, TENURED));
584 isolate()->factory()->NewFixedArray(2 * global_count_, TENURED);
    [all...]
code-stubs.cc 257 code->GetIsolate()->factory()->NewFixedArray(1, TENURED);
parser.cc     [all...]
factory.h 76 // Allocates a pre-tenured empty AccessorPair.
311 PretenureFlag pretenure = TENURED);
factory.cc 374 Handle<Foreign> wrapper = NewForeign(0, TENURED);
404 return NewForeign((Address) desc, TENURED);
    [all...]
hydrogen-instructions.cc     [all...]
elements.cc 275 TENURED);
    [all...]
deoptimizer.cc     [all...]
heap.h 639 // Allocates a pre-tenured empty AccessorPair.
    [all...]
objects.cc 860 PretenureFlag tenure = heap->InNewSpace(this) ? pretenure : TENURED;
    [all...]
ast.h     [all...]
  /external/v8/src/ia32/
deoptimizer-ia32.cc 92 factory->NewByteArray(reloc_length + padding, TENURED);
    [all...]
lithium-codegen-ia32.cc 607 factory()->NewDeoptimizationInputData(length, TENURED);
614 factory()->NewFixedArray(deoptimization_literals_.length(), TENURED);
    [all...]
  /external/v8/src/arm/
lithium-codegen-arm.cc 684 factory()->NewDeoptimizationInputData(length, TENURED);
691 factory()->NewFixedArray(deoptimization_literals_.length(), TENURED);
    [all...]
  /external/v8/src/mips/
lithium-codegen-mips.cc 647 factory()->NewDeoptimizationInputData(length, TENURED);
654 factory()->NewFixedArray(deoptimization_literals_.length(), TENURED);
    [all...]
  /external/v8/src/x64/
lithium-codegen-x64.cc 566 factory()->NewDeoptimizationInputData(length, TENURED);
573 factory()->NewFixedArray(deoptimization_literals_.length(), TENURED);
    [all...]

Completed in 411 milliseconds

1 2