Searched defs:allocator (Results 151 - 160 of 160) sorted by relevance

1234567

/external/chromium_org/v8/src/mips64/
H A Dlithium-mips64.h10 #include "src/lithium-allocator.h"
242 // Interface to the register allocator and iterators.
249 // Interface to the register allocator and iterators.
2704 LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator) argument
2709 allocator_(allocator) {}
2755 // instruction. This means that register allocator will not reuse it's
2758 // instruction start. Register allocator is free to assign the same register
/external/chromium_org/v8/src/x64/
H A Dlithium-x64.h10 #include "src/lithium-allocator.h"
241 // Interface to the register allocator and iterators.
250 // Interface to the register allocator and iterators.
2751 LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator) argument
2756 allocator_(allocator) {}
2798 // instruction. This means that register allocator will not reuse it's
2801 // instruction start. Register allocator is free to assign the same register
2858 // Marks a call for the register allocator. Assigns a pointer map to
/external/chromium_org/v8/src/x87/
H A Dlithium-x87.h10 #include "src/lithium-allocator.h"
248 // Interface to the register allocator and iterators.
2768 LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator) argument
2773 allocator_(allocator) {}
2813 // instruction. This means that register allocator will not reuse it's
2816 // instruction start. Register allocator is free to assign the same register
2876 // Marks a call for the register allocator. Assigns a pointer map to
/external/skia/src/core/
H A DSkDraw.cpp1252 SkTBlitterAllocator allocator; local
1253 // blitter will be owned by the allocator.
1255 ix, iy, &allocator);
1306 SkTBlitterAllocator allocator; local
1307 // blitter will be owned by the allocator.
1309 x, y, &allocator);
/external/chromium_org/v8/src/arm64/
H A Dlithium-arm64.h10 #include "src/lithium-allocator.h"
257 // Interface to the register allocator and iterators.
2322 // avoid pressure on the register allocator.
3097 LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator) argument
3101 allocator_(allocator) {}
3136 // of the instruction. This means that register allocator will not reuse its
3150 // instruction start. The register allocator is free to assign the same
/external/chromium_org/v8/src/
H A Dheap-snapshot-generator.cc900 HeapEntry* AddEntry(HeapThing ptr, HeapEntriesAllocator* allocator) { argument
901 HeapEntry* entry = allocator->AllocateEntry(ptr);
909 HeapEntry* FindOrAddEntry(HeapThing ptr, HeapEntriesAllocator* allocator) { argument
911 return entry != NULL ? entry : AddEntry(ptr, allocator);
1585 JSArrayBufferDataEntryAllocator allocator(data_size, this);
1587 filler_->FindOrAddEntry(buffer->backing_store(), &allocator);
H A Dapi.cc5062 ArrayBuffer::Allocator* allocator) {
5067 i::V8::SetArrayBufferAllocator(allocator);
5061 SetArrayBufferAllocator( ArrayBuffer::Allocator* allocator) argument
H A Dhydrogen.cc41 #include "src/lithium-allocator.h"
12357 void HTracer::TraceLiveRanges(const char* name, LAllocator* allocator) { argument
12361 const Vector<LiveRange*>* fixed_d = allocator->fixed_double_live_ranges();
12363 TraceLiveRange(fixed_d->at(i), "fixed", allocator->zone());
12366 const Vector<LiveRange*>* fixed = allocator->fixed_live_ranges();
12368 TraceLiveRange(fixed->at(i), "fixed", allocator->zone());
12371 const ZoneList<LiveRange*>* live_ranges = allocator->live_ranges();
12373 TraceLiveRange(live_ranges->at(i), "object", allocator->zone());
H A Dobjects.cc1388 HeapStringAllocator allocator; local
1389 StringStream accumulator(&allocator);
1395 HeapStringAllocator allocator; local
1396 StringStream accumulator(&allocator);
1477 HeapStringAllocator allocator; local
1478 StringStream accumulator(&allocator);
1508 HeapStringAllocator allocator; local
1509 StringStream accumulator(&allocator);
1516 HeapStringAllocator allocator; local
1517 StringStream accumulator(&allocator);
[all...]
/external/chromium_org/v8/src/heap/
H A Dmark-compact.cc4403 bool SlotsBuffer::AddTo(SlotsBufferAllocator* allocator, argument
4409 allocator->DeallocateChain(buffer_address);
4412 buffer = allocator->AllocateBuffer(buffer);

Completed in 832 milliseconds

1234567