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/x64/lithium-x64.h

Issue 14997008: Add a HBreak instruction for debugging (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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
Index: src/x64/lithium-x64.h
diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h
index d6c3d9580e72842c9384c5f09103c4efaadd275c..9ad7268f9bef4e2959159bfb03418b18a26df0a9 100644
--- a/src/x64/lithium-x64.h
+++ b/src/x64/lithium-x64.h
@@ -60,6 +60,7 @@ class LCodeGen;
V(BitNotI) \
V(BoundsCheck) \
V(Branch) \
+ V(Break) \
V(CallConstantFunction) \
V(CallFunction) \
V(CallGlobal) \
@@ -1172,6 +1173,12 @@ class LBranch: public LControlInstruction<1, 0> {
};
+class LBreak: public LTemplateInstruction<0, 0, 0> {
+ public:
+ DECLARE_CONCRETE_INSTRUCTION(Break, "break")
+};
+
+
class LCmpMapAndBranch: public LTemplateInstruction<0, 1, 0> {
public:
explicit LCmpMapAndBranch(LOperand* value) {

Powered by Google App Engine
This is Rietveld 408576698