Index: src/objects-printer.cc |
diff --git a/src/objects-printer.cc b/src/objects-printer.cc |
index 02944df0e4eb4ef68c28ffacbcb830c66c34ccf4..2395ac6940334d80de58628dcf087debfb2d4e4b 100644 |
--- a/src/objects-printer.cc |
+++ b/src/objects-printer.cc |
@@ -524,8 +524,12 @@ 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)) { |
+ if (i <= last_index(INT64, SMALL_SECTION)) { |
+#if V8_TARGET_ARCH_64_BIT |
+ os << "\n [" << i << "]: int64: " << get_int64_entry(i); |
+#else |
os << "\n [" << i << "]: double: " << get_int64_entry_as_double(i); |
+#endif |
} else if (i <= last_index(CODE_PTR, SMALL_SECTION)) { |
os << "\n [" << i << "]: code target pointer: " |
<< reinterpret_cast<void*>(get_code_ptr_entry(i)); |
@@ -540,8 +544,12 @@ 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)) { |
+ if (i <= last_index(INT64, EXTENDED_SECTION)) { |
+#if V8_TARGET_ARCH_64_BIT |
+ os << "\n [" << i << "]: int64: " << get_int64_entry(i); |
+#else |
os << "\n [" << i << "]: double: " << get_int64_entry_as_double(i); |
+#endif |
} else if (i <= last_index(CODE_PTR, EXTENDED_SECTION)) { |
os << "\n [" << i << "]: code target pointer: " |
<< reinterpret_cast<void*>(get_code_ptr_entry(i)); |