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

Unified Diff: runtime/vm/assembler_x64.h

Issue 339183010: Specialize breakpoint stubs by set of live registers of the stubs they are intercepting. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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: runtime/vm/assembler_x64.h
diff --git a/runtime/vm/assembler_x64.h b/runtime/vm/assembler_x64.h
index 2fdc883b9970df5bb81afed86065866a2af2c932..dc3ee8912fca2f874f6cd088baa93f5e5f183016 100644
--- a/runtime/vm/assembler_x64.h
+++ b/runtime/vm/assembler_x64.h
@@ -785,7 +785,9 @@ class Assembler : public ValueObject {
}
// Index of constant pool entries pointing to debugger stubs.
- static const int kBreakpointRuntimeCPIndex = 5;
+ static const int kICCallBreakpointCPIndex = 5;
+ static const int kClosureCallBreakpointCPIndex = 6;
+ static const int kRuntimeCallBreakpointCPIndex = 7;
void LoadPoolPointer(Register pp);

Powered by Google App Engine
This is Rietveld 408576698