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

Unified Diff: runtime/vm/disassembler.h

Issue 790213004: Add inlining ranges/intervals to code objects so that we can map a pc to the inlined stack. The map… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years 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: runtime/vm/disassembler.h
===================================================================
--- runtime/vm/disassembler.h (revision 42443)
+++ runtime/vm/disassembler.h (working copy)
@@ -86,19 +86,19 @@
static void Disassemble(uword start,
uword end,
DisassemblyFormatter* formatter,
- const Code::Comments& comments);
+ const Code& code);
static void Disassemble(uword start,
uword end,
DisassemblyFormatter* formatter) {
- Disassemble(start, end, formatter, Code::Comments::New(0));
+ Disassemble(start, end, formatter, Code::Handle());
}
static void Disassemble(uword start,
uword end,
- const Code::Comments& comments) {
+ const Code& code) {
DisassembleToStdout stdout_formatter;
- Disassemble(start, end, &stdout_formatter, comments);
+ Disassemble(start, end, &stdout_formatter, code);
}
static void Disassemble(uword start, uword end) {

Powered by Google App Engine
This is Rietveld 408576698