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

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

Issue 2222513002: [turbofan] Insert sigma nodes for loop variable backedge. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
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
Index: src/compiler/operation-typer.h
diff --git a/src/compiler/operation-typer.h b/src/compiler/operation-typer.h
index b37360a8c4e987d891affe32dae11e3332baab62..52fa7cf80b32667149cdd47a3de35e8adccbcf6c 100644
--- a/src/compiler/operation-typer.h
+++ b/src/compiler/operation-typer.h
@@ -19,6 +19,8 @@ class Zone;
namespace compiler {
+class Operator;
+
class OperationTyper {
public:
OperationTyper(Isolate* isolate, Zone* zone);
@@ -40,6 +42,8 @@ class OperationTyper {
Type* NumberAbs(Type* type);
+ Type* TypeSigma(const Operator* sigma_op, Type* input);
+
enum ComparisonOutcomeFlags {
kComparisonTrue = 1,
kComparisonFalse = 2,

Powered by Google App Engine
This is Rietveld 408576698