Home
last modified time | relevance | path

Searched refs:AllocationGroup (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/v8/src/compiler/
Dmemory-lowering.h30 class AllocationGroup; variable
41 static AllocationState const* Closed(AllocationGroup* group, Node* effect, in Closed()
45 static AllocationState const* Open(AllocationGroup* group, intptr_t size, in Open()
52 AllocationGroup* group() const { return group_; } in group()
61 explicit AllocationState(AllocationGroup* group, Node* effect);
62 AllocationState(AllocationGroup* group, intptr_t size, Node* top,
65 AllocationGroup* const group_;
Dmemory-lowering.cc28 class MemoryLowering::AllocationGroup final : public ZoneObject { class in v8::internal::compiler::MemoryLowering
30 AllocationGroup(Node* node, AllocationType allocation, Zone* zone);
31 AllocationGroup(Node* node, AllocationType allocation, Node* size,
33 ~AllocationGroup() = default;
58 DISALLOW_IMPLICIT_CONSTRUCTORS(AllocationGroup);
248 AllocationGroup* const group = state->group(); in ReduceAllocateRaw()
324 AllocationGroup* group = zone()->New<AllocationGroup>( in ReduceAllocateRaw()
367 AllocationGroup* group = in ReduceAllocateRaw()
368 zone()->New<AllocationGroup>(value, allocation_type, zone()); in ReduceAllocateRaw()
656 MemoryLowering::AllocationGroup::AllocationGroup(Node* node, in AllocationGroup() function in v8::internal::compiler::MemoryLowering::AllocationGroup
[all …]
Dmemory-optimizer.cc394 MemoryLowering::AllocationGroup* group = state->group(); in MergeStates()