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

Unified Diff: src/objects-printer.cc

Issue 422063005: Contribution of PowerPC port. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: re-upload - catch up to 8/19 level Created 6 years, 4 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
Index: src/objects-printer.cc
diff --git a/src/objects-printer.cc b/src/objects-printer.cc
index 8fbe2182c51ea5b26bef050d3dca8d622ab10ae2..4ca280056fb3ed1c9de914df70d46dd9834fc6b4 100644
--- a/src/objects-printer.cc
+++ b/src/objects-printer.cc
@@ -527,8 +527,9 @@ void ConstantPoolArray::ConstantPoolArrayPrint(OStream& os) { // NOLINT
HeapObject::PrintHeader(os, "ConstantPoolArray");
os << " - length: " << length();
for (int i = 0; i <= last_index(INT32, SMALL_SECTION); i++) {
- if (i < last_index(INT64, SMALL_SECTION)) {
- os << "\n [" << i << "]: double: " << get_int64_entry_as_double(i);
+ if (i <= last_index(INT64, SMALL_SECTION)) {
+ os << "\n [" << i << "]: int64: " << get_int64_entry(i)
+ << " (as double: " << get_int64_entry_as_double(i) << ")";
} else if (i <= last_index(CODE_PTR, SMALL_SECTION)) {
os << "\n [" << i << "]: code target pointer: "
<< reinterpret_cast<void*>(get_code_ptr_entry(i));
@@ -543,8 +544,9 @@ void ConstantPoolArray::ConstantPoolArrayPrint(OStream& os) { // NOLINT
os << "\n Extended section:";
for (int i = first_extended_section_index();
i <= last_index(INT32, EXTENDED_SECTION); i++) {
- if (i < last_index(INT64, EXTENDED_SECTION)) {
- os << "\n [" << i << "]: double: " << get_int64_entry_as_double(i);
+ if (i <= last_index(INT64, EXTENDED_SECTION)) {
+ os << "\n [" << i << "]: int64: " << get_int64_entry(i)
+ << " (as double: " << get_int64_entry_as_double(i) << ")";
} else if (i <= last_index(CODE_PTR, EXTENDED_SECTION)) {
os << "\n [" << i << "]: code target pointer: "
<< reinterpret_cast<void*>(get_code_ptr_entry(i));
« src/hydrogen-bch.cc ('K') | « src/objects-inl.h ('k') | src/ppc/assembler-ppc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698