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

Unified Diff: runtime/vm/disassembler.h

Issue 8758005: Disassembler for x64. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 9 years, 1 month 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 | « no previous file | runtime/vm/disassembler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/disassembler.h
===================================================================
--- runtime/vm/disassembler.h (revision 1950)
+++ runtime/vm/disassembler.h (working copy)
@@ -27,6 +27,9 @@
char* human_buffer,
intptr_t human_size,
uword pc) = 0;
+
+ // Print a formatted message.
+ virtual void Print(const char* format, ...) = 0;
Ivan Posva 2011/11/30 22:42:12 Can you add a TODO to remove this once we have the
regis 2011/11/30 23:11:52 Done.
};
@@ -43,6 +46,8 @@
intptr_t human_size,
uword pc);
+ virtual void Print(const char* format, ...);
+
private:
DISALLOW_ALLOCATION()
DISALLOW_COPY_AND_ASSIGN(DisassembleToStdout);
« no previous file with comments | « no previous file | runtime/vm/disassembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698