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

Unified Diff: runtime/vm/compiler.cc

Issue 10826116: Revert "Use platform-independent format specifiers when disassembling code objects." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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 | « runtime/platform/globals.h ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/compiler.cc
diff --git a/runtime/vm/compiler.cc b/runtime/vm/compiler.cc
index d0f17129abc0251f3bb6cba29f9702fe6ccb4e56..9ad84d11600824c50cdc6f318f12d117e9d3b0ac 100644
--- a/runtime/vm/compiler.cc
+++ b/runtime/vm/compiler.cc
@@ -312,20 +312,20 @@ static RawError* CompileFunctionHelper(const Function& function,
code.comments());
OS::Print("}\n");
OS::Print("Pointer offsets for function: {\n");
- // Pointer offsets are stored in descending order.
- for (intptr_t i = code.pointer_offsets_length() - 1; i >= 0; i--) {
+ for (intptr_t i = 0; i < code.pointer_offsets_length(); i++) {
const uword addr = code.GetPointerOffsetAt(i) + code.EntryPoint();
Object& obj = Object::Handle();
obj = *reinterpret_cast<RawObject**>(addr);
- OS::Print(" %" PRIdPTR " : 0x%" PRIxPTR " '%s'\n",
+ OS::Print(" %d : 0x%x '%s'\n",
code.GetPointerOffsetAt(i), addr, obj.ToCString());
}
OS::Print("}\n");
OS::Print("PC Descriptors for function '%s' {\n", function_fullname);
- OS::Print("pc\t\tkind\tid\ttry-ix\ttoken-index\n");
+ OS::Print("(pc\t\tkind\tid\ttry-ix\ttoken-index)\n");
const PcDescriptors& descriptors =
PcDescriptors::Handle(code.pc_descriptors());
- OS::Print("%s}\n", descriptors.ToCString());
+ OS::Print("%s", descriptors.ToCString());
+ OS::Print("}\n");
OS::Print("Variable Descriptors for function '%s' {\n",
function_fullname);
const LocalVarDescriptors& var_descriptors =
@@ -337,29 +337,35 @@ static RawError* CompileFunctionHelper(const Function& function,
var_name = var_descriptors.GetName(i);
RawLocalVarDescriptors::VarInfo var_info;
var_descriptors.GetInfo(i, &var_info);
- if (var_info.kind == RawLocalVarDescriptors::kContextChain) {
- OS::Print(" saved CTX reg offset %" PRIdPTR "\n", var_info.index);
- } else {
- if (var_info.kind == RawLocalVarDescriptors::kContextLevel) {
- OS::Print(" context level %" PRIdPTR " scope %d",
- var_info.index, var_info.scope_id);
- } else if (var_info.kind == RawLocalVarDescriptors::kStackVar) {
- OS::Print(" stack var '%s' offset %" PRIdPTR,
- var_name.ToCString(), var_info.index);
- } else {
- ASSERT(var_info.kind == RawLocalVarDescriptors::kContextVar);
- OS::Print(" context var '%s' level %d offset %" PRIdPTR,
- var_name.ToCString(), var_info.scope_id, var_info.index);
- }
- OS::Print(" (valid %" PRIdPTR "-%" PRIdPTR ")\n",
- var_info.begin_pos, var_info.end_pos);
+ if (var_info.kind == RawLocalVarDescriptors::kContextLevel) {
+ OS::Print(" context level %d scope %d (valid %d-%d)\n",
+ var_info.index,
+ var_info.scope_id,
+ var_info.begin_pos,
+ var_info.end_pos);
+ } else if (var_info.kind == RawLocalVarDescriptors::kContextChain) {
+ OS::Print(" saved CTX reg offset %d\n", var_info.index);
+ } else if (var_info.kind == RawLocalVarDescriptors::kStackVar) {
+ OS::Print(" stack var '%s' offset %d (valid %d-%d) \n",
+ var_name.ToCString(),
+ var_info.index,
+ var_info.begin_pos,
+ var_info.end_pos);
+ } else if (var_info.kind == RawLocalVarDescriptors::kContextVar) {
+ OS::Print(" context var '%s' level %d offset %d (valid %d-%d)\n",
+ var_name.ToCString(),
+ var_info.scope_id,
+ var_info.index,
+ var_info.begin_pos,
+ var_info.end_pos);
}
}
OS::Print("}\n");
OS::Print("Exception Handlers for function '%s' {\n", function_fullname);
const ExceptionHandlers& handlers =
ExceptionHandlers::Handle(code.exception_handlers());
- OS::Print("%s}\n", handlers.ToCString());
+ OS::Print("%s", handlers.ToCString());
+ OS::Print("}\n");
}
isolate->set_long_jump_base(base);
return Error::null();
« no previous file with comments | « runtime/platform/globals.h ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698