Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(422)

Unified Diff: src/hydrogen-bch.h

Issue 20264002: Added missing header. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/hydrogen-bch.h
diff --git a/src/hydrogen-canonicalize.h b/src/hydrogen-bch.h
similarity index 81%
copy from src/hydrogen-canonicalize.h
copy to src/hydrogen-bch.h
index d2b289bc2124d2634c48a50b5c202c2941886b8c..a22dacdd4229748e2735b3c0d8519c927b2f617d 100644
--- a/src/hydrogen-canonicalize.h
+++ b/src/hydrogen-bch.h
@@ -25,8 +25,8 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#ifndef V8_HYDROGEN_CANONICALIZE_H_
-#define V8_HYDROGEN_CANONICALIZE_H_
+#ifndef V8_HYDROGEN_BCH_H_
+#define V8_HYDROGEN_BCH_H_
#include "hydrogen.h"
@@ -34,18 +34,22 @@ namespace v8 {
namespace internal {
-class HCanonicalizePhase : public HPhase {
+class HBoundsCheckHoistingPhase : public HPhase {
public:
- explicit HCanonicalizePhase(HGraph* graph)
- : HPhase("H_Canonicalize", graph) { }
+ explicit HBoundsCheckHoistingPhase(HGraph* graph)
+ : HPhase("H_Bounds checks hoisting", graph) { }
- void Run();
+ void Run() {
+ HoistRedundantBoundsChecks();
+ }
private:
- DISALLOW_COPY_AND_ASSIGN(HCanonicalizePhase);
+ void HoistRedundantBoundsChecks();
+
+ DISALLOW_COPY_AND_ASSIGN(HBoundsCheckHoistingPhase);
};
} } // namespace v8::internal
-#endif // V8_HYDROGEN_CANONICALIZE_H_
+#endif // V8_HYDROGEN_BCE_H_
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698