/src/capstonev5/MCRegisterInfo.c
Line | Count | Source (jump to first uncovered line) |
1 | | //=== MC/MCRegisterInfo.cpp - Target Register Description -------*- C++ -*-===// |
2 | | // |
3 | | // The LLVM Compiler Infrastructure |
4 | | // |
5 | | // This file is distributed under the University of Illinois Open Source |
6 | | // License. See LICENSE.TXT for details. |
7 | | // |
8 | | //===----------------------------------------------------------------------===// |
9 | | // |
10 | | // This file implements MCRegisterInfo functions. |
11 | | // |
12 | | //===----------------------------------------------------------------------===// |
13 | | |
14 | | /* Capstone Disassembly Engine */ |
15 | | /* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2019 */ |
16 | | |
17 | | #include "MCRegisterInfo.h" |
18 | | |
19 | | /// DiffListIterator - Base iterator class that can traverse the |
20 | | /// differentially encoded register and regunit lists in DiffLists. |
21 | | /// Don't use this class directly, use one of the specialized sub-classes |
22 | | /// defined below. |
23 | | typedef struct DiffListIterator { |
24 | | uint16_t Val; |
25 | | const MCPhysReg *List; |
26 | | } DiffListIterator; |
27 | | |
28 | | void MCRegisterInfo_InitMCRegisterInfo(MCRegisterInfo *RI, |
29 | | const MCRegisterDesc *D, unsigned NR, |
30 | | unsigned RA, unsigned PC, |
31 | | const MCRegisterClass *C, unsigned NC, |
32 | | uint16_t (*RURoots)[2], unsigned NRU, |
33 | | const MCPhysReg *DL, |
34 | | const char *Strings, |
35 | | const uint16_t *SubIndices, unsigned NumIndices, |
36 | | const uint16_t *RET) |
37 | 88.7k | { |
38 | 88.7k | RI->Desc = D; |
39 | 88.7k | RI->NumRegs = NR; |
40 | 88.7k | RI->RAReg = RA; |
41 | 88.7k | RI->PCReg = PC; |
42 | 88.7k | RI->Classes = C; |
43 | 88.7k | RI->DiffLists = DL; |
44 | 88.7k | RI->RegStrings = Strings; |
45 | 88.7k | RI->NumClasses = NC; |
46 | 88.7k | RI->RegUnitRoots = RURoots; |
47 | 88.7k | RI->NumRegUnits = NRU; |
48 | 88.7k | RI->SubRegIndices = SubIndices; |
49 | 88.7k | RI->NumSubRegIndices = NumIndices; |
50 | 88.7k | RI->RegEncodingTable = RET; |
51 | 88.7k | } |
52 | | |
53 | | static void DiffListIterator_init(DiffListIterator *d, MCPhysReg InitVal, const MCPhysReg *DiffList) |
54 | 514k | { |
55 | 514k | d->Val = InitVal; |
56 | 514k | d->List = DiffList; |
57 | 514k | } |
58 | | |
59 | | static uint16_t DiffListIterator_getVal(DiffListIterator *d) |
60 | 257k | { |
61 | 257k | return d->Val; |
62 | 257k | } |
63 | | |
64 | | static bool DiffListIterator_next(DiffListIterator *d) |
65 | 3.73M | { |
66 | 3.73M | MCPhysReg D; |
67 | | |
68 | 3.73M | if (d->List == 0) |
69 | 0 | return false; |
70 | | |
71 | 3.73M | D = *d->List; |
72 | 3.73M | d->List++; |
73 | 3.73M | d->Val += D; |
74 | | |
75 | 3.73M | if (!D) |
76 | 256k | d->List = 0; |
77 | | |
78 | 3.73M | return (D != 0); |
79 | 3.73M | } |
80 | | |
81 | | static bool DiffListIterator_isValid(DiffListIterator *d) |
82 | 3.73M | { |
83 | 3.73M | return (d->List != 0); |
84 | 3.73M | } |
85 | | |
86 | | unsigned MCRegisterInfo_getMatchingSuperReg(const MCRegisterInfo *RI, unsigned Reg, unsigned SubIdx, const MCRegisterClass *RC) |
87 | 20.1k | { |
88 | 20.1k | DiffListIterator iter; |
89 | | |
90 | 20.1k | if (Reg >= RI->NumRegs) { |
91 | 0 | return 0; |
92 | 0 | } |
93 | | |
94 | 20.1k | DiffListIterator_init(&iter, (MCPhysReg)Reg, RI->DiffLists + RI->Desc[Reg].SuperRegs); |
95 | 20.1k | DiffListIterator_next(&iter); |
96 | | |
97 | 20.1k | while(DiffListIterator_isValid(&iter)) { |
98 | 20.1k | uint16_t val = DiffListIterator_getVal(&iter); |
99 | 20.1k | if (MCRegisterClass_contains(RC, val) && Reg == MCRegisterInfo_getSubReg(RI, val, SubIdx)) |
100 | 20.1k | return val; |
101 | | |
102 | 0 | DiffListIterator_next(&iter); |
103 | 0 | } |
104 | | |
105 | 0 | return 0; |
106 | 20.1k | } |
107 | | |
108 | | unsigned MCRegisterInfo_getSubReg(const MCRegisterInfo *RI, unsigned Reg, unsigned Idx) |
109 | 494k | { |
110 | 494k | DiffListIterator iter; |
111 | 494k | const uint16_t *SRI = RI->SubRegIndices + RI->Desc[Reg].SubRegIndices; |
112 | | |
113 | 494k | DiffListIterator_init(&iter, (MCPhysReg)Reg, RI->DiffLists + RI->Desc[Reg].SubRegs); |
114 | 494k | DiffListIterator_next(&iter); |
115 | | |
116 | 3.71M | while(DiffListIterator_isValid(&iter)) { |
117 | 3.46M | if (*SRI == Idx) |
118 | 237k | return DiffListIterator_getVal(&iter); |
119 | 3.22M | DiffListIterator_next(&iter); |
120 | 3.22M | ++SRI; |
121 | 3.22M | } |
122 | | |
123 | 256k | return 0; |
124 | 494k | } |
125 | | |
126 | | const MCRegisterClass* MCRegisterInfo_getRegClass(const MCRegisterInfo *RI, unsigned i) |
127 | 3.19M | { |
128 | | //assert(i < getNumRegClasses() && "Register Class ID out of range"); |
129 | 3.19M | if (i >= RI->NumClasses) |
130 | 0 | return 0; |
131 | 3.19M | return &(RI->Classes[i]); |
132 | 3.19M | } |
133 | | |
134 | | bool MCRegisterClass_contains(const MCRegisterClass *c, unsigned Reg) |
135 | 2.75M | { |
136 | 2.75M | unsigned InByte = 0; |
137 | 2.75M | unsigned Byte = 0; |
138 | | |
139 | | // Make sure that MCRegisterInfo_getRegClass didn't return 0 |
140 | | // (for calls to GETREGCLASS_CONTAIN0) |
141 | 2.75M | if(!c) |
142 | 0 | return false; |
143 | | |
144 | 2.75M | InByte = Reg % 8; |
145 | 2.75M | Byte = Reg / 8; |
146 | | |
147 | 2.75M | if (Byte >= c->RegSetSize) |
148 | 407k | return false; |
149 | | |
150 | 2.34M | return (c->RegSet[Byte] & (1 << InByte)) != 0; |
151 | 2.75M | } |