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

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

Issue 928213003: Model exceptional edges from call nodes in TurboFan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comments by Benedikt Meurer. Created 5 years, 10 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/common-operator.h
diff --git a/src/compiler/common-operator.h b/src/compiler/common-operator.h
index 55b1c8e590c0e27cad221d94735c2d4c77cfcff2..f69399e58d744511218e15c617e0ac53ec5fccab 100644
--- a/src/compiler/common-operator.h
+++ b/src/compiler/common-operator.h
@@ -175,6 +175,8 @@ class CommonOperatorBuilder FINAL : public ZoneObject {
const Operator* Branch(BranchHint = BranchHint::kNone);
const Operator* IfTrue();
const Operator* IfFalse();
+ const Operator* IfException();
+ const Operator* IfSuccess();
titzer 2015/02/17 10:32:52 IfSuccess first? here and elsewhere.
Michael Starzinger 2015/02/17 10:58:29 Done. I think I got them all.
const Operator* Switch(size_t control_output_count);
const Operator* Case(size_t index);
const Operator* Throw();

Powered by Google App Engine
This is Rietveld 408576698