Lines Matching refs:allocator
180 ArenaAllocator* allocator, in ConstructOptimizations() argument
186 ArenaVector<HOptimization*> optimizations(allocator->Adapter()); in ConstructOptimizations()
209 opt = most_recent_side_effects = new (allocator) SideEffectsAnalysis(graph, pass_name); in ConstructOptimizations()
212 opt = most_recent_induction = new (allocator) HInductionVarAnalysis(graph, pass_name); in ConstructOptimizations()
215 opt = most_recent_lsa = new (allocator) LoadStoreAnalysis(graph, pass_name); in ConstructOptimizations()
222 opt = new (allocator) GVNOptimization(graph, *most_recent_side_effects, pass_name); in ConstructOptimizations()
226 opt = new (allocator) LICM(graph, *most_recent_side_effects, stats, pass_name); in ConstructOptimizations()
230 opt = new (allocator) HLoopOptimization( in ConstructOptimizations()
235 opt = new (allocator) BoundsCheckElimination( in ConstructOptimizations()
240 opt = new (allocator) LoadStoreElimination( in ConstructOptimizations()
247 opt = new (allocator) HConstantFolding(graph, pass_name); in ConstructOptimizations()
250 opt = new (allocator) HDeadCodeElimination(graph, stats, pass_name); in ConstructOptimizations()
255 opt = new (allocator) HInliner(graph, // outer_graph in ConstructOptimizations()
270 opt = new (allocator) HSelectGenerator(graph, handles, stats, pass_name); in ConstructOptimizations()
273 opt = new (allocator) InstructionSimplifier(graph, codegen, stats, pass_name); in ConstructOptimizations()
276 opt = new (allocator) CHAGuardOptimization(graph, pass_name); in ConstructOptimizations()
279 opt = new (allocator) CodeSinking(graph, stats, pass_name); in ConstructOptimizations()
282 opt = new (allocator) ConstructorFenceRedundancyElimination(graph, stats, pass_name); in ConstructOptimizations()
285 opt = new (allocator) HInstructionScheduling( in ConstructOptimizations()
294 opt = new (allocator) arm::InstructionSimplifierArm(graph, stats); in ConstructOptimizations()
300 opt = new (allocator) arm64::InstructionSimplifierArm64(graph, stats); in ConstructOptimizations()
306 opt = new (allocator) mips::PcRelativeFixups(graph, codegen, stats); in ConstructOptimizations()
310 opt = new (allocator) mips::InstructionSimplifierMips(graph, codegen, stats); in ConstructOptimizations()
316 opt = new (allocator) x86::PcRelativeFixups(graph, codegen, stats); in ConstructOptimizations()
320 opt = new (allocator) x86::X86MemoryOperandGeneration(graph, codegen, stats); in ConstructOptimizations()
323 opt = new (allocator) x86::InstructionSimplifierX86(graph, codegen, stats); in ConstructOptimizations()
328 opt = new (allocator) x86_64::InstructionSimplifierX86_64(graph, codegen, stats); in ConstructOptimizations()