1
2
3
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
90
93
94
95
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
129
130
131
132
133
134
135
136
137
138
139
140
172
185
186
187
188
189
190
191
192
193
194
197
200
203
206
209
212
215
218
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
723
724
738
739
752
753
754
755
756
757
758
759
760
761
764
767
770
773
776
779
781
782
783
784
788
792
796
800
804
808
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
841
842
843
844
845
846
847
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
875
876
877
878
879
880
881
882
883
884
885
886
887
888
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
975
978
981
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1179
1180
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1724
1728
1732
1736
1740
1744
1748
1752
1756
1760
1764
1768
1772
1776
1780
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1994
1995
1996
1997
1998
1999
2000
2001
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2021
2022
2023
2027
2028
2029
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2075
2081
2087
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2270
2274
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2312
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2344
2348
2349
2350
2351
2352
2353
2354
2355
2356
2360
2361
2362
2363
2364
2365
2366
2367
2371
2375
2379
2383
2387
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2452
2456
2460
2464
2468
2472
2476
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2514
2515
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2655
2656
2670
2671
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2835
2838
2841
2844
2847
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2934
2935
2936
2937
2939
2941
2942
2943
2944
2947
2949
2953
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3056
3057
3058
3059
3060
3061
3062
3063
3064
3068
3069
3070
3071
3076
3077
3078
3079
3084
3085
3086
3087
3088
3089
3090
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
/* ... */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "target.h"
#include "arm_disassembler.h"
#include <helper/log.h>
#if HAVE_CAPSTONE
#include <capstone.h>
#endif
/* ... */
/* ... */
static const char *arm_condition_strings[] = {
"EQ", "NE", "CS", "CC", "MI", "PL", "VS", "VC", "HI", "LS", "GE", "LT", "GT", "LE", "", "NV"
...};
static uint32_t ror(uint32_t value, int places)
{
return (value >> places) | (value << (32 - places));
}{ ... }
static int evaluate_unknown(uint32_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
instruction->type = ARM_UNDEFINED_INSTRUCTION;
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32
"\tUNDEFINED INSTRUCTION", address, opcode);
return ERROR_OK;
}{ ... }
static int evaluate_pld(uint32_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
if ((opcode & 0x0d30f000) == 0x0510f000) {
uint8_t rn;
uint8_t u;
unsigned offset;
instruction->type = ARM_PLD;
rn = (opcode & 0xf0000) >> 16;
u = (opcode & 0x00800000) >> 23;
if (rn == 0xf) {
offset = opcode & 0x0fff;
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tPLD %s%d",
address, opcode, u ? "" : "-", offset);
}if (rn == 0xf) { ... } else {
uint8_t i, r;
i = (opcode & 0x02000000) >> 25;
r = (opcode & 0x00400000) >> 22;
if (i) {
offset = (opcode & 0x0F80) >> 7;
uint8_t rm;
rm = opcode & 0xf;
if (offset == 0) {
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tPLD%s [r%d, %sr%d]",
address, opcode, r ? "" : "W", rn, u ? "" : "-", rm);
}if (offset == 0) { ... } else {
uint8_t shift;
shift = (opcode & 0x60) >> 5;
if (shift == 0x0) {
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tPLD%s [r%d, %sr%d, LSL #0x%x)",
address, opcode, r ? "" : "W", rn, u ? "" : "-", rm, offset);
}if (shift == 0x0) { ... } else if (shift == 0x1) {
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tPLD%s [r%d, %sr%d, LSR #0x%x)",
address, opcode, r ? "" : "W", rn, u ? "" : "-", rm, offset);
}else if (shift == 0x1) { ... } else if (shift == 0x2) {
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tPLD%s [r%d, %sr%d, ASR #0x%x)",
address, opcode, r ? "" : "W", rn, u ? "" : "-", rm, offset);
}else if (shift == 0x2) { ... } else if (shift == 0x3) {
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tPLD%s [r%d, %sr%d, ROR #0x%x)",
address, opcode, r ? "" : "W", rn, u ? "" : "-", rm, offset);
}else if (shift == 0x3) { ... }
}else { ... }
}if (i) { ... } else {
offset = opcode & 0x0fff;
if (offset == 0) {
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tPLD%s [r%d]",
address, opcode, r ? "" : "W", rn);
}if (offset == 0) { ... } else {
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tPLD%s [r%d, #%s%d]",
address, opcode, r ? "" : "W", rn, u ? "" : "-", offset);
}else { ... }
}else { ... }
}else { ... }
return ERROR_OK;
}if ((opcode & 0x0d30f000) == 0x0510f000) { ... }
if ((opcode & 0x07f000f0) == 0x05700040) {
instruction->type = ARM_DSB;
char *opt;
switch (opcode & 0x0000000f) {
case 0xf:
opt = "SY";
break;case 0xf:
case 0xe:
opt = "ST";
break;case 0xe:
case 0xb:
opt = "ISH";
break;case 0xb:
case 0xa:
opt = "ISHST";
break;case 0xa:
case 0x7:
opt = "NSH";
break;case 0x7:
case 0x6:
opt = "NSHST";
break;case 0x6:
case 0x3:
opt = "OSH";
break;case 0x3:
case 0x2:
opt = "OSHST";
break;case 0x2:
default:
opt = "UNK";default
}switch (opcode & 0x0000000f) { ... }
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tDSB %s",
address, opcode, opt);
return ERROR_OK;
}if ((opcode & 0x07f000f0) == 0x05700040) { ... }
if ((opcode & 0x07f000f0) == 0x05700060) {
instruction->type = ARM_ISB;
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tISB %s",
address, opcode,
((opcode & 0x0000000f) == 0xf) ? "SY" : "UNK");
return ERROR_OK;
}if ((opcode & 0x07f000f0) == 0x05700060) { ... }
return evaluate_unknown(opcode, address, instruction);
}{ ... }
static int evaluate_srs(uint32_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
const char *wback = (opcode & (1 << 21)) ? "!" : "";
const char *mode = "";
switch ((opcode >> 23) & 0x3) {
case 0:
mode = "DA";
break;case 0:
case 1:
break;case 1:
case 2:
mode = "DB";
break;case 2:
case 3:
mode = "IB";
break;case 3:
}switch ((opcode >> 23) & 0x3) { ... }
switch (opcode & 0x0e500000) {
case 0x08400000:
snprintf(instruction->text, 128, "0x%8.8" PRIx32
"\t0x%8.8" PRIx32
"\tSRS%s\tSP%s, #%d",
address, opcode,
mode, wback,
(unsigned)(opcode & 0x1f));
break;case 0x08400000:
case 0x08100000:
snprintf(instruction->text, 128, "0x%8.8" PRIx32
"\t0x%8.8" PRIx32
"\tRFE%s\tr%d%s",
address, opcode,
mode,
(unsigned)((opcode >> 16) & 0xf), wback);
break;case 0x08100000:
default:
return evaluate_unknown(opcode, address, instruction);default
}switch (opcode & 0x0e500000) { ... }
return ERROR_OK;
}{ ... }
static int evaluate_swi(uint32_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
instruction->type = ARM_SWI;
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tSVC %#6.6" PRIx32,
address, opcode, (opcode & 0xffffff));
return ERROR_OK;
}{ ... }
static int evaluate_blx_imm(uint32_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
int offset;
uint32_t immediate;
uint32_t target_address;
instruction->type = ARM_BLX;
immediate = opcode & 0x00ffffff;
if (immediate & 0x00800000)
offset = 0xff000000 | immediate;
else
offset = immediate;
offset <<= 2;
if (opcode & 0x01000000)
offset |= 0x2;
target_address = address + 8 + offset;
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tBLX 0x%8.8" PRIx32 "",
address,
opcode,
target_address);
instruction->info.b_bl_bx_blx.reg_operand = -1;
instruction->info.b_bl_bx_blx.target_address = target_address;
return ERROR_OK;
}{ ... }
static int evaluate_b_bl(uint32_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint8_t l;
uint32_t immediate;
int offset;
uint32_t target_address;
immediate = opcode & 0x00ffffff;
l = (opcode & 0x01000000) >> 24;
if (immediate & 0x00800000)
offset = 0xff000000 | immediate;
else
offset = immediate;
offset <<= 2;
target_address = address + 8 + offset;
if (l)
instruction->type = ARM_BL;
else
instruction->type = ARM_B;
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tB%s%s 0x%8.8" PRIx32,
address,
opcode,
(l) ? "L" : "",
COND(opcode),
target_address);
instruction->info.b_bl_bx_blx.reg_operand = -1;
instruction->info.b_bl_bx_blx.target_address = target_address;
return ERROR_OK;
}{ ... }
/* ... */
static int evaluate_ldc_stc_mcrr_mrrc(uint32_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint8_t cp_num = (opcode & 0xf00) >> 8;
if (((opcode & 0x0ff00000) == 0x0c400000) || ((opcode & 0x0ff00000) == 0x0c500000)) {
uint8_t cp_opcode, rd, rn, crm;
char *mnemonic;
cp_opcode = (opcode & 0xf0) >> 4;
rd = (opcode & 0xf000) >> 12;
rn = (opcode & 0xf0000) >> 16;
crm = (opcode & 0xf);
if ((opcode & 0x0ff00000) == 0x0c400000) {
instruction->type = ARM_MCRR;
mnemonic = "MCRR";
}if ((opcode & 0x0ff00000) == 0x0c400000) { ... } else if ((opcode & 0x0ff00000) == 0x0c500000) {
instruction->type = ARM_MRRC;
mnemonic = "MRRC";
}else if ((opcode & 0x0ff00000) == 0x0c500000) { ... } else {
LOG_ERROR("Unknown instruction");
return ERROR_FAIL;
}else { ... }
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32
"\t%s%s%s p%i, %x, r%i, r%i, c%i",
address, opcode, mnemonic,
((opcode & 0xf0000000) == 0xf0000000)
? "2" : COND(opcode),
COND(opcode), cp_num, cp_opcode, rd, rn, crm);
}if (((opcode & 0x0ff00000) == 0x0c400000) || ((opcode & 0x0ff00000) == 0x0c500000)) { ... } else {
uint8_t crd, rn, offset;
uint8_t u;
char *mnemonic;
char addressing_mode[32];
crd = (opcode & 0xf000) >> 12;
rn = (opcode & 0xf0000) >> 16;
offset = (opcode & 0xff) << 2;
if (opcode & 0x00100000) {
instruction->type = ARM_LDC;
mnemonic = "LDC";
}if (opcode & 0x00100000) { ... } else {
instruction->type = ARM_STC;
mnemonic = "STC";
}else { ... }
u = (opcode & 0x00800000) >> 23;
if ((opcode & 0x01200000) == 0x01000000)
snprintf(addressing_mode, 32, "[r%i, #%s%d]",
rn, u ? "" : "-", offset);
else if ((opcode & 0x01200000) == 0x01200000)
snprintf(addressing_mode, 32, "[r%i, #%s%d]!",
rn, u ? "" : "-", offset);
else if ((opcode & 0x01200000) == 0x00200000)
snprintf(addressing_mode, 32, "[r%i], #%s%d",
rn, u ? "" : "-", offset);
else if ((opcode & 0x01200000) == 0x00000000)
snprintf(addressing_mode, 32, "[r%i], {%d}",
rn, offset >> 2);
snprintf(instruction->text, 128, "0x%8.8" PRIx32
"\t0x%8.8" PRIx32
"\t%s%s%s p%i, c%i, %s",
address, opcode, mnemonic,
((opcode & 0xf0000000) == 0xf0000000)
? "2" : COND(opcode),
(opcode & (1 << 22)) ? "L" : "",
cp_num, crd, addressing_mode);
}else { ... }
return ERROR_OK;
}{ ... }
/* ... */
static int evaluate_cdp_mcr_mrc(uint32_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
const char *cond;
char *mnemonic;
uint8_t cp_num, opcode_1, crd_rd, crn, crm, opcode_2;
cond = ((opcode & 0xf0000000) == 0xf0000000) ? "2" : COND(opcode);
cp_num = (opcode & 0xf00) >> 8;
crd_rd = (opcode & 0xf000) >> 12;
crn = (opcode & 0xf0000) >> 16;
crm = (opcode & 0xf);
opcode_2 = (opcode & 0xe0) >> 5;
if (opcode & 0x00000010) {
if (opcode & 0x00100000) {
instruction->type = ARM_MRC;
mnemonic = "MRC";
}if (opcode & 0x00100000) { ... } else {
instruction->type = ARM_MCR;
mnemonic = "MCR";
}else { ... }
opcode_1 = (opcode & 0x00e00000) >> 21;
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\t%s%s p%i, 0x%2.2x, r%i, c%i, c%i, 0x%2.2x",
address,
opcode,
mnemonic,
cond,
cp_num,
opcode_1,
crd_rd,
crn,
crm,
opcode_2);
}if (opcode & 0x00000010) { ... } else {
instruction->type = ARM_CDP;
mnemonic = "CDP";
opcode_1 = (opcode & 0x00f00000) >> 20;
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\t%s%s p%i, 0x%2.2x, c%i, c%i, c%i, 0x%2.2x",
address,
opcode,
mnemonic,
cond,
cp_num,
opcode_1,
crd_rd,
crn,
crm,
opcode_2);
}else { ... }
return ERROR_OK;
}{ ... }
static int evaluate_load_store(uint32_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint8_t i, p, u, b, w, l;
uint8_t rn, rd;
char *operation;
char *suffix;
char offset[32];
i = (opcode & 0x02000000) >> 25;
p = (opcode & 0x01000000) >> 24;
u = (opcode & 0x00800000) >> 23;
b = (opcode & 0x00400000) >> 22;
w = (opcode & 0x00200000) >> 21;
l = (opcode & 0x00100000) >> 20;
rd = (opcode & 0xf000) >> 12;
rn = (opcode & 0xf0000) >> 16;
instruction->info.load_store.rd = rd;
instruction->info.load_store.rn = rn;
instruction->info.load_store.u = u;
if (l)
operation = "LDR";
else
operation = "STR";
if (b) {
if ((p == 0) && (w == 1)) {
if (l)
instruction->type = ARM_LDRBT;
else
instruction->type = ARM_STRBT;
suffix = "BT";
}if ((p == 0) && (w == 1)) { ... } else {
if (l)
instruction->type = ARM_LDRB;
else
instruction->type = ARM_STRB;
suffix = "B";
}else { ... }
}if (b) { ... } else {
if ((p == 0) && (w == 1)) {
if (l)
instruction->type = ARM_LDRT;
else
instruction->type = ARM_STRT;
suffix = "T";
}if ((p == 0) && (w == 1)) { ... } else {
if (l)
instruction->type = ARM_LDR;
else
instruction->type = ARM_STR;
suffix = "";
}else { ... }
}else { ... }
if (!i) {
uint32_t offset_12 = (opcode & 0xfff);
if (offset_12)
snprintf(offset, 32, ", #%s0x%" PRIx32 "", (u) ? "" : "-", offset_12);
else
snprintf(offset, 32, "%s", "");
instruction->info.load_store.offset_mode = 0;
instruction->info.load_store.offset.offset = offset_12;
}if (!i) { ... } else {
uint8_t shift_imm, shift;
uint8_t rm;
shift_imm = (opcode & 0xf80) >> 7;
shift = (opcode & 0x60) >> 5;
rm = (opcode & 0xf);
if ((shift == 0x1) && (shift_imm == 0x0))
shift_imm = 0x20;
if ((shift == 0x2) && (shift_imm == 0x0))
shift_imm = 0x20;
if ((shift == 0x3) && (shift_imm == 0x0))
shift = 0x4;
instruction->info.load_store.offset_mode = 1;
instruction->info.load_store.offset.reg.rm = rm;
instruction->info.load_store.offset.reg.shift = shift;
instruction->info.load_store.offset.reg.shift_imm = shift_imm;
if ((shift_imm == 0x0) && (shift == 0x0))
snprintf(offset, 32, ", %sr%i", (u) ? "" : "-", rm);
else {
switch (shift) {
case 0x0:
snprintf(offset, 32, ", %sr%i, LSL #0x%x", (u) ? "" : "-", rm, shift_imm);
break;case 0x0:
case 0x1:
snprintf(offset, 32, ", %sr%i, LSR #0x%x", (u) ? "" : "-", rm, shift_imm);
break;case 0x1:
case 0x2:
snprintf(offset, 32, ", %sr%i, ASR #0x%x", (u) ? "" : "-", rm, shift_imm);
break;case 0x2:
case 0x3:
snprintf(offset, 32, ", %sr%i, ROR #0x%x", (u) ? "" : "-", rm, shift_imm);
break;case 0x3:
case 0x4:
snprintf(offset, 32, ", %sr%i, RRX", (u) ? "" : "-", rm);
break;case 0x4:
}switch (shift) { ... }
}else { ... }
}else { ... }
if (p == 1) {
if (w == 0) {
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\t%s%s%s r%i, [r%i%s]",
address,
opcode,
operation,
COND(opcode),
suffix,
rd,
rn,
offset);
instruction->info.load_store.index_mode = 0;
}if (w == 0) { ... } else {
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\t%s%s%s r%i, [r%i%s]!",
address,
opcode,
operation,
COND(opcode),
suffix,
rd,
rn,
offset);
instruction->info.load_store.index_mode = 1;
}else { ... }
}if (p == 1) { ... } else {
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\t%s%s%s r%i, [r%i]%s",
address,
opcode,
operation,
COND(opcode),
suffix,
rd,
rn,
offset);
instruction->info.load_store.index_mode = 2;
}else { ... }
return ERROR_OK;
}{ ... }
static int evaluate_extend(uint32_t opcode, uint32_t address, char *cp)
{
unsigned rm = (opcode >> 0) & 0xf;
unsigned rd = (opcode >> 12) & 0xf;
unsigned rn = (opcode >> 16) & 0xf;
char *type, *rot;
switch ((opcode >> 24) & 0x3) {
case 0:
type = "B16";
break;case 0:
case 1:
sprintf(cp, "UNDEFINED");
return ARM_UNDEFINED_INSTRUCTION;case 1:
case 2:
type = "B";
break;case 2:
default:
type = "H";
break;default
}switch ((opcode >> 24) & 0x3) { ... }
switch ((opcode >> 10) & 0x3) {
case 0:
rot = "";
break;case 0:
case 1:
rot = ", ROR #8";
break;case 1:
case 2:
rot = ", ROR #16";
break;case 2:
default:
rot = ", ROR #24";
break;default
}switch ((opcode >> 10) & 0x3) { ... }
if (rn == 0xf) {
sprintf(cp, "%cXT%s%s\tr%d, r%d%s",
(opcode & (1 << 22)) ? 'U' : 'S',
type, COND(opcode),
rd, rm, rot);
return ARM_MOV;
}if (rn == 0xf) { ... } else {
sprintf(cp, "%cXTA%s%s\tr%d, r%d, r%d%s",
(opcode & (1 << 22)) ? 'U' : 'S',
type, COND(opcode),
rd, rn, rm, rot);
return ARM_ADD;
}else { ... }
}{ ... }
static int evaluate_p_add_sub(uint32_t opcode, uint32_t address, char *cp)
{
char *prefix;
char *op;
int type;
switch ((opcode >> 20) & 0x7) {
case 1:
prefix = "S";
break;case 1:
case 2:
prefix = "Q";
break;case 2:
case 3:
prefix = "SH";
break;case 3:
case 5:
prefix = "U";
break;case 5:
case 6:
prefix = "UQ";
break;case 6:
case 7:
prefix = "UH";
break;case 7:
default:
goto undef;default
}switch ((opcode >> 20) & 0x7) { ... }
switch ((opcode >> 5) & 0x7) {
case 0:
op = "ADD16";
type = ARM_ADD;
break;case 0:
case 1:
op = "ADDSUBX";
type = ARM_ADD;
break;case 1:
case 2:
op = "SUBADDX";
type = ARM_SUB;
break;case 2:
case 3:
op = "SUB16";
type = ARM_SUB;
break;case 3:
case 4:
op = "ADD8";
type = ARM_ADD;
break;case 4:
case 7:
op = "SUB8";
type = ARM_SUB;
break;case 7:
default:
goto undef;default
}switch ((opcode >> 5) & 0x7) { ... }
sprintf(cp, "%s%s%s\tr%d, r%d, r%d", prefix, op, COND(opcode),
(int) (opcode >> 12) & 0xf,
(int) (opcode >> 16) & 0xf,
(int) (opcode >> 0) & 0xf);
return type;
undef:
sprintf(cp, "UNDEFINED");
return ARM_UNDEFINED_INSTRUCTION;
}{ ... }
static int evaluate_media(uint32_t opcode, uint32_t address,
struct arm_instruction *instruction)
{
char *cp = instruction->text;
char *mnemonic = NULL;
sprintf(cp,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\t",
address, opcode);
cp = strchr(cp, 0);
if ((opcode & 0x01800000) == 0x00000000) {
instruction->type = evaluate_p_add_sub(opcode, address, cp);
return ERROR_OK;
}if ((opcode & 0x01800000) == 0x00000000) { ... }
if ((opcode & 0x01f00020) == 0x00800000) {
char *type, *shift;
unsigned imm = (unsigned) (opcode >> 7) & 0x1f;
if (opcode & (1 << 6)) {
type = "TB";
shift = "ASR";
if (imm == 0)
imm = 32;
}if (opcode & (1 << 6)) { ... } else {
type = "BT";
shift = "LSL";
}else { ... }
sprintf(cp, "PKH%s%s\tr%d, r%d, r%d, %s #%d",
type, COND(opcode),
(int) (opcode >> 12) & 0xf,
(int) (opcode >> 16) & 0xf,
(int) (opcode >> 0) & 0xf,
shift, imm);
return ERROR_OK;
}if ((opcode & 0x01f00020) == 0x00800000) { ... }
if ((opcode & 0x01a00020) == 0x00a00000) {
char *shift;
unsigned imm = (unsigned) (opcode >> 7) & 0x1f;
if (opcode & (1 << 6)) {
shift = "ASR";
if (imm == 0)
imm = 32;
}if (opcode & (1 << 6)) { ... } else
shift = "LSL";
sprintf(cp, "%cSAT%s\tr%d, #%d, r%d, %s #%d",
(opcode & (1 << 22)) ? 'U' : 'S',
COND(opcode),
(int) (opcode >> 12) & 0xf,
(int) (opcode >> 16) & 0x1f,
(int) (opcode >> 0) & 0xf,
shift, imm);
return ERROR_OK;
}if ((opcode & 0x01a00020) == 0x00a00000) { ... }
if ((opcode & 0x018000f0) == 0x00800070) {
instruction->type = evaluate_extend(opcode, address, cp);
return ERROR_OK;
}if ((opcode & 0x018000f0) == 0x00800070) { ... }
if ((opcode & 0x01f00080) == 0x01000000) {
unsigned rn = (opcode >> 12) & 0xf;
if (rn != 0xf)
sprintf(cp, "SML%cD%s%s\tr%d, r%d, r%d, r%d",
(opcode & (1 << 6)) ? 'S' : 'A',
(opcode & (1 << 5)) ? "X" : "",
COND(opcode),
(int) (opcode >> 16) & 0xf,
(int) (opcode >> 0) & 0xf,
(int) (opcode >> 8) & 0xf,
rn);
else
sprintf(cp, "SMU%cD%s%s\tr%d, r%d, r%d",
(opcode & (1 << 6)) ? 'S' : 'A',
(opcode & (1 << 5)) ? "X" : "",
COND(opcode),
(int) (opcode >> 16) & 0xf,
(int) (opcode >> 0) & 0xf,
(int) (opcode >> 8) & 0xf);
return ERROR_OK;
}if ((opcode & 0x01f00080) == 0x01000000) { ... }
if ((opcode & 0x01f00000) == 0x01400000) {
sprintf(cp, "SML%cLD%s%s\tr%d, r%d, r%d, r%d",
(opcode & (1 << 6)) ? 'S' : 'A',
(opcode & (1 << 5)) ? "X" : "",
COND(opcode),
(int) (opcode >> 12) & 0xf,
(int) (opcode >> 16) & 0xf,
(int) (opcode >> 0) & 0xf,
(int) (opcode >> 8) & 0xf);
return ERROR_OK;
}if ((opcode & 0x01f00000) == 0x01400000) { ... }
if ((opcode & 0x01f00000) == 0x01500000) {
unsigned rn = (opcode >> 12) & 0xf;
switch (opcode & 0xc0) {
case 3:
if (rn == 0xf)
goto undef;
case 3:
case 0:
break;case 0:
default:
goto undef;default
}switch (opcode & 0xc0) { ... }
if (rn != 0xf)
sprintf(cp, "SMML%c%s%s\tr%d, r%d, r%d, r%d",
(opcode & (1 << 6)) ? 'S' : 'A',
(opcode & (1 << 5)) ? "R" : "",
COND(opcode),
(int) (opcode >> 16) & 0xf,
(int) (opcode >> 0) & 0xf,
(int) (opcode >> 8) & 0xf,
rn);
else
sprintf(cp, "SMMUL%s%s\tr%d, r%d, r%d",
(opcode & (1 << 5)) ? "R" : "",
COND(opcode),
(int) (opcode >> 16) & 0xf,
(int) (opcode >> 0) & 0xf,
(int) (opcode >> 8) & 0xf);
return ERROR_OK;
}if ((opcode & 0x01f00000) == 0x01500000) { ... }
switch (opcode & 0x01f000f0) {
case 0x00a00030:
case 0x00e00030:
sprintf(cp, "%cSAT16%s\tr%d, #%d, r%d",
(opcode & (1 << 22)) ? 'U' : 'S',
COND(opcode),
(int) (opcode >> 12) & 0xf,
(int) (opcode >> 16) & 0xf,
(int) (opcode >> 0) & 0xf);
return ERROR_OK;case 0x00e00030:
case 0x00b00030:
mnemonic = "REV";
break;case 0x00b00030:
case 0x00b000b0:
mnemonic = "REV16";
break;case 0x00b000b0:
case 0x00f000b0:
mnemonic = "REVSH";
break;case 0x00f000b0:
case 0x008000b0:
sprintf(cp, "SEL%s\tr%d, r%d, r%d", COND(opcode),
(int) (opcode >> 12) & 0xf,
(int) (opcode >> 16) & 0xf,
(int) (opcode >> 0) & 0xf);
return ERROR_OK;case 0x008000b0:
case 0x01800010:
if (((opcode >> 12) & 0xf) == 0xf)
sprintf(cp, "USAD8%s\tr%d, r%d, r%d", COND(opcode),
(int) (opcode >> 16) & 0xf,
(int) (opcode >> 0) & 0xf,
(int) (opcode >> 8) & 0xf);
else
sprintf(cp, "USADA8%s\tr%d, r%d, r%d, r%d", COND(opcode),
(int) (opcode >> 16) & 0xf,
(int) (opcode >> 0) & 0xf,
(int) (opcode >> 8) & 0xf,
(int) (opcode >> 12) & 0xf);
return ERROR_OK;case 0x01800010:
}switch (opcode & 0x01f000f0) { ... }
if (mnemonic) {
unsigned rm = (opcode >> 0) & 0xf;
unsigned rd = (opcode >> 12) & 0xf;
sprintf(cp, "%s%s\tr%d, r%d", mnemonic, COND(opcode), rm, rd);
return ERROR_OK;
}if (mnemonic) { ... }
undef:
sprintf(cp, "UNDEFINED");
return ERROR_OK;
}{ ... }
static int evaluate_misc_load_store(uint32_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint8_t p, u, i, w, l, s, h;
uint8_t rn, rd;
char *operation;
char *suffix;
char offset[32];
p = (opcode & 0x01000000) >> 24;
u = (opcode & 0x00800000) >> 23;
i = (opcode & 0x00400000) >> 22;
w = (opcode & 0x00200000) >> 21;
l = (opcode & 0x00100000) >> 20;
s = (opcode & 0x00000040) >> 6;
h = (opcode & 0x00000020) >> 5;
rd = (opcode & 0xf000) >> 12;
rn = (opcode & 0xf0000) >> 16;
instruction->info.load_store.rd = rd;
instruction->info.load_store.rn = rn;
instruction->info.load_store.u = u;
if (s) {
if (l) {
if (h) {
operation = "LDR";
instruction->type = ARM_LDRSH;
suffix = "SH";
}if (h) { ... } else {
operation = "LDR";
instruction->type = ARM_LDRSB;
suffix = "SB";
}else { ... }
}if (l) { ... } else {
/* ... */
suffix = "D";
if (h) {
operation = "STR";
instruction->type = ARM_STRD;
}if (h) { ... } else {
operation = "LDR";
instruction->type = ARM_LDRD;
}else { ... }
}else { ... }
}if (s) { ... } else {
suffix = "H";
if (l) {
operation = "LDR";
instruction->type = ARM_LDRH;
}if (l) { ... } else {
operation = "STR";
instruction->type = ARM_STRH;
}else { ... }
}else { ... }
if (i) {
uint32_t offset_8 = ((opcode & 0xf00) >> 4) | (opcode & 0xf);
snprintf(offset, 32, "#%s0x%" PRIx32 "", (u) ? "" : "-", offset_8);
instruction->info.load_store.offset_mode = 0;
instruction->info.load_store.offset.offset = offset_8;
}if (i) { ... } else {
uint8_t rm;
rm = (opcode & 0xf);
snprintf(offset, 32, "%sr%i", (u) ? "" : "-", rm);
instruction->info.load_store.offset_mode = 1;
instruction->info.load_store.offset.reg.rm = rm;
instruction->info.load_store.offset.reg.shift = 0x0;
instruction->info.load_store.offset.reg.shift_imm = 0x0;
}else { ... }
if (p == 1) {
if (w == 0) {
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\t%s%s%s r%i, [r%i, %s]",
address,
opcode,
operation,
COND(opcode),
suffix,
rd,
rn,
offset);
instruction->info.load_store.index_mode = 0;
}if (w == 0) { ... } else {
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\t%s%s%s r%i, [r%i, %s]!",
address,
opcode,
operation,
COND(opcode),
suffix,
rd,
rn,
offset);
instruction->info.load_store.index_mode = 1;
}else { ... }
}if (p == 1) { ... } else {
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\t%s%s%s r%i, [r%i], %s",
address,
opcode,
operation,
COND(opcode),
suffix,
rd,
rn,
offset);
instruction->info.load_store.index_mode = 2;
}else { ... }
return ERROR_OK;
}{ ... }
static int evaluate_ldm_stm(uint32_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint8_t p, u, s, w, l, rn;
uint32_t register_list;
char *addressing_mode;
char *mnemonic;
char reg_list[69];
char *reg_list_p;
int i;
int first_reg = 1;
p = (opcode & 0x01000000) >> 24;
u = (opcode & 0x00800000) >> 23;
s = (opcode & 0x00400000) >> 22;
w = (opcode & 0x00200000) >> 21;
l = (opcode & 0x00100000) >> 20;
register_list = (opcode & 0xffff);
rn = (opcode & 0xf0000) >> 16;
instruction->info.load_store_multiple.rn = rn;
instruction->info.load_store_multiple.register_list = register_list;
instruction->info.load_store_multiple.s = s;
instruction->info.load_store_multiple.w = w;
if (l) {
instruction->type = ARM_LDM;
mnemonic = "LDM";
}if (l) { ... } else {
instruction->type = ARM_STM;
mnemonic = "STM";
}else { ... }
if (p) {
if (u) {
instruction->info.load_store_multiple.addressing_mode = 1;
addressing_mode = "IB";
}if (u) { ... } else {
instruction->info.load_store_multiple.addressing_mode = 3;
addressing_mode = "DB";
}else { ... }
}if (p) { ... } else {
if (u) {
instruction->info.load_store_multiple.addressing_mode = 0;
addressing_mode = "";
}if (u) { ... } else {
instruction->info.load_store_multiple.addressing_mode = 2;
addressing_mode = "DA";
}else { ... }
}else { ... }
reg_list_p = reg_list;
for (i = 0; i <= 15; i++) {
if ((register_list >> i) & 1) {
if (first_reg) {
first_reg = 0;
reg_list_p += snprintf(reg_list_p,
(reg_list + 69 - reg_list_p),
"r%i",
i);
}if (first_reg) { ... } else
reg_list_p += snprintf(reg_list_p,
(reg_list + 69 - reg_list_p),
", r%i",
i);
}if ((register_list >> i) & 1) { ... }
}for (i = 0; i <= 15; i++) { ... }
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32
"\t%s%s%s r%i%s, {%s}%s",
address, opcode,
mnemonic, addressing_mode, COND(opcode),
rn, (w) ? "!" : "", reg_list, (s) ? "^" : "");
return ERROR_OK;
}{ ... }
static int evaluate_mul_and_extra_ld_st(uint32_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
if ((opcode & 0x000000f0) == 0x00000090) {
if ((opcode & 0x0f800000) == 0x00000000) {
uint8_t rm, rs, rn, rd, s;
rm = opcode & 0xf;
rs = (opcode & 0xf00) >> 8;
rn = (opcode & 0xf000) >> 12;
rd = (opcode & 0xf0000) >> 16;
s = (opcode & 0x00100000) >> 20;
if (opcode & 0x00200000) {
instruction->type = ARM_MLA;
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tMLA%s%s r%i, r%i, r%i, r%i",
address,
opcode,
COND(opcode),
(s) ? "S" : "",
rd,
rm,
rs,
rn);
}if (opcode & 0x00200000) { ... } else {
instruction->type = ARM_MUL;
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tMUL%s%s r%i, r%i, r%i",
address,
opcode,
COND(opcode),
(s) ? "S" : "",
rd,
rm,
rs);
}else { ... }
return ERROR_OK;
}if ((opcode & 0x0f800000) == 0x00000000) { ... }
if ((opcode & 0x0f800000) == 0x00800000) {
char *mnemonic = NULL;
uint8_t rm, rs, rd_hi, rd_low, s;
rm = opcode & 0xf;
rs = (opcode & 0xf00) >> 8;
rd_hi = (opcode & 0xf000) >> 12;
rd_low = (opcode & 0xf0000) >> 16;
s = (opcode & 0x00100000) >> 20;
switch ((opcode & 0x00600000) >> 21) {
case 0x0:
instruction->type = ARM_UMULL;
mnemonic = "UMULL";
break;case 0x0:
case 0x1:
instruction->type = ARM_UMLAL;
mnemonic = "UMLAL";
break;case 0x1:
case 0x2:
instruction->type = ARM_SMULL;
mnemonic = "SMULL";
break;case 0x2:
case 0x3:
instruction->type = ARM_SMLAL;
mnemonic = "SMLAL";
break;case 0x3:
}switch ((opcode & 0x00600000) >> 21) { ... }
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\t%s%s%s r%i, r%i, r%i, r%i",
address,
opcode,
mnemonic,
COND(opcode),
(s) ? "S" : "",
rd_low,
rd_hi,
rm,
rs);
return ERROR_OK;
}if ((opcode & 0x0f800000) == 0x00800000) { ... }
if ((opcode & 0x0f800000) == 0x01000000) {
uint8_t rm, rd, rn;
rm = opcode & 0xf;
rd = (opcode & 0xf000) >> 12;
rn = (opcode & 0xf0000) >> 16;
instruction->type = (opcode & 0x00400000) ? ARM_SWPB : ARM_SWP;
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\t%s%s r%i, r%i, [r%i]",
address,
opcode,
(opcode & 0x00400000) ? "SWPB" : "SWP",
COND(opcode),
rd,
rm,
rn);
return ERROR_OK;
}if ((opcode & 0x0f800000) == 0x01000000) { ... }
}if ((opcode & 0x000000f0) == 0x00000090) { ... }
return evaluate_misc_load_store(opcode, address, instruction);
}{ ... }
static int evaluate_mrs_msr(uint32_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
int r = (opcode & 0x00400000) >> 22;
char *PSR = (r) ? "SPSR" : "CPSR";
if (opcode & 0x00200000) {
instruction->type = ARM_MSR;
if (opcode & 0x02000000) {
uint8_t immediate = (opcode & 0xff);
uint8_t rotate = (opcode & 0xf00);
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tMSR%s %s_%s%s%s%s, 0x%8.8" PRIx32,
address,
opcode,
COND(opcode),
PSR,
(opcode & 0x10000) ? "c" : "",
(opcode & 0x20000) ? "x" : "",
(opcode & 0x40000) ? "s" : "",
(opcode & 0x80000) ? "f" : "",
ror(immediate, (rotate * 2))
);
}if (opcode & 0x02000000) { ... } else {
uint8_t rm = opcode & 0xf;
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tMSR%s %s_%s%s%s%s, r%i",
address,
opcode,
COND(opcode),
PSR,
(opcode & 0x10000) ? "c" : "",
(opcode & 0x20000) ? "x" : "",
(opcode & 0x40000) ? "s" : "",
(opcode & 0x80000) ? "f" : "",
rm
);
}else { ... }
}if (opcode & 0x00200000) { ... } else {
uint8_t rd;
instruction->type = ARM_MRS;
rd = (opcode & 0x0000f000) >> 12;
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tMRS%s r%i, %s",
address,
opcode,
COND(opcode),
rd,
PSR);
}else { ... }
return ERROR_OK;
}{ ... }
static int evaluate_misc_instr(uint32_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
if ((opcode & 0x000000f0) == 0x00000000)
evaluate_mrs_msr(opcode, address, instruction);
if ((opcode & 0x006000f0) == 0x00200010) {
uint8_t rm;
instruction->type = ARM_BX;
rm = opcode & 0xf;
snprintf(instruction->text, 128, "0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tBX%s r%i",
address, opcode, COND(opcode), rm);
instruction->info.b_bl_bx_blx.reg_operand = rm;
instruction->info.b_bl_bx_blx.target_address = -1;
}if ((opcode & 0x006000f0) == 0x00200010) { ... }
if ((opcode & 0x006000f0) == 0x00200020) {
uint8_t rm;
instruction->type = ARM_BX;
rm = opcode & 0xf;
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tBXJ%s r%i",
address, opcode, COND(opcode), rm);
instruction->info.b_bl_bx_blx.reg_operand = rm;
instruction->info.b_bl_bx_blx.target_address = -1;
}if ((opcode & 0x006000f0) == 0x00200020) { ... }
if ((opcode & 0x006000f0) == 0x00600010) {
uint8_t rm, rd;
instruction->type = ARM_CLZ;
rm = opcode & 0xf;
rd = (opcode & 0xf000) >> 12;
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tCLZ%s r%i, r%i",
address,
opcode,
COND(opcode),
rd,
rm);
}if ((opcode & 0x006000f0) == 0x00600010) { ... }
if ((opcode & 0x006000f0) == 0x00200030) {
uint8_t rm;
instruction->type = ARM_BLX;
rm = opcode & 0xf;
snprintf(instruction->text, 128, "0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tBLX%s r%i",
address, opcode, COND(opcode), rm);
instruction->info.b_bl_bx_blx.reg_operand = rm;
instruction->info.b_bl_bx_blx.target_address = -1;
}if ((opcode & 0x006000f0) == 0x00200030) { ... }
if ((opcode & 0x0000000f0) == 0x00000050) {
uint8_t rm, rd, rn;
char *mnemonic = NULL;
rm = opcode & 0xf;
rd = (opcode & 0xf000) >> 12;
rn = (opcode & 0xf0000) >> 16;
switch ((opcode & 0x00600000) >> 21) {
case 0x0:
instruction->type = ARM_QADD;
mnemonic = "QADD";
break;case 0x0:
case 0x1:
instruction->type = ARM_QSUB;
mnemonic = "QSUB";
break;case 0x1:
case 0x2:
instruction->type = ARM_QDADD;
mnemonic = "QDADD";
break;case 0x2:
case 0x3:
instruction->type = ARM_QDSUB;
mnemonic = "QDSUB";
break;case 0x3:
}switch ((opcode & 0x00600000) >> 21) { ... }
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\t%s%s r%i, r%i, r%i",
address,
opcode,
mnemonic,
COND(opcode),
rd,
rm,
rn);
}if ((opcode & 0x0000000f0) == 0x00000050) { ... }
if ((opcode & 0x0000000f0) == 0x00000060) {
if (((opcode & 0x600000) >> 21) == 3)
instruction->type = ARM_ERET;
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tERET",
address,
opcode);
}if ((opcode & 0x0000000f0) == 0x00000060) { ... }
if ((opcode & 0x0000000f0) == 0x00000070) {
uint32_t immediate = 0;
char *mnemonic = NULL;
switch ((opcode & 0x600000) >> 21) {
case 0x1:
instruction->type = ARM_BKPT;
mnemonic = "BRKT";
immediate = ((opcode & 0x000fff00) >> 4) | (opcode & 0xf);
break;case 0x1:
case 0x2:
instruction->type = ARM_HVC;
mnemonic = "HVC";
immediate = ((opcode & 0x000fff00) >> 4) | (opcode & 0xf);
break;case 0x2:
case 0x3:
instruction->type = ARM_SMC;
mnemonic = "SMC";
immediate = (opcode & 0xf);
break;case 0x3:
}switch ((opcode & 0x600000) >> 21) { ... }
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\t%s 0x%4.4" PRIx32 "",
address,
opcode,
mnemonic,
immediate);
}if ((opcode & 0x0000000f0) == 0x00000070) { ... }
if ((opcode & 0x000000090) == 0x00000080) {
int x = (opcode & 0x20) >> 5;
int y = (opcode & 0x40) >> 6;
if ((opcode & 0x00600000) == 0x00000000) {
uint8_t rd, rm, rs, rn;
instruction->type = ARM_SMLAXY;
rd = (opcode & 0xf0000) >> 16;
rm = (opcode & 0xf);
rs = (opcode & 0xf00) >> 8;
rn = (opcode & 0xf000) >> 12;
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tSMLA%s%s%s r%i, r%i, r%i, r%i",
address,
opcode,
(x) ? "T" : "B",
(y) ? "T" : "B",
COND(opcode),
rd,
rm,
rs,
rn);
}if ((opcode & 0x00600000) == 0x00000000) { ... }
if ((opcode & 0x00600000) == 0x00400000) {
uint8_t rd_low, rd_hi, rm, rs;
instruction->type = ARM_SMLAXY;
rd_hi = (opcode & 0xf0000) >> 16;
rd_low = (opcode & 0xf000) >> 12;
rm = (opcode & 0xf);
rs = (opcode & 0xf00) >> 8;
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tSMLA%s%s%s r%i, r%i, r%i, r%i",
address,
opcode,
(x) ? "T" : "B",
(y) ? "T" : "B",
COND(opcode),
rd_low,
rd_hi,
rm,
rs);
}if ((opcode & 0x00600000) == 0x00400000) { ... }
if (((opcode & 0x00600000) == 0x00200000) && (x == 0)) {
uint8_t rd, rm, rs, rn;
instruction->type = ARM_SMLAWY;
rd = (opcode & 0xf0000) >> 16;
rm = (opcode & 0xf);
rs = (opcode & 0xf00) >> 8;
rn = (opcode & 0xf000) >> 12;
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tSMLAW%s%s r%i, r%i, r%i, r%i",
address,
opcode,
(y) ? "T" : "B",
COND(opcode),
rd,
rm,
rs,
rn);
}if (((opcode & 0x00600000) == 0x00200000) && (x == 0)) { ... }
if ((opcode & 0x00600000) == 0x00600000) {
uint8_t rd, rm, rs;
instruction->type = ARM_SMULXY;
rd = (opcode & 0xf0000) >> 16;
rm = (opcode & 0xf);
rs = (opcode & 0xf00) >> 8;
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tSMULW%s%s%s r%i, r%i, r%i",
address,
opcode,
(x) ? "T" : "B",
(y) ? "T" : "B",
COND(opcode),
rd,
rm,
rs);
}if ((opcode & 0x00600000) == 0x00600000) { ... }
if (((opcode & 0x00600000) == 0x00200000) && (x == 1)) {
uint8_t rd, rm, rs;
instruction->type = ARM_SMULWY;
rd = (opcode & 0xf0000) >> 16;
rm = (opcode & 0xf);
rs = (opcode & 0xf00) >> 8;
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tSMULW%s%s r%i, r%i, r%i",
address,
opcode,
(y) ? "T" : "B",
COND(opcode),
rd,
rm,
rs);
}if (((opcode & 0x00600000) == 0x00200000) && (x == 1)) { ... }
}if ((opcode & 0x000000090) == 0x00000080) { ... }
return ERROR_OK;
}{ ... }
static int evaluate_mov_imm(uint32_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint16_t immediate;
uint8_t rd;
bool t;
rd = (opcode & 0xf000) >> 12;
t = opcode & 0x00400000;
immediate = (opcode & 0xf0000) >> 4 | (opcode & 0xfff);
instruction->type = ARM_MOV;
instruction->info.data_proc.rd = rd;
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tMOV%s%s r%i, #0x%" PRIx16,
address,
opcode,
t ? "T" : "W",
COND(opcode),
rd,
immediate);
return ERROR_OK;
}{ ... }
static int evaluate_data_proc(uint32_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint8_t i, op, s, rn, rd;
char *mnemonic = NULL;
char shifter_operand[32];
i = (opcode & 0x02000000) >> 25;
op = (opcode & 0x01e00000) >> 21;
s = (opcode & 0x00100000) >> 20;
rd = (opcode & 0xf000) >> 12;
rn = (opcode & 0xf0000) >> 16;
instruction->info.data_proc.rd = rd;
instruction->info.data_proc.rn = rn;
instruction->info.data_proc.s = s;
switch (op) {
case 0x0:
instruction->type = ARM_AND;
mnemonic = "AND";
break;case 0x0:
case 0x1:
instruction->type = ARM_EOR;
mnemonic = "EOR";
break;case 0x1:
case 0x2:
instruction->type = ARM_SUB;
mnemonic = "SUB";
break;case 0x2:
case 0x3:
instruction->type = ARM_RSB;
mnemonic = "RSB";
break;case 0x3:
case 0x4:
instruction->type = ARM_ADD;
mnemonic = "ADD";
break;case 0x4:
case 0x5:
instruction->type = ARM_ADC;
mnemonic = "ADC";
break;case 0x5:
case 0x6:
instruction->type = ARM_SBC;
mnemonic = "SBC";
break;case 0x6:
case 0x7:
instruction->type = ARM_RSC;
mnemonic = "RSC";
break;case 0x7:
case 0x8:
instruction->type = ARM_TST;
mnemonic = "TST";
break;case 0x8:
case 0x9:
instruction->type = ARM_TEQ;
mnemonic = "TEQ";
break;case 0x9:
case 0xa:
instruction->type = ARM_CMP;
mnemonic = "CMP";
break;case 0xa:
case 0xb:
instruction->type = ARM_CMN;
mnemonic = "CMN";
break;case 0xb:
case 0xc:
instruction->type = ARM_ORR;
mnemonic = "ORR";
break;case 0xc:
case 0xd:
instruction->type = ARM_MOV;
mnemonic = "MOV";
break;case 0xd:
case 0xe:
instruction->type = ARM_BIC;
mnemonic = "BIC";
break;case 0xe:
case 0xf:
instruction->type = ARM_MVN;
mnemonic = "MVN";
break;case 0xf:
}switch (op) { ... }
if (i) {
uint8_t immed_8 = opcode & 0xff;
uint8_t rotate_imm = (opcode & 0xf00) >> 8;
uint32_t immediate;
immediate = ror(immed_8, rotate_imm * 2);
snprintf(shifter_operand, 32, "#0x%" PRIx32 "", immediate);
instruction->info.data_proc.variant = 0;
instruction->info.data_proc.shifter_operand.immediate.immediate = immediate;
}if (i) { ... } else {
uint8_t shift, rm;
shift = (opcode & 0x60) >> 5;
rm = (opcode & 0xf);
if ((opcode & 0x10) != 0x10) {
/* ... */
uint8_t shift_imm;
shift_imm = (opcode & 0xf80) >> 7;
instruction->info.data_proc.variant = 1;
instruction->info.data_proc.shifter_operand.immediate_shift.rm = rm;
instruction->info.data_proc.shifter_operand.immediate_shift.shift_imm =
shift_imm;
instruction->info.data_proc.shifter_operand.immediate_shift.shift = shift;
if ((shift == 0x1) && (shift_imm == 0x0))
shift_imm = 0x20;
if ((shift == 0x2) && (shift_imm == 0x0))
shift_imm = 0x20;
if ((shift == 0x3) && (shift_imm == 0x0))
shift = 0x4;
if ((shift_imm == 0x0) && (shift == 0x0))
snprintf(shifter_operand, 32, "r%i", rm);
else {
if (shift == 0x0)
snprintf(shifter_operand,
32,
"r%i, LSL #0x%x",
rm,
shift_imm);
else if (shift == 0x1)
snprintf(shifter_operand,
32,
"r%i, LSR #0x%x",
rm,
shift_imm);
else if (shift == 0x2)
snprintf(shifter_operand,
32,
"r%i, ASR #0x%x",
rm,
shift_imm);
else if (shift == 0x3)
snprintf(shifter_operand,
32,
"r%i, ROR #0x%x",
rm,
shift_imm);
else if (shift == 0x4)
snprintf(shifter_operand, 32, "r%i, RRX", rm);
}else { ... }
}if ((opcode & 0x10) != 0x10) { ... } else {
uint8_t rs = (opcode & 0xf00) >> 8;
instruction->info.data_proc.variant = 2;
instruction->info.data_proc.shifter_operand.register_shift.rm = rm;
instruction->info.data_proc.shifter_operand.register_shift.rs = rs;
instruction->info.data_proc.shifter_operand.register_shift.shift = shift;
if (shift == 0x0)
snprintf(shifter_operand, 32, "r%i, LSL r%i", rm, rs);
else if (shift == 0x1)
snprintf(shifter_operand, 32, "r%i, LSR r%i", rm, rs);
else if (shift == 0x2)
snprintf(shifter_operand, 32, "r%i, ASR r%i", rm, rs);
else if (shift == 0x3)
snprintf(shifter_operand, 32, "r%i, ROR r%i", rm, rs);
}else { ... }
}else { ... }
if ((op < 0x8) || (op == 0xc) || (op == 0xe)) {
/* ... */
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\t%s%s%s r%i, r%i, %s",
address,
opcode,
mnemonic,
COND(opcode),
(s) ? "S" : "",
rd,
rn,
shifter_operand);
}if ((op < 0x8) || (op == 0xc) || (op == 0xe)) { ... } else if ((op == 0xd) || (op == 0xf)) {
/* ... */
if (opcode == 0xe1a00000)
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tNOP",
address,
opcode);
else
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\t%s%s%s r%i, %s",
address,
opcode,
mnemonic,
COND(opcode),
(s) ? "S" : "",
rd,
shifter_operand);
}else if ((op == 0xd) || (op == 0xf)) { ... } else {
snprintf(instruction->text, 128, "0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\t%s%s r%i, %s",
address, opcode, mnemonic, COND(opcode),
rn, shifter_operand);
}else { ... }
return ERROR_OK;
}{ ... }
int arm_evaluate_opcode(uint32_t opcode, uint32_t address,
struct arm_instruction *instruction)
{
memset(instruction, 0, sizeof(struct arm_instruction));
instruction->opcode = opcode;
instruction->instruction_size = 4;
if ((opcode & 0xf0000000) == 0xf0000000) {
if ((opcode & 0x08000000) == 0x00000000)
return evaluate_pld(opcode, address, instruction);
if ((opcode & 0x0e000000) == 0x08000000)
return evaluate_srs(opcode, address, instruction);
if ((opcode & 0x0e000000) == 0x0a000000)
return evaluate_blx_imm(opcode, address, instruction);
/* ... */
if ((opcode & 0x0e000000) == 0x0c000000)
return evaluate_ldc_stc_mcrr_mrrc(opcode, address, instruction);
if ((opcode & 0x0f000100) == 0x0c000000)
return evaluate_cdp_mcr_mrc(opcode, address, instruction);
if ((opcode & 0x0f000010) == 0x0c000010)
return evaluate_cdp_mcr_mrc(opcode, address, instruction);
if ((opcode & 0x0f000000) == 0x0f000000) {
instruction->type = ARM_UNDEFINED_INSTRUCTION;
snprintf(instruction->text,
128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tUNDEFINED INSTRUCTION",
address,
opcode);
return ERROR_OK;
}if ((opcode & 0x0f000000) == 0x0f000000) { ... }
}if ((opcode & 0xf0000000) == 0xf0000000) { ... }
if ((opcode & 0x0e000000) == 0x00000000) {
if ((opcode & 0x00000090) == 0x00000090)
return evaluate_mul_and_extra_ld_st(opcode, address, instruction);
if ((opcode & 0x0f900000) == 0x01000000)
return evaluate_misc_instr(opcode, address, instruction);
return evaluate_data_proc(opcode, address, instruction);
}if ((opcode & 0x0e000000) == 0x00000000) { ... }
if ((opcode & 0x0e000000) == 0x02000000) {
if ((opcode & 0x0fb00000) == 0x03000000)
return evaluate_mov_imm(opcode, address, instruction);
if ((opcode & 0x0fb00000) == 0x03200000)
return evaluate_mrs_msr(opcode, address, instruction);
return evaluate_data_proc(opcode, address, instruction);
}if ((opcode & 0x0e000000) == 0x02000000) { ... }
if ((opcode & 0x0e000000) == 0x04000000) {
return evaluate_load_store(opcode, address, instruction);
}if ((opcode & 0x0e000000) == 0x04000000) { ... }
if ((opcode & 0x0e000000) == 0x06000000) {
if ((opcode & 0x00000010) == 0x00000000)
return evaluate_load_store(opcode, address, instruction);
/* ... */
if ((opcode & 0x07f000f0) == 0x07f000f0) {
instruction->type = ARM_UNDEFINED_INSTRUCTION;
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 "\t0x%8.8" PRIx32 "\tUNDEF",
address, opcode);
return ERROR_OK;
}if ((opcode & 0x07f000f0) == 0x07f000f0) { ... }
return evaluate_media(opcode, address, instruction);
}if ((opcode & 0x0e000000) == 0x06000000) { ... }
if ((opcode & 0x0e000000) == 0x08000000) {
return evaluate_ldm_stm(opcode, address, instruction);
}if ((opcode & 0x0e000000) == 0x08000000) { ... }
if ((opcode & 0x0e000000) == 0x0a000000) {
return evaluate_b_bl(opcode, address, instruction);
}if ((opcode & 0x0e000000) == 0x0a000000) { ... }
if ((opcode & 0x0e000000) == 0x0c000000) {
return evaluate_ldc_stc_mcrr_mrrc(opcode, address, instruction);
}if ((opcode & 0x0e000000) == 0x0c000000) { ... }
if ((opcode & 0x0e000000) == 0x0e000000) {
if ((opcode & 0x0f000000) == 0x0f000000)
return evaluate_swi(opcode, address, instruction);
if ((opcode & 0x0f000010) == 0x0e000000)
return evaluate_cdp_mcr_mrc(opcode, address, instruction);
if ((opcode & 0x0f000010) == 0x0e000010)
return evaluate_cdp_mcr_mrc(opcode, address, instruction);
}if ((opcode & 0x0e000000) == 0x0e000000) { ... }
LOG_ERROR("ARM: should never reach this point (opcode=%08x)",
(unsigned) opcode);
return -1;
}{ ... }
static int evaluate_b_bl_blx_thumb(uint16_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint32_t offset = opcode & 0x7ff;
uint32_t opc = (opcode >> 11) & 0x3;
uint32_t target_address;
char *mnemonic = NULL;
if (((opc == 0) || (opc == 2)) && (offset & 0x00000400))
offset = 0xfffff800 | offset;
target_address = address + 4 + (offset << 1);
switch (opc) {
case 0:
instruction->type = ARM_B;
mnemonic = "B";
break;
case 0:
case 1:
instruction->type = ARM_BLX;
mnemonic = "BLX";
target_address &= 0xfffffffc;
break;
case 1:
case 2:
instruction->type = ARM_UNKNOWN_INSTRUCTION;
mnemonic = "prefix";
target_address = offset << 12;
break;
case 2:
case 3:
instruction->type = ARM_BL;
mnemonic = "BL";
break;case 3:
}switch (opc) { ... }
/* ... */
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \t%s\t%#8.8" PRIx32,
address, opcode, mnemonic, target_address);
instruction->info.b_bl_bx_blx.reg_operand = -1;
instruction->info.b_bl_bx_blx.target_address = target_address;
return ERROR_OK;
}{ ... }
static int evaluate_add_sub_thumb(uint16_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint8_t rd = (opcode >> 0) & 0x7;
uint8_t rn = (opcode >> 3) & 0x7;
uint8_t rm_imm = (opcode >> 6) & 0x7;
uint32_t opc = opcode & (1 << 9);
uint32_t reg_imm = opcode & (1 << 10);
char *mnemonic;
if (opc) {
instruction->type = ARM_SUB;
mnemonic = "SUBS";
}if (opc) { ... } else {
instruction->type = ARM_ADD;
mnemonic = "ADDS";
}else { ... }
instruction->info.data_proc.rd = rd;
instruction->info.data_proc.rn = rn;
instruction->info.data_proc.s = 1;
if (reg_imm) {
instruction->info.data_proc.variant = 0;
instruction->info.data_proc.shifter_operand.immediate.immediate = rm_imm;
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \t%s\tr%i, r%i, #%d",
address, opcode, mnemonic, rd, rn, rm_imm);
}if (reg_imm) { ... } else {
instruction->info.data_proc.variant = 1;
instruction->info.data_proc.shifter_operand.immediate_shift.rm = rm_imm;
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \t%s\tr%i, r%i, r%i",
address, opcode, mnemonic, rd, rn, rm_imm);
}else { ... }
return ERROR_OK;
}{ ... }
static int evaluate_shift_imm_thumb(uint16_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint8_t rd = (opcode >> 0) & 0x7;
uint8_t rm = (opcode >> 3) & 0x7;
uint8_t imm = (opcode >> 6) & 0x1f;
uint8_t opc = (opcode >> 11) & 0x3;
char *mnemonic = NULL;
switch (opc) {
case 0:
instruction->type = ARM_MOV;
mnemonic = "LSLS";
instruction->info.data_proc.shifter_operand.immediate_shift.shift = 0;
break;case 0:
case 1:
instruction->type = ARM_MOV;
mnemonic = "LSRS";
instruction->info.data_proc.shifter_operand.immediate_shift.shift = 1;
break;case 1:
case 2:
instruction->type = ARM_MOV;
mnemonic = "ASRS";
instruction->info.data_proc.shifter_operand.immediate_shift.shift = 2;
break;case 2:
}switch (opc) { ... }
if ((imm == 0) && (opc != 0))
imm = 32;
instruction->info.data_proc.rd = rd;
instruction->info.data_proc.rn = -1;
instruction->info.data_proc.s = 1;
instruction->info.data_proc.variant = 1;
instruction->info.data_proc.shifter_operand.immediate_shift.rm = rm;
instruction->info.data_proc.shifter_operand.immediate_shift.shift_imm = imm;
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \t%s\tr%i, r%i, #%#2.2x",
address, opcode, mnemonic, rd, rm, imm);
return ERROR_OK;
}{ ... }
static int evaluate_data_proc_imm_thumb(uint16_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint8_t imm = opcode & 0xff;
uint8_t rd = (opcode >> 8) & 0x7;
uint32_t opc = (opcode >> 11) & 0x3;
char *mnemonic = NULL;
instruction->info.data_proc.rd = rd;
instruction->info.data_proc.rn = rd;
instruction->info.data_proc.s = 1;
instruction->info.data_proc.variant = 0;
instruction->info.data_proc.shifter_operand.immediate.immediate = imm;
switch (opc) {
case 0:
instruction->type = ARM_MOV;
mnemonic = "MOVS";
instruction->info.data_proc.rn = -1;
break;case 0:
case 1:
instruction->type = ARM_CMP;
mnemonic = "CMP";
instruction->info.data_proc.rd = -1;
break;case 1:
case 2:
instruction->type = ARM_ADD;
mnemonic = "ADDS";
break;case 2:
case 3:
instruction->type = ARM_SUB;
mnemonic = "SUBS";
break;case 3:
}switch (opc) { ... }
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \t%s\tr%i, #%#2.2x",
address, opcode, mnemonic, rd, imm);
return ERROR_OK;
}{ ... }
static int evaluate_data_proc_thumb(uint16_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint8_t high_reg, op, rm, rd, h1, h2;
char *mnemonic = NULL;
bool nop = false;
high_reg = (opcode & 0x0400) >> 10;
op = (opcode & 0x03C0) >> 6;
rd = (opcode & 0x0007);
rm = (opcode & 0x0038) >> 3;
h1 = (opcode & 0x0080) >> 7;
h2 = (opcode & 0x0040) >> 6;
instruction->info.data_proc.rd = rd;
instruction->info.data_proc.rn = rd;
instruction->info.data_proc.s = (!high_reg || (instruction->type == ARM_CMP));
instruction->info.data_proc.variant = 1 ;
instruction->info.data_proc.shifter_operand.immediate_shift.rm = rm;
if (high_reg) {
rd |= h1 << 3;
rm |= h2 << 3;
op >>= 2;
switch (op) {
case 0x0:
instruction->type = ARM_ADD;
mnemonic = "ADD";
break;case 0x0:
case 0x1:
instruction->type = ARM_CMP;
mnemonic = "CMP";
break;case 0x1:
case 0x2:
instruction->type = ARM_MOV;
mnemonic = "MOV";
if (rd == rm)
nop = true;
break;case 0x2:
case 0x3:
if ((opcode & 0x7) == 0x0) {
instruction->info.b_bl_bx_blx.reg_operand = rm;
if (h1) {
instruction->type = ARM_BLX;
snprintf(instruction->text, 128,
"0x%8.8" PRIx32
" 0x%4.4x \tBLX\tr%i",
address, opcode, rm);
}if (h1) { ... } else {
instruction->type = ARM_BX;
snprintf(instruction->text, 128,
"0x%8.8" PRIx32
" 0x%4.4x \tBX\tr%i",
address, opcode, rm);
}else { ... }
}if ((opcode & 0x7) == 0x0) { ... } else {
instruction->type = ARM_UNDEFINED_INSTRUCTION;
snprintf(instruction->text, 128,
"0x%8.8" PRIx32
" 0x%4.4x \t"
"UNDEFINED INSTRUCTION",
address, opcode);
}else { ... }
return ERROR_OK;case 0x3:
}switch (op) { ... }
}if (high_reg) { ... } else {
switch (op) {
case 0x0:
instruction->type = ARM_AND;
mnemonic = "ANDS";
break;case 0x0:
case 0x1:
instruction->type = ARM_EOR;
mnemonic = "EORS";
break;case 0x1:
case 0x2:
instruction->type = ARM_MOV;
mnemonic = "LSLS";
instruction->info.data_proc.variant = 2 ;
instruction->info.data_proc.shifter_operand.register_shift.shift = 0;
instruction->info.data_proc.shifter_operand.register_shift.rm = rd;
instruction->info.data_proc.shifter_operand.register_shift.rs = rm;
break;case 0x2:
case 0x3:
instruction->type = ARM_MOV;
mnemonic = "LSRS";
instruction->info.data_proc.variant = 2 ;
instruction->info.data_proc.shifter_operand.register_shift.shift = 1;
instruction->info.data_proc.shifter_operand.register_shift.rm = rd;
instruction->info.data_proc.shifter_operand.register_shift.rs = rm;
break;case 0x3:
case 0x4:
instruction->type = ARM_MOV;
mnemonic = "ASRS";
instruction->info.data_proc.variant = 2 ;
instruction->info.data_proc.shifter_operand.register_shift.shift = 2;
instruction->info.data_proc.shifter_operand.register_shift.rm = rd;
instruction->info.data_proc.shifter_operand.register_shift.rs = rm;
break;case 0x4:
case 0x5:
instruction->type = ARM_ADC;
mnemonic = "ADCS";
break;case 0x5:
case 0x6:
instruction->type = ARM_SBC;
mnemonic = "SBCS";
break;case 0x6:
case 0x7:
instruction->type = ARM_MOV;
mnemonic = "RORS";
instruction->info.data_proc.variant = 2 ;
instruction->info.data_proc.shifter_operand.register_shift.shift = 3;
instruction->info.data_proc.shifter_operand.register_shift.rm = rd;
instruction->info.data_proc.shifter_operand.register_shift.rs = rm;
break;case 0x7:
case 0x8:
instruction->type = ARM_TST;
mnemonic = "TST";
break;case 0x8:
case 0x9:
instruction->type = ARM_RSB;
mnemonic = "RSBS";
instruction->info.data_proc.variant = 0 ;
instruction->info.data_proc.shifter_operand.immediate.immediate = 0;
instruction->info.data_proc.rn = rm;
break;case 0x9:
case 0xA:
instruction->type = ARM_CMP;
mnemonic = "CMP";
break;case 0xA:
case 0xB:
instruction->type = ARM_CMN;
mnemonic = "CMN";
break;case 0xB:
case 0xC:
instruction->type = ARM_ORR;
mnemonic = "ORRS";
break;case 0xC:
case 0xD:
instruction->type = ARM_MUL;
mnemonic = "MULS";
break;case 0xD:
case 0xE:
instruction->type = ARM_BIC;
mnemonic = "BICS";
break;case 0xE:
case 0xF:
instruction->type = ARM_MVN;
mnemonic = "MVNS";
break;case 0xF:
}switch (op) { ... }
}else { ... }
if (nop)
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \tNOP\t\t\t"
"; (%s r%i, r%i)",
address, opcode, mnemonic, rd, rm);
else
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \t%s\tr%i, r%i",
address, opcode, mnemonic, rd, rm);
return ERROR_OK;
}{ ... }
static inline uint32_t thumb_alignpc4(uint32_t addr)
{
return (addr + 4) & ~3;
}{ ... }
static int evaluate_load_literal_thumb(uint16_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint32_t immediate;
uint8_t rd = (opcode >> 8) & 0x7;
instruction->type = ARM_LDR;
immediate = opcode & 0x000000ff;
immediate *= 4;
instruction->info.load_store.rd = rd;
instruction->info.load_store.rn = 15 ;
instruction->info.load_store.index_mode = 0;
instruction->info.load_store.offset_mode = 0;
instruction->info.load_store.offset.offset = immediate;
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \t"
"LDR\tr%i, [pc, #%#" PRIx32 "]\t; %#8.8" PRIx32,
address, opcode, rd, immediate,
thumb_alignpc4(address) + immediate);
return ERROR_OK;
}{ ... }
static int evaluate_load_store_reg_thumb(uint16_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint8_t rd = (opcode >> 0) & 0x7;
uint8_t rn = (opcode >> 3) & 0x7;
uint8_t rm = (opcode >> 6) & 0x7;
uint8_t opc = (opcode >> 9) & 0x7;
char *mnemonic = NULL;
switch (opc) {
case 0:
instruction->type = ARM_STR;
mnemonic = "STR";
break;case 0:
case 1:
instruction->type = ARM_STRH;
mnemonic = "STRH";
break;case 1:
case 2:
instruction->type = ARM_STRB;
mnemonic = "STRB";
break;case 2:
case 3:
instruction->type = ARM_LDRSB;
mnemonic = "LDRSB";
break;case 3:
case 4:
instruction->type = ARM_LDR;
mnemonic = "LDR";
break;case 4:
case 5:
instruction->type = ARM_LDRH;
mnemonic = "LDRH";
break;case 5:
case 6:
instruction->type = ARM_LDRB;
mnemonic = "LDRB";
break;case 6:
case 7:
instruction->type = ARM_LDRSH;
mnemonic = "LDRSH";
break;case 7:
}switch (opc) { ... }
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \t%s\tr%i, [r%i, r%i]",
address, opcode, mnemonic, rd, rn, rm);
instruction->info.load_store.rd = rd;
instruction->info.load_store.rn = rn;
instruction->info.load_store.index_mode = 0;
instruction->info.load_store.offset_mode = 1;
instruction->info.load_store.offset.reg.rm = rm;
return ERROR_OK;
}{ ... }
static int evaluate_load_store_imm_thumb(uint16_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint32_t offset = (opcode >> 6) & 0x1f;
uint8_t rd = (opcode >> 0) & 0x7;
uint8_t rn = (opcode >> 3) & 0x7;
uint32_t l = opcode & (1 << 11);
uint32_t b = opcode & (1 << 12);
char *mnemonic;
char suffix = ' ';
uint32_t shift = 2;
if (l) {
instruction->type = ARM_LDR;
mnemonic = "LDR";
}if (l) { ... } else {
instruction->type = ARM_STR;
mnemonic = "STR";
}else { ... }
if ((opcode&0xF000) == 0x8000) {
suffix = 'H';
shift = 1;
}if ((opcode&0xF000) == 0x8000) { ... } else if (b) {
suffix = 'B';
shift = 0;
}else if (b) { ... }
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \t%s%c\tr%i, [r%i, #%#" PRIx32 "]",
address, opcode, mnemonic, suffix, rd, rn, offset << shift);
instruction->info.load_store.rd = rd;
instruction->info.load_store.rn = rn;
instruction->info.load_store.index_mode = 0;
instruction->info.load_store.offset_mode = 0;
instruction->info.load_store.offset.offset = offset << shift;
return ERROR_OK;
}{ ... }
static int evaluate_load_store_stack_thumb(uint16_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint32_t offset = opcode & 0xff;
uint8_t rd = (opcode >> 8) & 0x7;
uint32_t l = opcode & (1 << 11);
char *mnemonic;
if (l) {
instruction->type = ARM_LDR;
mnemonic = "LDR";
}if (l) { ... } else {
instruction->type = ARM_STR;
mnemonic = "STR";
}else { ... }
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \t%s\tr%i, [SP, #%#" PRIx32 "]",
address, opcode, mnemonic, rd, offset*4);
instruction->info.load_store.rd = rd;
instruction->info.load_store.rn = 13 ;
instruction->info.load_store.index_mode = 0;
instruction->info.load_store.offset_mode = 0;
instruction->info.load_store.offset.offset = offset*4;
return ERROR_OK;
}{ ... }
static int evaluate_add_sp_pc_thumb(uint16_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint32_t imm = opcode & 0xff;
uint8_t rd = (opcode >> 8) & 0x7;
uint8_t rn;
uint32_t sp = opcode & (1 << 11);
const char *reg_name;
instruction->type = ARM_ADD;
if (sp) {
reg_name = "SP";
rn = 13;
}if (sp) { ... } else {
reg_name = "PC";
rn = 15;
}else { ... }
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \tADD\tr%i, %s, #%#" PRIx32,
address, opcode, rd, reg_name, imm * 4);
instruction->info.data_proc.variant = 0 ;
instruction->info.data_proc.rd = rd;
instruction->info.data_proc.rn = rn;
instruction->info.data_proc.shifter_operand.immediate.immediate = imm*4;
return ERROR_OK;
}{ ... }
static int evaluate_adjust_stack_thumb(uint16_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint32_t imm = opcode & 0x7f;
uint8_t opc = opcode & (1 << 7);
char *mnemonic;
if (opc) {
instruction->type = ARM_SUB;
mnemonic = "SUB";
}if (opc) { ... } else {
instruction->type = ARM_ADD;
mnemonic = "ADD";
}else { ... }
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \t%s\tSP, #%#" PRIx32,
address, opcode, mnemonic, imm*4);
instruction->info.data_proc.variant = 0 ;
instruction->info.data_proc.rd = 13 ;
instruction->info.data_proc.rn = 13 ;
instruction->info.data_proc.shifter_operand.immediate.immediate = imm*4;
return ERROR_OK;
}{ ... }
static int evaluate_breakpoint_thumb(uint16_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint32_t imm = opcode & 0xff;
instruction->type = ARM_BKPT;
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \tBKPT\t%#2.2" PRIx32 "",
address, opcode, imm);
return ERROR_OK;
}{ ... }
static int evaluate_load_store_multiple_thumb(uint16_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint32_t reg_list = opcode & 0xff;
uint32_t l = opcode & (1 << 11);
uint32_t r = opcode & (1 << 8);
uint8_t rn = (opcode >> 8) & 7;
uint8_t addr_mode = 0 ;
char reg_names[40];
char *reg_names_p;
char *mnemonic;
char ptr_name[7] = "";
int i;
/* ... */
if ((opcode & 0xf000) == 0xc000) {
char *wback = "!";
if (l) {
instruction->type = ARM_LDM;
mnemonic = "LDM";
if (opcode & (1 << rn))
wback = "";
}if (l) { ... } else {
instruction->type = ARM_STM;
mnemonic = "STM";
}else { ... }
snprintf(ptr_name, sizeof(ptr_name), "r%i%s, ", rn, wback);
}if ((opcode & 0xf000) == 0xc000) { ... } else {
rn = 13;
if (l) {
instruction->type = ARM_LDM;
mnemonic = "POP";
if (r)
reg_list |= (1 << 15) ;
}if (l) { ... } else {
instruction->type = ARM_STM;
mnemonic = "PUSH";
addr_mode = 3;
if (r)
reg_list |= (1 << 14) ;
}else { ... }
}else { ... }
reg_names_p = reg_names;
for (i = 0; i <= 15; i++) {
if (reg_list & (1 << i))
reg_names_p += snprintf(reg_names_p,
(reg_names + 40 - reg_names_p),
"r%i, ",
i);
}for (i = 0; i <= 15; i++) { ... }
if (reg_names_p > reg_names)
reg_names_p[-2] = '\0';
else
reg_names[0] = '\0';
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \t%s\t%s{%s}",
address, opcode, mnemonic, ptr_name, reg_names);
instruction->info.load_store_multiple.register_list = reg_list;
instruction->info.load_store_multiple.rn = rn;
instruction->info.load_store_multiple.addressing_mode = addr_mode;
return ERROR_OK;
}{ ... }
static int evaluate_cond_branch_thumb(uint16_t opcode,
uint32_t address, struct arm_instruction *instruction)
{
uint32_t offset = opcode & 0xff;
uint8_t cond = (opcode >> 8) & 0xf;
uint32_t target_address;
if (cond == 0xf) {
instruction->type = ARM_SWI;
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \tSVC\t%#2.2" PRIx32,
address, opcode, offset);
return ERROR_OK;
}if (cond == 0xf) { ... } else if (cond == 0xe) {
instruction->type = ARM_UNDEFINED_INSTRUCTION;
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \tUNDEFINED INSTRUCTION",
address, opcode);
return ERROR_OK;
}else if (cond == 0xe) { ... }
if (offset & 0x00000080)
offset = 0xffffff00 | offset;
target_address = address + 4 + (offset << 1);
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \tB%s\t%#8.8" PRIx32,
address, opcode,
arm_condition_strings[cond], target_address);
instruction->type = ARM_B;
instruction->info.b_bl_bx_blx.reg_operand = -1;
instruction->info.b_bl_bx_blx.target_address = target_address;
return ERROR_OK;
}{ ... }
static int evaluate_cb_thumb(uint16_t opcode, uint32_t address,
struct arm_instruction *instruction)
{
unsigned offset;
offset = (opcode >> 3) & 0x1f;
offset |= (opcode & 0x0200) >> 4;
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \tCB%sZ\tr%d, %#8.8" PRIx32,
address, opcode,
(opcode & 0x0800) ? "N" : "",
opcode & 0x7, address + 4 + (offset << 1));
return ERROR_OK;
}{ ... }
static int evaluate_extend_thumb(uint16_t opcode, uint32_t address,
struct arm_instruction *instruction)
{
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \t%cXT%c\tr%d, r%d",
address, opcode,
(opcode & 0x0080) ? 'U' : 'S',
(opcode & 0x0040) ? 'B' : 'H',
opcode & 0x7, (opcode >> 3) & 0x7);
return ERROR_OK;
}{ ... }
static int evaluate_cps_thumb(uint16_t opcode, uint32_t address,
struct arm_instruction *instruction)
{
if ((opcode & 0x0ff0) == 0x0650)
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \tSETEND %s",
address, opcode,
(opcode & 0x80) ? "BE" : "LE");
else
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \tCPSI%c\t%s%s%s",
address, opcode,
(opcode & 0x0010) ? 'D' : 'E',
(opcode & 0x0004) ? "A" : "",
(opcode & 0x0002) ? "I" : "",
(opcode & 0x0001) ? "F" : "");
return ERROR_OK;
}{ ... }
static int evaluate_byterev_thumb(uint16_t opcode, uint32_t address,
struct arm_instruction *instruction)
{
char *suffix;
switch ((opcode >> 6) & 3) {
case 0:
suffix = "";
break;case 0:
case 1:
suffix = "16";
break;case 1:
default:
suffix = "SH";
break;default
}switch ((opcode >> 6) & 3) { ... }
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \tREV%s\tr%d, r%d",
address, opcode, suffix,
opcode & 0x7, (opcode >> 3) & 0x7);
return ERROR_OK;
}{ ... }
static int evaluate_hint_thumb(uint16_t opcode, uint32_t address,
struct arm_instruction *instruction)
{
char *hint;
switch ((opcode >> 4) & 0x0f) {
case 0:
hint = "NOP";
break;case 0:
case 1:
hint = "YIELD";
break;case 1:
case 2:
hint = "WFE";
break;case 2:
case 3:
hint = "WFI";
break;case 3:
case 4:
hint = "SEV";
break;case 4:
default:
hint = "HINT (UNRECOGNIZED)";
break;default
}switch ((opcode >> 4) & 0x0f) { ... }
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \t%s",
address, opcode, hint);
return ERROR_OK;
}{ ... }
static int evaluate_ifthen_thumb(uint16_t opcode, uint32_t address,
struct arm_instruction *instruction)
{
unsigned cond = (opcode >> 4) & 0x0f;
char *x = "", *y = "", *z = "";
if (opcode & 0x01)
z = (opcode & 0x02) ? "T" : "E";
if (opcode & 0x03)
y = (opcode & 0x04) ? "T" : "E";
if (opcode & 0x07)
x = (opcode & 0x08) ? "T" : "E";
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \tIT%s%s%s\t%s",
address, opcode,
x, y, z, arm_condition_strings[cond]);
/* ... */
return ERROR_OK;
}{ ... }
int thumb_evaluate_opcode(uint16_t opcode, uint32_t address, struct arm_instruction *instruction)
{
memset(instruction, 0, sizeof(struct arm_instruction));
instruction->opcode = opcode;
instruction->instruction_size = 2;
if ((opcode & 0xe000) == 0x0000) {
if ((opcode & 0x1800) == 0x1800)
return evaluate_add_sub_thumb(opcode, address, instruction);
else
return evaluate_shift_imm_thumb(opcode, address, instruction);
}if ((opcode & 0xe000) == 0x0000) { ... }
if ((opcode & 0xe000) == 0x2000)
return evaluate_data_proc_imm_thumb(opcode, address, instruction);
if ((opcode & 0xf800) == 0x4000)
return evaluate_data_proc_thumb(opcode, address, instruction);
if ((opcode & 0xf800) == 0x4800)
return evaluate_load_literal_thumb(opcode, address, instruction);
if ((opcode & 0xf000) == 0x5000)
return evaluate_load_store_reg_thumb(opcode, address, instruction);
if (((opcode & 0xe000) == 0x6000)
|| ((opcode & 0xf000) == 0x8000))
return evaluate_load_store_imm_thumb(opcode, address, instruction);
if ((opcode & 0xf000) == 0x9000)
return evaluate_load_store_stack_thumb(opcode, address, instruction);
if ((opcode & 0xf000) == 0xa000)
return evaluate_add_sp_pc_thumb(opcode, address, instruction);
if ((opcode & 0xf000) == 0xb000) {
switch ((opcode >> 8) & 0x0f) {
case 0x0:
return evaluate_adjust_stack_thumb(opcode, address, instruction);case 0x0:
case 0x1:
case 0x3:
case 0x9:
case 0xb:
return evaluate_cb_thumb(opcode, address, instruction);case 0xb:
case 0x2:
return evaluate_extend_thumb(opcode, address, instruction);case 0x2:
case 0x4:
case 0x5:
case 0xc:
case 0xd:
return evaluate_load_store_multiple_thumb(opcode, address,
instruction);case 0xd:
case 0x6:
return evaluate_cps_thumb(opcode, address, instruction);case 0x6:
case 0xa:
if ((opcode & 0x00c0) == 0x0080)
break;
return evaluate_byterev_thumb(opcode, address, instruction);case 0xa:
case 0xe:
return evaluate_breakpoint_thumb(opcode, address, instruction);case 0xe:
case 0xf:
if (opcode & 0x000f)
return evaluate_ifthen_thumb(opcode, address,
instruction);
else
return evaluate_hint_thumb(opcode, address,
instruction);case 0xf:
}switch ((opcode >> 8) & 0x0f) { ... }
instruction->type = ARM_UNDEFINED_INSTRUCTION;
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%4.4x \tUNDEFINED INSTRUCTION",
address, opcode);
return ERROR_OK;
}if ((opcode & 0xf000) == 0xb000) { ... }
if ((opcode & 0xf000) == 0xc000)
return evaluate_load_store_multiple_thumb(opcode, address, instruction);
if ((opcode & 0xf000) == 0xd000)
return evaluate_cond_branch_thumb(opcode, address, instruction);
if ((opcode & 0xe000) == 0xe000) {
if ((opcode & 0xf801) == 0xe801) {
instruction->type = ARM_UNDEFINED_INSTRUCTION;
snprintf(instruction->text, 128,
"0x%8.8" PRIx32 " 0x%8.8x\t"
"UNDEFINED INSTRUCTION",
address, opcode);
return ERROR_OK;
}if ((opcode & 0xf801) == 0xe801) { ... } else
return evaluate_b_bl_blx_thumb(opcode, address, instruction);
}if ((opcode & 0xe000) == 0xe000) { ... }
LOG_ERROR("Thumb: should never reach this point (opcode=%04x)", opcode);
return -1;
}{ ... }
int arm_access_size(struct arm_instruction *instruction)
{
if ((instruction->type == ARM_LDRB)
|| (instruction->type == ARM_LDRBT)
|| (instruction->type == ARM_LDRSB)
|| (instruction->type == ARM_STRB)
|| (instruction->type == ARM_STRBT))
return 1;
else if ((instruction->type == ARM_LDRH)
|| (instruction->type == ARM_LDRSH)
|| (instruction->type == ARM_STRH))
return 2;
else if ((instruction->type == ARM_LDR)
|| (instruction->type == ARM_LDRT)
|| (instruction->type == ARM_STR)
|| (instruction->type == ARM_STRT))
return 4;
else if ((instruction->type == ARM_LDRD)
|| (instruction->type == ARM_STRD))
return 8;
else {
LOG_ERROR("BUG: instruction type %i isn't a load/store instruction",
instruction->type);
return 0;
}else { ... }
}{ ... }
#if HAVE_CAPSTONE
static void print_opcode(struct command_invocation *cmd, const cs_insn *insn)
{
uint32_t opcode = 0;
memcpy(&opcode, insn->bytes, insn->size);
if (insn->size == 4) {
uint16_t opcode_high = opcode >> 16;
opcode = opcode & 0xffff;
command_print(cmd, "0x%08" PRIx64" %04x %04x\t%s%s%s",
insn->address, opcode, opcode_high, insn->mnemonic,
insn->op_str[0] ? "\t" : "", insn->op_str);
}if (insn->size == 4) { ... } else {
command_print(cmd, "0x%08" PRIx64" %04x\t%s%s%s",
insn->address, opcode, insn->mnemonic,
insn->op_str[0] ? "\t" : "", insn->op_str);
}else { ... }
}print_opcode (struct command_invocation *cmd, const cs_insn *insn) { ... }
int arm_disassemble(struct command_invocation *cmd, struct target *target,
target_addr_t address, size_t count, bool thumb_mode)
{
csh handle;
int ret;
cs_insn *insn;
cs_mode mode;
if (!cs_support(CS_ARCH_ARM)) {
LOG_ERROR("ARM architecture not supported by capstone");
return ERROR_FAIL;
}if (!cs_support(CS_ARCH_ARM)) { ... }
mode = CS_MODE_LITTLE_ENDIAN;
if (thumb_mode)
mode |= CS_MODE_THUMB;
ret = cs_open(CS_ARCH_ARM, mode, &handle);
if (ret != CS_ERR_OK) {
LOG_ERROR("cs_open() failed: %s", cs_strerror(ret));
return ERROR_FAIL;
}if (ret != CS_ERR_OK) { ... }
ret = cs_option(handle, CS_OPT_SKIPDATA, CS_OPT_ON);
if (ret != CS_ERR_OK) {
LOG_ERROR("cs_option() failed: %s", cs_strerror(ret));
cs_close(&handle);
return ERROR_FAIL;
}if (ret != CS_ERR_OK) { ... }
insn = cs_malloc(handle);
if (!insn) {
LOG_ERROR("cs_malloc() failed\n");
cs_close(&handle);
return ERROR_FAIL;
}if (!insn) { ... }
while (count > 0) {
uint8_t buffer[4];
ret = target_read_buffer(target, address, sizeof(buffer), buffer);
if (ret != ERROR_OK) {
cs_free(insn, 1);
cs_close(&handle);
return ret;
}if (ret != ERROR_OK) { ... }
size_t size = sizeof(buffer);
const uint8_t *tmp = buffer;
ret = cs_disasm_iter(handle, &tmp, &size, &address, insn);
if (!ret) {
LOG_ERROR("cs_disasm_iter() failed: %s",
cs_strerror(cs_errno(handle)));
cs_free(insn, 1);
cs_close(&handle);
return ERROR_FAIL;
}if (!ret) { ... }
print_opcode(cmd, insn);
count--;
}while (count > 0) { ... }
cs_free(insn, 1);
cs_close(&handle);
return ERROR_OK;
}arm_disassemble (struct command_invocation *cmd, struct target *target, target_addr_t address, size_t count, bool thumb_mode) { ... }
/* ... */#endif