Lines Matching refs:allocation
9 #include "src/compiler/allocation-builder.h"
18 void AllocationBuilder::Allocate(int size, AllocationType allocation,
21 DCHECK_LE(size, isolate()->heap()->MaxRegularHeapObjectSize(allocation));
24 allocation_ = graph()->NewNode(simplified()->Allocate(type, allocation),
43 AllocationType allocation) {
49 return size <= isolate()->heap()->MaxRegularHeapObjectSize(allocation);
52 // Compound allocation of a FixedArray.
54 AllocationType allocation) {
55 DCHECK(CanAllocateArray(length, map, allocation));
59 Allocate(size, allocation, Type::OtherInternal());
65 int length, MapRef map, AllocationType allocation) {
67 return size <= isolate()->heap()->MaxRegularHeapObjectSize(allocation);
71 int length, MapRef map, AllocationType allocation) {
72 DCHECK(CanAllocateSloppyArgumentElements(length, map, allocation));
74 Allocate(size, allocation, Type::OtherInternal());