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

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

Issue 2227463003: [WIP] NumberToString operator in TF. Base URL: https://chromium.googlesource.com/v8/v8.git@TurboFan_BuiltinTypingRules
Patch Set: Created 4 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 | « src/compiler/opcodes.h ('k') | src/compiler/operation-typer.cc » ('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 dcfe0c45eadeb229f087b83bf70a21ad3528d3d3..b3e4e792d1ae25b58e780ea3a0bb7b558b1843ae 100644
--- a/src/compiler/operation-typer.h
+++ b/src/compiler/operation-typer.h
@@ -11,6 +11,8 @@
namespace v8 {
namespace internal {
+// Forward declarations.
+class Factory;
class Isolate;
class RangeType;
class Type;
@@ -19,6 +21,7 @@ class Zone;
namespace compiler {
+// Forward declarations.
class Operator;
class OperationTyper {
@@ -71,8 +74,11 @@ class OperationTyper {
double rhs_max);
Type* MultiplyRanger(Type* lhs, Type* rhs);
+ Factory* factory() const;
+ Isolate* isolate() const { return isolate_; }
Zone* zone() const { return zone_; }
+ Isolate* const isolate_;
Zone* const zone_;
TypeCache const& cache_;
« no previous file with comments | « src/compiler/opcodes.h ('k') | src/compiler/operation-typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698