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

Unified Diff: runtime/vm/stub_code.cc

Issue 360373003: Enable top exit frame profiler mode by default + Windows fixes (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
« no previous file with comments | « runtime/vm/stack_frame.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/stub_code.cc
diff --git a/runtime/vm/stub_code.cc b/runtime/vm/stub_code.cc
index aef2062f697210c203075dd66126d2269b21957a..14b19bc3a11ca9d12c5b377b54831e9a6e056027 100644
--- a/runtime/vm/stub_code.cc
+++ b/runtime/vm/stub_code.cc
@@ -96,8 +96,9 @@ bool StubCode::InInvocationStub(uword pc) {
bool StubCode::InInvocationStubForIsolate(Isolate* isolate, uword pc) {
- uword entry = isolate->stub_code()->InvokeDartCodeEntryPoint();
- uword size = isolate->stub_code()->InvokeDartCodeSize();
+ StubEntry* invoke_dart_entry = isolate->stub_code()->InvokeDartCode_entry_;
+ uword entry = invoke_dart_entry->EntryPoint();
+ uword size = invoke_dart_entry->Size();
return (pc >= entry) && (pc < (entry + size));
}
« no previous file with comments | « runtime/vm/stack_frame.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698