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

Unified Diff: vm/code_patcher.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/code_generator_ia32.cc ('k') | vm/code_patcher_arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/code_patcher.h
===================================================================
--- vm/code_patcher.h (revision 700)
+++ vm/code_patcher.h (working copy)
@@ -25,12 +25,6 @@
// Patch static call to the new target.
static void PatchStaticCallAt(uword addr, uword new_target_address);
- // Overwrites code at 'at_addr' with a call to 'label'.
- static void InsertCall(uword at_addr, const ExternalLabel* label);
-
- // Overwrites code at 'at_addr' with a jump to 'label'.
- static void InsertJump(uword at_addr, const ExternalLabel* label);
-
// Patch entry point with a jump as specified in the code's patch region.
static void PatchEntry(const Code& code);
@@ -46,9 +40,6 @@
Function* function,
uword* target);
- // Patch instance call to the new target.
- static void PatchInstanceCallAt(uword addr, uword new_target_address);
-
// Get instance call information.
static void GetInstanceCallAt(uword return_address,
String* function_name,
« no previous file with comments | « vm/code_generator_ia32.cc ('k') | vm/code_patcher_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698