2013-07-08 08:18:29 +00:00
|
|
|
// Copyright 2013 the V8 project authors. All rights reserved.
|
2014-04-29 06:42:26 +00:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
2013-07-08 08:18:29 +00:00
|
|
|
|
|
|
|
#ifndef V8_HYDROGEN_REDUNDANT_PHI_H_
|
|
|
|
#define V8_HYDROGEN_REDUNDANT_PHI_H_
|
|
|
|
|
|
|
|
#include "hydrogen.h"
|
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
|
|
|
|
|
|
|
|
// Replace all phis consisting of a single non-loop operand plus any number of
|
|
|
|
// loop operands by that single non-loop operand.
|
|
|
|
class HRedundantPhiEliminationPhase : public HPhase {
|
|
|
|
public:
|
|
|
|
explicit HRedundantPhiEliminationPhase(HGraph* graph)
|
|
|
|
: HPhase("H_Redundant phi elimination", graph) { }
|
|
|
|
|
|
|
|
void Run();
|
2013-10-10 08:50:44 +00:00
|
|
|
void ProcessBlock(HBasicBlock* block);
|
2013-07-08 08:18:29 +00:00
|
|
|
|
|
|
|
private:
|
2013-10-10 08:50:44 +00:00
|
|
|
void ProcessPhis(const ZoneList<HPhi*>* phis);
|
|
|
|
|
2013-07-08 08:18:29 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(HRedundantPhiEliminationPhase);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} } // namespace v8::internal
|
|
|
|
|
|
|
|
#endif // V8_HYDROGEN_REDUNDANT_PHI_H_
|