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

Unified Diff: src/hydrogen-range-analysis.h

Issue 18491002: Turn range analysis into proper HPhase. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 6 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
Index: src/hydrogen-range-analysis.h
diff --git a/src/hydrogen-escape-analysis.h b/src/hydrogen-range-analysis.h
similarity index 70%
copy from src/hydrogen-escape-analysis.h
copy to src/hydrogen-range-analysis.h
index 1d31f3dce7e789320c7fdd8439a9f11e1bb35236..52ce109c8797d0f65edc01b733e90bda93008db3 100644
--- a/src/hydrogen-escape-analysis.h
+++ b/src/hydrogen-range-analysis.h
@@ -25,33 +25,37 @@
// (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_ESCAPE_ANALYSIS_H_
-#define V8_HYDROGEN_ESCAPE_ANALYSIS_H_
+#ifndef V8_HYDROGEN_RANGE_ANALYSIS_H_
+#define V8_HYDROGEN_RANGE_ANALYSIS_H_
-#include "allocation.h"
#include "hydrogen.h"
namespace v8 {
namespace internal {
-class HEscapeAnalysis BASE_EMBEDDED {
+class HRangeAnalysisPhase : public HPhase {
public:
- explicit HEscapeAnalysis(HGraph* graph)
- : graph_(graph), zone_(graph->zone()), captured_(0, zone_) { }
+ explicit HRangeAnalysisPhase(HGraph* graph)
+ : HPhase("H_Range analysis", graph), changed_ranges_(16, zone()) { }
- void Analyze();
+ void Run() {
+ Analyze(graph()->entry_block());
+ }
private:
- void CollectCapturedValues();
- void CollectIfNoEscapingUses(HInstruction* instr);
-
- HGraph* graph_;
- Zone* zone_;
- ZoneList<HValue*> captured_;
+ void TraceRange(const char* msg, ...);
+ void Analyze(HBasicBlock* block);
+ void InferControlFlowRange(HCompareIDAndBranch* test, HBasicBlock* dest);
+ void UpdateControlFlowRange(Token::Value op, HValue* value, HValue* other);
+ void InferRange(HValue* value);
+ void RollBackTo(int index);
+ void AddRange(HValue* value, Range* range);
+
+ ZoneList<HValue*> changed_ranges_;
};
} } // namespace v8::internal
-#endif // V8_HYDROGEN_ESCAPE_ANALYSIS_H_
+#endif // V8_HYDROGEN_RANGE_ANALYSIS_H_
« no previous file with comments | « src/hydrogen.cc ('k') | src/hydrogen-range-analysis.cc » ('j') | src/hydrogen-range-analysis.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698