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

Unified Diff: vm/stub_code.cc

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
Index: vm/stub_code.cc
===================================================================
--- vm/stub_code.cc (revision 700)
+++ vm/stub_code.cc (working copy)
@@ -101,15 +101,6 @@
}
-bool StubCode::InCallInstanceFunctionStubCode(uword pc) {
- if ((pc >= CallInstanceFunctionEntryPoint()) &&
- (pc < (CallInstanceFunctionEntryPoint() + CallInstanceFunctionSize()))) {
- return true;
- }
- return false;
-}
-
-
bool StubCode::InStubCallToRuntimeStubCode(uword pc) {
if ((pc >= StubCallToRuntimeEntryPoint()) &&
(pc < (StubCallToRuntimeEntryPoint() + StubCallToRuntimeSize()))) {

Powered by Google App Engine
This is Rietveld 408576698