OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // A Disassembler object is used to disassemble a block of code instruction by | 5 // A Disassembler object is used to disassemble a block of code instruction by |
6 // instruction. The default implementation of the NameConverter object can be | 6 // instruction. The default implementation of the NameConverter object can be |
7 // overriden to modify register names or to do symbol lookup on addresses. | 7 // overriden to modify register names or to do symbol lookup on addresses. |
8 // | 8 // |
9 // The example below will disassemble a block of code and print it to stdout. | 9 // The example below will disassemble a block of code and print it to stdout. |
10 // | 10 // |
(...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
727 break; | 727 break; |
728 case LTGR: | 728 case LTGR: |
729 Format(instr, "ltgr\t'r5,'r6"); | 729 Format(instr, "ltgr\t'r5,'r6"); |
730 break; | 730 break; |
731 case LTDBR: | 731 case LTDBR: |
732 Format(instr, "ltdbr\t'f5,'f6"); | 732 Format(instr, "ltdbr\t'f5,'f6"); |
733 break; | 733 break; |
734 case LTEBR: | 734 case LTEBR: |
735 Format(instr, "ltebr\t'f5,'f6"); | 735 Format(instr, "ltebr\t'f5,'f6"); |
736 break; | 736 break; |
| 737 case LRVR: |
| 738 Format(instr, "lrvr\t'r5,'r6"); |
| 739 break; |
| 740 case LRVGR: |
| 741 Format(instr, "lrvgr\t'r5,'r6"); |
| 742 break; |
737 case LGR: | 743 case LGR: |
738 Format(instr, "lgr\t'r5,'r6"); | 744 Format(instr, "lgr\t'r5,'r6"); |
739 break; | 745 break; |
740 case LGDR: | 746 case LGDR: |
741 Format(instr, "lgdr\t'r5,'f6"); | 747 Format(instr, "lgdr\t'r5,'f6"); |
742 break; | 748 break; |
743 case LGFR: | 749 case LGFR: |
744 Format(instr, "lgfr\t'r5,'r6"); | 750 Format(instr, "lgfr\t'r5,'r6"); |
745 break; | 751 break; |
746 case LTGFR: | 752 case LTGFR: |
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1178 break; | 1184 break; |
1179 case XG: | 1185 case XG: |
1180 Format(instr, "xg\t'r1,'d2('r2d,'r3)"); | 1186 Format(instr, "xg\t'r1,'d2('r2d,'r3)"); |
1181 break; | 1187 break; |
1182 case CG: | 1188 case CG: |
1183 Format(instr, "cg\t'r1,'d2('r2d,'r3)"); | 1189 Format(instr, "cg\t'r1,'d2('r2d,'r3)"); |
1184 break; | 1190 break; |
1185 case LB: | 1191 case LB: |
1186 Format(instr, "lb\t'r1,'d2('r2d,'r3)"); | 1192 Format(instr, "lb\t'r1,'d2('r2d,'r3)"); |
1187 break; | 1193 break; |
| 1194 case LRVH: |
| 1195 Format(instr, "lrvh\t'r1,'d2('r2d,'r3)"); |
| 1196 break; |
| 1197 case LRV: |
| 1198 Format(instr, "lrv\t'r1,'d2('r2d,'r3)"); |
| 1199 break; |
| 1200 case LRVG: |
| 1201 Format(instr, "lrvg\t'r1,'d2('r2d,'r3)"); |
| 1202 break; |
1188 case LG: | 1203 case LG: |
1189 Format(instr, "lg\t'r1,'d2('r2d,'r3)"); | 1204 Format(instr, "lg\t'r1,'d2('r2d,'r3)"); |
1190 break; | 1205 break; |
1191 case LGF: | 1206 case LGF: |
1192 Format(instr, "lgf\t'r1,'d2('r2d,'r3)"); | 1207 Format(instr, "lgf\t'r1,'d2('r2d,'r3)"); |
1193 break; | 1208 break; |
1194 case LLGF: | 1209 case LLGF: |
1195 Format(instr, "llgf\t'r1,'d2('r2d,'r3)"); | 1210 Format(instr, "llgf\t'r1,'d2('r2d,'r3)"); |
1196 break; | 1211 break; |
1197 case LY: | 1212 case LY: |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1250 break; | 1265 break; |
1251 case CLG: | 1266 case CLG: |
1252 Format(instr, "clg\t'r1,'d2('r2d,'r3)"); | 1267 Format(instr, "clg\t'r1,'d2('r2d,'r3)"); |
1253 break; | 1268 break; |
1254 case BCTG: | 1269 case BCTG: |
1255 Format(instr, "bctg\t'r1,'d2('r2d,'r3)"); | 1270 Format(instr, "bctg\t'r1,'d2('r2d,'r3)"); |
1256 break; | 1271 break; |
1257 case STY: | 1272 case STY: |
1258 Format(instr, "sty\t'r1,'d2('r2d,'r3)"); | 1273 Format(instr, "sty\t'r1,'d2('r2d,'r3)"); |
1259 break; | 1274 break; |
| 1275 case STRVH: |
| 1276 Format(instr, "strvh\t'r1,'d2('r2d,'r3)"); |
| 1277 break; |
| 1278 case STRV: |
| 1279 Format(instr, "strv\t'r1,'d2('r2d,'r3)"); |
| 1280 break; |
| 1281 case STRVG: |
| 1282 Format(instr, "strvg\t'r1,'d2('r2d,'r3)"); |
| 1283 break; |
1260 case STG: | 1284 case STG: |
1261 Format(instr, "stg\t'r1,'d2('r2d,'r3)"); | 1285 Format(instr, "stg\t'r1,'d2('r2d,'r3)"); |
1262 break; | 1286 break; |
1263 case ICY: | 1287 case ICY: |
1264 Format(instr, "icy\t'r1,'d2('r2d,'r3)"); | 1288 Format(instr, "icy\t'r1,'d2('r2d,'r3)"); |
1265 break; | 1289 break; |
1266 case MVC: | 1290 case MVC: |
1267 Format(instr, "mvc\t'd3('i8,'r3),'d4('r7)"); | 1291 Format(instr, "mvc\t'd3('i8,'r3),'d4('r7)"); |
1268 break; | 1292 break; |
1269 case MVHI: | 1293 case MVHI: |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1412 byte* prev_pc = pc; | 1436 byte* prev_pc = pc; |
1413 pc += d.InstructionDecode(buffer, pc); | 1437 pc += d.InstructionDecode(buffer, pc); |
1414 v8::internal::PrintF(f, "%p %08x %s\n", static_cast<void*>(prev_pc), | 1438 v8::internal::PrintF(f, "%p %08x %s\n", static_cast<void*>(prev_pc), |
1415 *reinterpret_cast<int32_t*>(prev_pc), buffer.start()); | 1439 *reinterpret_cast<int32_t*>(prev_pc), buffer.start()); |
1416 } | 1440 } |
1417 } | 1441 } |
1418 | 1442 |
1419 } // namespace disasm | 1443 } // namespace disasm |
1420 | 1444 |
1421 #endif // V8_TARGET_ARCH_S390 | 1445 #endif // V8_TARGET_ARCH_S390 |
OLD | NEW |