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_IA32) | 8 #if defined(TARGET_ARCH_IA32) |
9 #include "platform/utils.h" | 9 #include "platform/utils.h" |
10 #include "vm/allocation.h" | 10 #include "vm/allocation.h" |
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
466 static const char* ObjectToCStringNoGC(const Object& obj) { | 466 static const char* ObjectToCStringNoGC(const Object& obj) { |
467 if (obj.IsSmi() || | 467 if (obj.IsSmi() || |
468 obj.IsMint() || | 468 obj.IsMint() || |
469 obj.IsDouble() || | 469 obj.IsDouble() || |
470 obj.IsString() || | 470 obj.IsString() || |
471 obj.IsNull() || | 471 obj.IsNull() || |
472 obj.IsBool() || | 472 obj.IsBool() || |
473 obj.IsClass() || | 473 obj.IsClass() || |
474 obj.IsFunction() || | 474 obj.IsFunction() || |
475 obj.IsICData() || | 475 obj.IsICData() || |
476 obj.IsField() || | 476 obj.IsField()) { |
477 obj.IsCode()) { | |
478 return obj.ToCString(); | 477 return obj.ToCString(); |
479 } | 478 } |
480 | 479 |
481 const Class& clazz = Class::Handle(obj.clazz()); | 480 const Class& clazz = Class::Handle(obj.clazz()); |
482 const char* full_class_name = clazz.ToCString(); | 481 const char* full_class_name = clazz.ToCString(); |
483 return OS::SCreate(Thread::Current()->zone(), | 482 return OS::SCreate(Thread::Current()->zone(), |
484 "instance of %s", full_class_name); | 483 "instance of %s", full_class_name); |
485 } | 484 } |
486 | 485 |
487 | 486 |
(...skipping 1379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1867 } | 1866 } |
1868 hex_buffer[hex_index] = '\0'; | 1867 hex_buffer[hex_index] = '\0'; |
1869 if (out_instr_len) { | 1868 if (out_instr_len) { |
1870 *out_instr_len = instruction_length; | 1869 *out_instr_len = instruction_length; |
1871 } | 1870 } |
1872 } | 1871 } |
1873 | 1872 |
1874 } // namespace dart | 1873 } // namespace dart |
1875 | 1874 |
1876 #endif // defined TARGET_ARCH_IA32 | 1875 #endif // defined TARGET_ARCH_IA32 |
OLD | NEW |