Home | History | Annotate | Download | only in optimizing

Lines Matching refs:allocator

172     ArenaAllocator* allocator,
179 ArenaVector<HOptimization*> optimizations(allocator->Adapter());
202 opt = most_recent_side_effects = new (allocator) SideEffectsAnalysis(graph, name);
205 opt = most_recent_induction = new (allocator) HInductionVarAnalysis(graph, name);
208 opt = most_recent_lsa = new (allocator) LoadStoreAnalysis(graph, name);
215 opt = new (allocator) GVNOptimization(graph, *most_recent_side_effects, name);
219 opt = new (allocator) LICM(graph, *most_recent_side_effects, stats, name);
223 opt = new (allocator) HLoopOptimization(graph, driver, most_recent_induction, stats, name);
227 opt = new (allocator) BoundsCheckElimination(
232 opt = new (allocator) LoadStoreElimination(
239 opt = new (allocator) HConstantFolding(graph, name);
242 opt = new (allocator) HDeadCodeElimination(graph, stats, name);
247 opt = new (allocator) HInliner(graph, // outer_graph
263 opt = new (allocator) HSharpening(graph, codegen, driver, name);
266 opt = new (allocator) HSelectGenerator(graph, handles, stats, name);
269 opt = new (allocator) InstructionSimplifier(graph, codegen, driver, stats, name);
272 opt = new (allocator) IntrinsicsRecognizer(graph, stats, name);
275 opt = new (allocator) CHAGuardOptimization(graph, name);
278 opt = new (allocator) CodeSinking(graph, stats, name);
281 opt = new (allocator) ConstructorFenceRedundancyElimination(graph, stats, name);
284 opt = new (allocator) HInstructionScheduling(
293 opt = new (allocator) arm::InstructionSimplifierArm(graph, stats);
299 opt = new (allocator) arm64::InstructionSimplifierArm64(graph, stats);
305 opt = new (allocator) mips::PcRelativeFixups(graph, codegen, stats);
309 opt = new (allocator) mips::InstructionSimplifierMips(graph, codegen, stats);
315 opt = new (allocator) x86::PcRelativeFixups(graph, codegen, stats);
319 opt = new (allocator) x86::X86MemoryOperandGeneration(graph, codegen, stats);