Lines Matching refs:allocator

167     ArenaAllocator* allocator,  in ConstructOptimizations()  argument
172 ArenaVector<HOptimization*> optimizations(allocator->Adapter()); in ConstructOptimizations()
194 opt = most_recent_side_effects = new (allocator) SideEffectsAnalysis(graph, pass_name); in ConstructOptimizations()
197 opt = most_recent_induction = new (allocator) HInductionVarAnalysis(graph, pass_name); in ConstructOptimizations()
204 opt = new (allocator) GVNOptimization(graph, *most_recent_side_effects, pass_name); in ConstructOptimizations()
208 opt = new (allocator) LICM(graph, *most_recent_side_effects, stats, pass_name); in ConstructOptimizations()
212 opt = new (allocator) HLoopOptimization( in ConstructOptimizations()
217 opt = new (allocator) BoundsCheckElimination( in ConstructOptimizations()
224 opt = new (allocator) HConstantFolding(graph, pass_name); in ConstructOptimizations()
227 opt = new (allocator) HDeadCodeElimination(graph, stats, pass_name); in ConstructOptimizations()
232 opt = new (allocator) HInliner(graph, // outer_graph in ConstructOptimizations()
246 opt = new (allocator) HSelectGenerator(graph, stats, pass_name); in ConstructOptimizations()
249 opt = new (allocator) InstructionSimplifier(graph, codegen, stats, pass_name); in ConstructOptimizations()
252 opt = new (allocator) InstructionSimplifier(graph, in ConstructOptimizations()
259 opt = new (allocator) CHAGuardOptimization(graph, pass_name); in ConstructOptimizations()
262 opt = new (allocator) CodeSinking(graph, stats, pass_name); in ConstructOptimizations()
265 opt = new (allocator) ConstructorFenceRedundancyElimination(graph, stats, pass_name); in ConstructOptimizations()
268 opt = new (allocator) LoadStoreElimination(graph, stats, pass_name); in ConstructOptimizations()
271 opt = new (allocator) HInstructionScheduling( in ConstructOptimizations()
280 opt = new (allocator) arm::InstructionSimplifierArm(graph, stats); in ConstructOptimizations()
284 opt = new (allocator) arm::CriticalNativeAbiFixupArm(graph, stats); in ConstructOptimizations()
290 opt = new (allocator) arm64::InstructionSimplifierArm64(graph, stats); in ConstructOptimizations()
296 opt = new (allocator) x86::PcRelativeFixups(graph, codegen, stats); in ConstructOptimizations()
300 opt = new (allocator) x86::X86MemoryOperandGeneration(graph, codegen, stats); in ConstructOptimizations()
303 opt = new (allocator) x86::InstructionSimplifierX86(graph, codegen, stats); in ConstructOptimizations()
308 opt = new (allocator) x86_64::InstructionSimplifierX86_64(graph, codegen, stats); in ConstructOptimizations()