Index: src/compiler/control-reducer.h |
diff --git a/src/compiler/control-reducer.h b/src/compiler/control-reducer.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d69d966404979a0cfc62457850dfc890cfd178d2 |
--- /dev/null |
+++ b/src/compiler/control-reducer.h |
@@ -0,0 +1,27 @@ |
+// Copyright 2014 the V8 project authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef V8_COMPILER_CONTROL_REDUCER_H_ |
+#define V8_COMPILER_CONTROL_REDUCER_H_ |
+ |
+namespace v8 { |
+namespace internal { |
+namespace compiler { |
+ |
+class JSGraph; |
+class CommonOperatorBuilder; |
+ |
+class ControlReducer { |
+ public: |
+ // Perform branch folding and dead code elimination on the graph. |
+ static void ReduceGraph(JSGraph* graph, CommonOperatorBuilder* builder); |
+ |
+ // Trim nodes in the graph that are not reachable from end. |
+ static void TrimGraph(JSGraph* graph); |
+}; |
+} |
+} |
+} // namespace v8::internal::compiler |
+ |
+#endif // V8_COMPILER_CONTROL_REDUCER_H_ |