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

Unified Diff: vm/code_patcher_x64.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
« no previous file with comments | « vm/code_patcher_ia32_test.cc ('k') | vm/compiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/code_patcher_x64.cc
===================================================================
--- vm/code_patcher_x64.cc (revision 700)
+++ vm/code_patcher_x64.cc (working copy)
@@ -30,36 +30,33 @@
}
-void CodePatcher::PatchInstanceCallAt(uword return_address, uword new_target) {
+void CodePatcher::PatchEntry(const Code& code) {
UNIMPLEMENTED();
}
-void CodePatcher::InsertCall(uword at_addr, const ExternalLabel* label) {
+void CodePatcher::RestoreEntry(const Code& code) {
UNIMPLEMENTED();
}
-void CodePatcher::InsertJump(uword at_addr, const ExternalLabel* label) {
+bool CodePatcher::CodeIsPatchable(const Code& code) {
UNIMPLEMENTED();
+ return false;
}
-void CodePatcher::PatchEntry(const Code& code) {
+RawArray* CodePatcher::GetInstanceCallIcDataAt(uword return_address) {
UNIMPLEMENTED();
+ return NULL;
}
-void CodePatcher::RestoreEntry(const Code& code) {
+void CodePatcher::SetInstanceCallIcDataAt(uword return_address,
+ const Array& ic_data) {
UNIMPLEMENTED();
}
-
-bool CodePatcher::CodeIsPatchable(const Code& code) {
- UNIMPLEMENTED();
- return false;
-}
-
} // namespace dart
#endif // defined TARGET_ARCH_X64
« no previous file with comments | « vm/code_patcher_ia32_test.cc ('k') | vm/compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698