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/default-platform.h

Issue 78453003: Reland r17877 - Introduce a v8::Platform class that bundles embedder callbacks (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month 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/default-platform.h
diff --git a/src/hydrogen-dce.h b/src/default-platform.h
similarity index 76%
copy from src/hydrogen-dce.h
copy to src/default-platform.h
index 2d73b380e40831147e5b5e586f0c805d9c45f877..45a6056ed61415bfbcd1d2a0910f67dbae3f5c78 100644
--- a/src/hydrogen-dce.h
+++ b/src/default-platform.h
@@ -25,33 +25,31 @@
// (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_DCE_H_
-#define V8_HYDROGEN_DCE_H_
+#ifndef V8_DEFAULT_PLATFORM_H_
+#define V8_DEFAULT_PLATFORM_H_
-#include "hydrogen.h"
+#include "v8.h"
namespace v8 {
namespace internal {
-
-class HDeadCodeEliminationPhase : public HPhase {
+class DefaultPlatform : public Platform {
public:
- explicit HDeadCodeEliminationPhase(HGraph* graph)
- : HPhase("H_Dead code elimination", graph) { }
+ DefaultPlatform();
+ virtual ~DefaultPlatform();
- void Run() {
- MarkLiveInstructions();
- RemoveDeadInstructions();
- }
+ // v8::Platform implementation.
+ virtual void CallOnBackgroundThread(Task *task,
+ bool task_is_slow) V8_OVERRIDE;
+ virtual void CallOnForegroundThread(v8::Isolate *isolate,
+ Task *task) V8_OVERRIDE;
private:
- void MarkLive(HValue* instr, ZoneList<HValue*>* worklist);
- void PrintLive(HValue* ref, HValue* instr);
- void MarkLiveInstructions();
- void RemoveDeadInstructions();
+ DISALLOW_COPY_AND_ASSIGN(DefaultPlatform);
};
} } // namespace v8::internal
-#endif // V8_HYDROGEN_DCE_H_
+
+#endif // V8_DEFAULT_PLATFORM_H_
« include/v8-platform.h ('K') | « src/api.cc ('k') | src/default-platform.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698