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

Unified Diff: vm/stub_code.h

Issue 10173008: Simplify representation of stack frames. Remove the special types DartFrame/StubFrame and instead u… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 8 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: vm/stub_code.h
===================================================================
--- vm/stub_code.h (revision 6912)
+++ vm/stub_code.h (working copy)
@@ -20,8 +20,7 @@
// List of stubs created in the VM isolate, these stubs are shared by different
// isolates running in this dart process.
#define VM_STUB_CODE_LIST(V) \
- V(DartCallToRuntime) \
- V(StubCallToRuntime) \
+ V(CallToRuntime) \
V(PrintStopMessage) \
V(CallNativeCFunction) \
V(AllocateArray) \
@@ -102,8 +101,6 @@
// Check if specified pc is in the dart invocation stub used for
// transitioning into dart code.
static bool InInvocationStub(uword pc);
- // Check if specified pc is in StubCallToRuntime stub.
- static bool InStubCallToRuntimeStubCode(uword pc);
// Returns NULL if no stub found.
static const char* NameOfStub(uword entry_point);
« vm/stack_frame.cc ('K') | « vm/stack_frame_x64.cc ('k') | vm/stub_code.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698