OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #include "vm/disassembler.h" | 5 #include "vm/disassembler.h" |
6 | 6 |
7 #include "vm/globals.h" // Needed here to get TARGET_ARCH_IA32. | 7 #include "vm/globals.h" // Needed here to get TARGET_ARCH_IA32. |
8 #if defined(TARGET_ARCH_X64) | 8 #if defined(TARGET_ARCH_X64) |
9 #include "platform/utils.h" | 9 #include "platform/utils.h" |
10 #include "vm/allocation.h" | 10 #include "vm/allocation.h" |
(...skipping 780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
791 obj.IsFunction() || | 791 obj.IsFunction() || |
792 obj.IsICData() || | 792 obj.IsICData() || |
793 obj.IsField()) { | 793 obj.IsField()) { |
794 return obj.ToCString(); | 794 return obj.ToCString(); |
795 } | 795 } |
796 | 796 |
797 const Class& clazz = Class::Handle(obj.clazz()); | 797 const Class& clazz = Class::Handle(obj.clazz()); |
798 const char* full_class_name = clazz.ToCString(); | 798 const char* full_class_name = clazz.ToCString(); |
799 const char* format = "instance of %s"; | 799 const char* format = "instance of %s"; |
800 intptr_t len = OS::SNPrint(NULL, 0, format, full_class_name) + 1; | 800 intptr_t len = OS::SNPrint(NULL, 0, format, full_class_name) + 1; |
801 char* chars = Isolate::Current()->current_zone()->Alloc<char>(len); | 801 char* chars = Thread::Current()->zone()->Alloc<char>(len); |
802 OS::SNPrint(chars, len, format, full_class_name); | 802 OS::SNPrint(chars, len, format, full_class_name); |
803 return chars; | 803 return chars; |
804 } | 804 } |
805 | 805 |
806 | 806 |
807 void DisassemblerX64::AppendAddressToBuffer(uint8_t* addr_byte_ptr) { | 807 void DisassemblerX64::AppendAddressToBuffer(uint8_t* addr_byte_ptr) { |
808 uword addr = reinterpret_cast<uword>(addr_byte_ptr); | 808 uword addr = reinterpret_cast<uword>(addr_byte_ptr); |
809 AppendToBuffer("%#" Px "", addr); | 809 AppendToBuffer("%#" Px "", addr); |
810 // Try to print as heap object or stub name | 810 // Try to print as heap object or stub name |
811 if (((addr & kSmiTagMask) == kHeapObjectTag) && | 811 if (((addr & kSmiTagMask) == kHeapObjectTag) && |
(...skipping 1140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1952 } | 1952 } |
1953 hex_buffer[hex_index] = '\0'; | 1953 hex_buffer[hex_index] = '\0'; |
1954 if (out_instr_len) { | 1954 if (out_instr_len) { |
1955 *out_instr_len = instruction_length; | 1955 *out_instr_len = instruction_length; |
1956 } | 1956 } |
1957 } | 1957 } |
1958 | 1958 |
1959 } // namespace dart | 1959 } // namespace dart |
1960 | 1960 |
1961 #endif // defined TARGET_ARCH_X64 | 1961 #endif // defined TARGET_ARCH_X64 |
OLD | NEW |