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

Unified Diff: runtime/vm/thread.h

Issue 2250823002: Partially implement DBC profiler. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: sync Created 4 years, 4 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 | « runtime/vm/simulator_mips.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/thread.h
diff --git a/runtime/vm/thread.h b/runtime/vm/thread.h
index 2e56a8e672b64d1036082c0fc74d0b5ade713320..6805ada1b8ce013bbbc0b634d852f6107bca2a8f 100644
--- a/runtime/vm/thread.h
+++ b/runtime/vm/thread.h
@@ -329,6 +329,9 @@ class Thread : public BaseThread {
uword top_exit_frame_info() const {
return top_exit_frame_info_;
}
+ void set_top_exit_frame_info(uword top_exit_frame_info) {
+ top_exit_frame_info_ = top_exit_frame_info;
+ }
static intptr_t top_exit_frame_info_offset() {
return OFFSET_OF(Thread, top_exit_frame_info_);
}
@@ -727,10 +730,6 @@ LEAF_RUNTIME_ENTRY_LIST(DECLARE_MEMBERS)
zone_ = zone;
}
- void set_top_exit_frame_info(uword top_exit_frame_info) {
- top_exit_frame_info_ = top_exit_frame_info;
- }
-
void set_safepoint_state(uint32_t value) {
safepoint_state_ = value;
}
« no previous file with comments | « runtime/vm/simulator_mips.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698