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

Unified Diff: src/hydrogen-infer-representation.h

Issue 1405363003: Move Hydrogen and Lithium to src/crankshaft/ (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebased Created 5 years, 2 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 | « src/hydrogen-gvn.cc ('k') | src/hydrogen-infer-representation.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/hydrogen-infer-representation.h
diff --git a/src/hydrogen-infer-representation.h b/src/hydrogen-infer-representation.h
deleted file mode 100644
index 883173d8a323a57b580f3ea39b9fda0805ca64d8..0000000000000000000000000000000000000000
--- a/src/hydrogen-infer-representation.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2013 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_HYDROGEN_INFER_REPRESENTATION_H_
-#define V8_HYDROGEN_INFER_REPRESENTATION_H_
-
-#include "src/hydrogen.h"
-
-namespace v8 {
-namespace internal {
-
-
-class HInferRepresentationPhase : public HPhase {
- public:
- explicit HInferRepresentationPhase(HGraph* graph)
- : HPhase("H_Infer representations", graph),
- worklist_(8, zone()),
- in_worklist_(graph->GetMaximumValueID(), zone()) { }
-
- void Run();
- void AddToWorklist(HValue* current);
-
- private:
- ZoneList<HValue*> worklist_;
- BitVector in_worklist_;
-
- DISALLOW_COPY_AND_ASSIGN(HInferRepresentationPhase);
-};
-
-
-} // namespace internal
-} // namespace v8
-
-#endif // V8_HYDROGEN_INFER_REPRESENTATION_H_
« no previous file with comments | « src/hydrogen-gvn.cc ('k') | src/hydrogen-infer-representation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698