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

Unified Diff: src/compiler/operation-typer.h

Issue 2084943002: [turbofan] Reuse the operation typer's logic in the typer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | src/compiler/typer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/operation-typer.h
diff --git a/src/compiler/operation-typer.h b/src/compiler/operation-typer.h
index aa669acdec49e30645622ceb7610549ba4827609..904d6f3dc1b798c9f0f2cac59f9c390591b4a294 100644
--- a/src/compiler/operation-typer.h
+++ b/src/compiler/operation-typer.h
@@ -7,6 +7,7 @@
#include "src/base/flags.h"
#include "src/compiler/opcodes.h"
+#include "src/zone.h"
namespace v8 {
namespace internal {
@@ -15,11 +16,10 @@ class Isolate;
class RangeType;
class Type;
class TypeCache;
-class Zone;
namespace compiler {
-class OperationTyper {
+class OperationTyper : public ZoneObject {
Benedikt Meurer 2016/06/22 03:49:49 Nit: This shouldn't be a ZoneObject. Just embed th
public:
OperationTyper(Isolate* isolate, Zone* zone);
« no previous file with comments | « no previous file | src/compiler/typer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698