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

Unified Diff: src/compiler/typer.h

Issue 1307093006: Spliting out TyperCache into ZoneTypeCache to share with AsmTyper. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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 | « BUILD.gn ('k') | src/compiler/typer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/typer.h
diff --git a/src/compiler/typer.h b/src/compiler/typer.h
index f5ef4f15535821c5ab5a43a323b35050651e78cc..065262907ba278a0aa71f8d5480d419e4672b8e4 100644
--- a/src/compiler/typer.h
+++ b/src/compiler/typer.h
@@ -10,10 +10,11 @@
namespace v8 {
namespace internal {
-namespace compiler {
// Forward declarations.
-class TyperCache;
+class ZoneTypeCache;
+
+namespace compiler {
class Typer {
@@ -39,7 +40,7 @@ class Typer {
Graph* const graph_;
Type::FunctionType* function_type_;
Decorator* decorator_;
- TyperCache const& cache_;
+ ZoneTypeCache const& cache_;
Type* singleton_false_;
Type* singleton_true_;
« no previous file with comments | « BUILD.gn ('k') | src/compiler/typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698