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

Unified Diff: vm/stub_code.h

Issue 8379013: Implement new inline cache. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: '' Created 9 years, 2 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 | « vm/raw_object.h ('k') | vm/stub_code.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/stub_code.h
===================================================================
--- vm/stub_code.h (revision 700)
+++ vm/stub_code.h (working copy)
@@ -26,7 +26,6 @@
V(AllocateArray) \
V(CallNoSuchMethodFunction) \
V(MegamorphicLookup) \
- V(CallInstanceFunction) \
V(CallStaticFunction) \
V(CallClosureFunction) \
V(StackOverflow) \
@@ -41,6 +40,7 @@
#define STUB_CODE_LIST(V) \
V(InvokeDartCode) \
V(AllocateContext) \
+ V(InlineCache) \
// class StubEntry is used to describe stub methods generated in dart to
@@ -72,8 +72,8 @@
public:
StubCode()
:
-#define STUB_CODE_INITIALIZER(name) \
- name##_entry_(NULL),
+#define STUB_CODE_INITIALIZER(name) \
+ name##_entry_(NULL), \
STUB_CODE_LIST(STUB_CODE_INITIALIZER)
dummy_(NULL) {}
~StubCode();
@@ -93,8 +93,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 CallInstanceFunction stub.
- static bool InCallInstanceFunctionStubCode(uword pc);
// Check if specified pc is in StubCallToRuntime stub.
static bool InStubCallToRuntimeStubCode(uword pc);
« no previous file with comments | « vm/raw_object.h ('k') | vm/stub_code.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698