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

  /external/v8/test/cctest/
test-alloc.cc 159 // CodeRange test.
160 // Tests memory management in a CodeRange by allocating and freeing blocks,
164 // total) more than the size of the CodeRange.
186 TEST(CodeRange) {
190 CodeRange* code_range = new CodeRange(Isolate::Current());
  /external/v8/src/
isolate.h 53 class CodeRange;
811 CodeRange* code_range() { return code_range_; }
    [all...]
spaces.h 412 // platforms, we support this using the CodeRange object, which reserves and
414 class CodeRange {
416 explicit CodeRange(Isolate* isolate);
476 DISALLOW_COPY_AND_ASSIGN(CodeRange);
    [all...]
spaces.cc 148 // CodeRange
151 CodeRange::CodeRange(Isolate* isolate)
160 bool CodeRange::Setup(const size_t requested) {
173 LOG(isolate_, NewEvent("CodeRange", code_range_->address(), requested));
180 int CodeRange::CompareFreeBlockAddress(const FreeBlock* left,
182 // The entire point of CodeRange is that the difference between two
189 void CodeRange::GetNextAllocationBlock(size_t requested) {
226 V8::FatalProcessOutOfMemory("CodeRange::GetNextAllocationBlock");
231 void* CodeRange::AllocateRawMemory(const size_t requested, size_t* allocated)
    [all...]
isolate.cc 717 code_range_ = new CodeRange(this);

Completed in 44 milliseconds