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

Unified Diff: src/compiler/typer.h

Issue 763963002: [turbofan] Add checked load/store operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Reapply fix. Created 6 years 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/compiler/simplified-operator-reducer.cc ('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 bfa4bd85d926b15664c2d09f3017838d986005c1..2cd95970fcf9b3cde4f7ceafad702c6522ab701d 100644
--- a/src/compiler/typer.h
+++ b/src/compiler/typer.h
@@ -52,6 +52,10 @@ class Typer {
Type* falsish;
Type* integer;
Type* weakint;
+ Type* signed8_;
+ Type* unsigned8_;
+ Type* signed16_;
+ Type* unsigned16_;
Type* number_fun0_;
Type* number_fun1_;
Type* number_fun2_;
@@ -73,8 +77,9 @@ class Typer {
ZoneVector<Handle<Object> > weaken_max_limits_;
DISALLOW_COPY_AND_ASSIGN(Typer);
};
-}
-}
-} // namespace v8::internal::compiler
+
+} // namespace compiler
+} // namespace internal
+} // namespace v8
#endif // V8_COMPILER_TYPER_H_
« no previous file with comments | « src/compiler/simplified-operator-reducer.cc ('k') | src/compiler/typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698