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

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

Issue 181183004: VM: Improve receiver class check in polymorphic inlining. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « runtime/vm/assembler_x64_test.cc ('k') | runtime/vm/flow_graph_inliner.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 case 0x16: return "movlhps"; 232 case 0x16: return "movlhps";
233 case 0xA2: return "cpuid"; 233 case 0xA2: return "cpuid";
234 case 0x31: return "rdtsc"; 234 case 0x31: return "rdtsc";
235 case 0xBE: return "movsx_b"; 235 case 0xBE: return "movsx_b";
236 case 0xBF: return "movsx_w"; 236 case 0xBF: return "movsx_w";
237 case 0xB6: return "movzx_b"; 237 case 0xB6: return "movzx_b";
238 case 0xB7: return "movzx_w"; 238 case 0xB7: return "movzx_w";
239 case 0xAF: return "imul"; 239 case 0xAF: return "imul";
240 case 0xA5: return "shld"; 240 case 0xA5: return "shld";
241 case 0xAD: return "shrd"; 241 case 0xAD: return "shrd";
242 case 0xA3: return "bt";
242 case 0xAB: return "bts"; 243 case 0xAB: return "bts";
243 case 0xBD: return "bsr"; 244 case 0xBD: return "bsr";
244 case 0xB1: return "cmpxchg"; 245 case 0xB1: return "cmpxchg";
245 case 0x50: return "movmskps"; 246 case 0x50: return "movmskps";
246 case 0x51: return "sqrtps"; 247 case 0x51: return "sqrtps";
247 case 0x52: return "rqstps"; 248 case 0x52: return "rqstps";
248 case 0x53: return "rcpps"; 249 case 0x53: return "rcpps";
249 case 0x54: return "andps"; 250 case 0x54: return "andps";
250 case 0x56: return "orps"; 251 case 0x56: return "orps";
251 case 0x57: return "xorps"; 252 case 0x57: return "xorps";
(...skipping 1150 matching lines...) Expand 10 before | Expand all | Expand 10 after
1402 *(data+3) == 0x00 && 1403 *(data+3) == 0x00 &&
1403 *(data+3) == 0x00 && 1404 *(data+3) == 0x00 &&
1404 *(data+4) == 0x00) { 1405 *(data+4) == 0x00) {
1405 Print("nop"); 1406 Print("nop");
1406 data += 8; 1407 data += 8;
1407 } else { 1408 } else {
1408 UNIMPLEMENTED(); 1409 UNIMPLEMENTED();
1409 } 1410 }
1410 } else { 1411 } else {
1411 data += 2; 1412 data += 2;
1412 if (f0byte == 0xAB || f0byte == 0xA5 || f0byte == 0xAD) { 1413 if (f0byte == 0xAB ||
1413 // shrd, shld, bts 1414 f0byte == 0xA5 ||
1415 f0byte == 0xAD ||
1416 f0byte == 0xA3) {
1417 // shrd, shld, bts, bt
1414 Print(f0mnem); 1418 Print(f0mnem);
1415 int mod, regop, rm; 1419 int mod, regop, rm;
1416 GetModRm(*data, &mod, &regop, &rm); 1420 GetModRm(*data, &mod, &regop, &rm);
1417 Print(" "); 1421 Print(" ");
1418 data += PrintRightOperand(data); 1422 data += PrintRightOperand(data);
1419 if (f0byte == 0xAB) { 1423 if (f0byte == 0xAB || f0byte == 0xA3) {
1420 Print(","); 1424 Print(",");
1421 PrintCPURegister(regop); 1425 PrintCPURegister(regop);
1422 } else { 1426 } else {
1423 Print(","); 1427 Print(",");
1424 PrintCPURegister(regop); 1428 PrintCPURegister(regop);
1425 Print(",cl"); 1429 Print(",cl");
1426 } 1430 }
1427 } else if ((f0byte == 0x10) || (f0byte == 0x11) || 1431 } else if ((f0byte == 0x10) || (f0byte == 0x11) ||
1428 IsTwoXmmRegInstruction(f0byte)) { 1432 IsTwoXmmRegInstruction(f0byte)) {
1429 data = SSEInstruction(0x0F, f0byte, data); 1433 data = SSEInstruction(0x0F, f0byte, data);
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
1807 default: 1811 default:
1808 OS::Print("Unknown case %#x\n", *data); 1812 OS::Print("Unknown case %#x\n", *data);
1809 UNIMPLEMENTED(); 1813 UNIMPLEMENTED();
1810 } 1814 }
1811 } 1815 }
1812 1816
1813 int instr_len = data - reinterpret_cast<uint8_t*>(pc); 1817 int instr_len = data - reinterpret_cast<uint8_t*>(pc);
1814 ASSERT(instr_len > 0); // Ensure progress. 1818 ASSERT(instr_len > 0); // Ensure progress.
1815 1819
1816 return instr_len; 1820 return instr_len;
1817 } 1821 } // NOLINT
Cutch 2014/07/09 19:22:53 Did you add this to avoid the function length lint
Florian Schneider 2014/07/10 09:00:59 Yes, I don't know if the lint warning makes sense
1818 1822
1819 1823
1820 void Disassembler::DecodeInstruction(char* hex_buffer, intptr_t hex_size, 1824 void Disassembler::DecodeInstruction(char* hex_buffer, intptr_t hex_size,
1821 char* human_buffer, intptr_t human_size, 1825 char* human_buffer, intptr_t human_size,
1822 int* out_instr_len, uword pc) { 1826 int* out_instr_len, uword pc) {
1823 ASSERT(hex_size > 0); 1827 ASSERT(hex_size > 0);
1824 ASSERT(human_size > 0); 1828 ASSERT(human_size > 0);
1825 X86Decoder decoder(human_buffer, human_size); 1829 X86Decoder decoder(human_buffer, human_size);
1826 int instruction_length = decoder.InstructionDecode(pc); 1830 int instruction_length = decoder.InstructionDecode(pc);
1827 uint8_t* pc_ptr = reinterpret_cast<uint8_t*>(pc); 1831 uint8_t* pc_ptr = reinterpret_cast<uint8_t*>(pc);
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
1870 pc); 1874 pc);
1871 pc += instruction_length; 1875 pc += instruction_length;
1872 } 1876 }
1873 1877
1874 return; 1878 return;
1875 } 1879 }
1876 1880
1877 } // namespace dart 1881 } // namespace dart
1878 1882
1879 #endif // defined TARGET_ARCH_IA32 1883 #endif // defined TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « runtime/vm/assembler_x64_test.cc ('k') | runtime/vm/flow_graph_inliner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698