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

Unified Diff: src/hydrogen-osr.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-mark-unreachable.cc ('k') | src/hydrogen-osr.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/hydrogen-osr.h
diff --git a/src/hydrogen-osr.h b/src/hydrogen-osr.h
deleted file mode 100644
index 6a63988a06b7f959d229f2fa287b4581a3c9e1c9..0000000000000000000000000000000000000000
--- a/src/hydrogen-osr.h
+++ /dev/null
@@ -1,55 +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_OSR_H_
-#define V8_HYDROGEN_OSR_H_
-
-#include "src/hydrogen.h"
-#include "src/ast.h"
-#include "src/zone.h"
-
-namespace v8 {
-namespace internal {
-
-// Responsible for building graph parts related to OSR and otherwise
-// setting up the graph to do an OSR compile.
-class HOsrBuilder : public ZoneObject {
- public:
- explicit HOsrBuilder(HOptimizedGraphBuilder* builder)
- : unoptimized_frame_slots_(0),
- builder_(builder),
- osr_entry_(NULL),
- osr_loop_entry_(NULL),
- osr_values_(NULL) { }
-
- // Creates the loop entry block for the given statement, setting up OSR
- // entries as necessary, and sets the current block to the new block.
- HBasicBlock* BuildOsrLoopEntry(IterationStatement* statement);
-
- // Process the hydrogen graph after it has been completed, performing
- // any OSR-specific cleanups or changes.
- void FinishGraph();
-
- // Process the OSR values and phis after initial graph optimization.
- void FinishOsrValues();
-
- // Return the number of slots in the unoptimized frame at the entry to OSR.
- int UnoptimizedFrameSlots() const {
- return unoptimized_frame_slots_;
- }
-
- bool HasOsrEntryAt(IterationStatement* statement);
-
- private:
- int unoptimized_frame_slots_;
- HOptimizedGraphBuilder* builder_;
- HBasicBlock* osr_entry_;
- HBasicBlock* osr_loop_entry_;
- ZoneList<HUnknownOSRValue*>* osr_values_;
-};
-
-} // namespace internal
-} // namespace v8
-
-#endif // V8_HYDROGEN_OSR_H_
« no previous file with comments | « src/hydrogen-mark-unreachable.cc ('k') | src/hydrogen-osr.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698