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

Unified Diff: runtime/vm/debugger.h

Issue 1192103004: VM: New calling convention for generated code. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: ARM working, x64 cleanup Created 5 years, 3 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/debugger.h
diff --git a/runtime/vm/debugger.h b/runtime/vm/debugger.h
index 396e8b247617c4715ae62f179f20a1c5d3813f29..beb87e93839a91260440bd04f3c4e6152cd880eb 100644
--- a/runtime/vm/debugger.h
+++ b/runtime/vm/debugger.h
@@ -178,7 +178,7 @@ class CodeBreakpoint {
void Disable();
bool IsEnabled() const { return is_enabled_; }
- uword OrigStubAddress() const;
+ RawCode* OrigStubAddress() const;
private:
void VisitObjectPointers(ObjectPointerVisitor* visitor);
@@ -202,7 +202,7 @@ class CodeBreakpoint {
CodeBreakpoint* next_;
RawPcDescriptors::Kind breakpoint_kind_;
- uword saved_value_;
+ RawCode* saved_value_;
friend class Debugger;
DISALLOW_COPY_AND_ASSIGN(CodeBreakpoint);
@@ -548,7 +548,7 @@ class Debugger {
void SignalIsolateEvent(DebuggerEvent::EventType type);
static void SignalIsolateInterrupted();
- uword GetPatchedStubAddress(uword breakpoint_address);
+ RawCode* GetPatchedStubAddress(uword breakpoint_address);
void PrintBreakpointsToJSONArray(JSONArray* jsarr) const;
void PrintSettingsToJSONObject(JSONObject* jsobj) const;

Powered by Google App Engine
This is Rietveld 408576698