Lines Matching refs:graph

164     HGraph* graph,  in ConstructOptimizations()  argument
190 opt = most_recent_side_effects = new (allocator) SideEffectsAnalysis(graph, pass_name); in ConstructOptimizations()
193 opt = most_recent_induction = new (allocator) HInductionVarAnalysis(graph, pass_name); in ConstructOptimizations()
200 opt = new (allocator) GVNOptimization(graph, *most_recent_side_effects, pass_name); in ConstructOptimizations()
204 opt = new (allocator) LICM(graph, *most_recent_side_effects, stats, pass_name); in ConstructOptimizations()
209 graph, *codegen, most_recent_induction, stats, pass_name); in ConstructOptimizations()
214 graph, *most_recent_side_effects, most_recent_induction, pass_name); in ConstructOptimizations()
219 graph, *most_recent_side_effects, stats, pass_name); in ConstructOptimizations()
225 opt = new (allocator) HConstantFolding(graph, pass_name); in ConstructOptimizations()
228 opt = new (allocator) HDeadCodeElimination(graph, stats, pass_name); in ConstructOptimizations()
233 opt = new (allocator) HInliner(graph, // outer_graph in ConstructOptimizations()
234 graph, // outermost_graph in ConstructOptimizations()
247 opt = new (allocator) HSelectGenerator(graph, stats, pass_name); in ConstructOptimizations()
250 opt = new (allocator) InstructionSimplifier(graph, codegen, stats, pass_name); in ConstructOptimizations()
253 opt = new (allocator) InstructionSimplifier(graph, in ConstructOptimizations()
260 opt = new (allocator) CHAGuardOptimization(graph, pass_name); in ConstructOptimizations()
263 opt = new (allocator) CodeSinking(graph, stats, pass_name); in ConstructOptimizations()
266 opt = new (allocator) ConstructorFenceRedundancyElimination(graph, stats, pass_name); in ConstructOptimizations()
270 graph, codegen->GetCompilerOptions().GetInstructionSet(), codegen, pass_name); in ConstructOptimizations()
278 opt = new (allocator) arm::InstructionSimplifierArm(graph, stats); in ConstructOptimizations()
284 opt = new (allocator) arm64::InstructionSimplifierArm64(graph, stats); in ConstructOptimizations()
290 opt = new (allocator) x86::PcRelativeFixups(graph, codegen, stats); in ConstructOptimizations()
294 opt = new (allocator) x86::X86MemoryOperandGeneration(graph, codegen, stats); in ConstructOptimizations()
297 opt = new (allocator) x86::InstructionSimplifierX86(graph, codegen, stats); in ConstructOptimizations()
302 opt = new (allocator) x86_64::InstructionSimplifierX86_64(graph, codegen, stats); in ConstructOptimizations()