Home
last modified time | relevance | path

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

/external/v8/src/
Dhydrogen-gvn.h114 class HGlobalValueNumberingPhase FINAL : public HPhase {
116 explicit HGlobalValueNumberingPhase(HGraph* graph);
149 DISALLOW_COPY_AND_ASSIGN(HGlobalValueNumberingPhase);
Dhydrogen-gvn.cc485 HGlobalValueNumberingPhase::HGlobalValueNumberingPhase(HGraph* graph) in HGlobalValueNumberingPhase() function in v8::internal::HGlobalValueNumberingPhase
499 void HGlobalValueNumberingPhase::Run() { in Run()
527 void HGlobalValueNumberingPhase::ComputeBlockSideEffects() { in ComputeBlockSideEffects()
560 void HGlobalValueNumberingPhase::LoopInvariantCodeMotion() { in LoopInvariantCodeMotion()
581 void HGlobalValueNumberingPhase::ProcessLoopBlock( in ProcessLoopBlock()
632 bool HGlobalValueNumberingPhase::AllowCodeMotion() { in AllowCodeMotion()
637 bool HGlobalValueNumberingPhase::ShouldMove(HInstruction* instr, in ShouldMove()
647 HGlobalValueNumberingPhase::CollectSideEffectsOnPathsToDominatedBlock( in CollectSideEffectsOnPathsToDominatedBlock()
785 void HGlobalValueNumberingPhase::AnalyzeGraph() { in AnalyzeGraph()
Dhydrogen.cc4391 if (FLAG_use_gvn) Run<HGlobalValueNumberingPhase>(); in Optimize()