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

Unified Diff: src/compiler/common-operator.h

Issue 1123213002: [turbofan] Connect non-terminating loops via Terminate. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 7 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/common-operator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/common-operator.h
diff --git a/src/compiler/common-operator.h b/src/compiler/common-operator.h
index bad44f51acea9b8451862d108966cc63386553ed..f5d85b4d492d3f9d4d105c402c59399b7913396a 100644
--- a/src/compiler/common-operator.h
+++ b/src/compiler/common-operator.h
@@ -183,11 +183,6 @@ class CommonOperatorBuilder final : public ZoneObject {
public:
explicit CommonOperatorBuilder(Zone* zone);
- // Special operator used only in Branches to mark them as always taken, but
- // still unfoldable. This is required to properly connect non terminating
- // loops to end (in both the sea of nodes and the CFG).
- const Operator* Always();
-
const Operator* Dead();
const Operator* End();
const Operator* Branch(BranchHint = BranchHint::kNone);
@@ -201,6 +196,7 @@ class CommonOperatorBuilder final : public ZoneObject {
const Operator* Throw();
const Operator* Deoptimize();
const Operator* Return();
+ const Operator* Terminate();
const Operator* Start(int num_formal_parameters);
const Operator* Loop(int control_input_count);
« no previous file with comments | « no previous file | src/compiler/common-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698