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

Side by Side Diff: runtime/vm/disassembler_ia32.cc

Issue 1192103004: VM: New calling convention for generated code. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: ia32 port, addressed comments Created 5 years, 3 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 unified diff | Download patch
OLDNEW
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
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()) {
477 return obj.ToCString(); 478 return obj.ToCString();
478 } 479 }
479 480
480 const Class& clazz = Class::Handle(obj.clazz()); 481 const Class& clazz = Class::Handle(obj.clazz());
481 const char* full_class_name = clazz.ToCString(); 482 const char* full_class_name = clazz.ToCString();
482 const char* format = "instance of %s"; 483 const char* format = "instance of %s";
483 intptr_t len = OS::SNPrint(NULL, 0, format, full_class_name) + 1; 484 intptr_t len = OS::SNPrint(NULL, 0, format, full_class_name) + 1;
484 char* chars = Thread::Current()->zone()->Alloc<char>(len); 485 char* chars = Thread::Current()->zone()->Alloc<char>(len);
485 OS::SNPrint(chars, len, format, full_class_name); 486 OS::SNPrint(chars, len, format, full_class_name);
486 return chars; 487 return chars;
(...skipping 1382 matching lines...) Expand 10 before | Expand all | Expand 10 after
1869 } 1870 }
1870 hex_buffer[hex_index] = '\0'; 1871 hex_buffer[hex_index] = '\0';
1871 if (out_instr_len) { 1872 if (out_instr_len) {
1872 *out_instr_len = instruction_length; 1873 *out_instr_len = instruction_length;
1873 } 1874 }
1874 } 1875 }
1875 1876
1876 } // namespace dart 1877 } // namespace dart
1877 1878
1878 #endif // defined TARGET_ARCH_IA32 1879 #endif // defined TARGET_ARCH_IA32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698