/src/capstonenext/arch/SystemZ/SystemZMapping.c
Line  | Count  | Source  | 
1  |  | /* Capstone Disassembly Engine */  | 
2  |  | /* By Rot127 <unisono@quyllur.org> 2022-2023 */  | 
3  |  |  | 
4  |  | #ifdef CAPSTONE_HAS_SYSTEMZ  | 
5  |  |  | 
6  |  | #include <stdio.h> // debug  | 
7  |  | #include <string.h>  | 
8  |  |  | 
9  |  | #include "../../Mapping.h"  | 
10  |  | #include "../../utils.h"  | 
11  |  | #include "../../cs_simple_types.h"  | 
12  |  | #include <capstone/cs_operand.h>  | 
13  |  |  | 
14  |  | #include "SystemZMCTargetDesc.h"  | 
15  |  | #include "SystemZMapping.h"  | 
16  |  | #include "SystemZLinkage.h"  | 
17  |  |  | 
18  |  | #ifndef CAPSTONE_DIET  | 
19  |  |  | 
20  |  | static const char *const insn_name_maps[] = { | 
21  |  | #include "SystemZGenCSMappingInsnName.inc"  | 
22  |  | };  | 
23  |  |  | 
24  |  | static const name_map insn_alias_mnem_map[] = { | 
25  |  | #include "SystemZGenCSAliasMnemMap.inc"  | 
26  |  |   { SYSTEMZ_INS_ALIAS_END, NULL }, | 
27  |  | };  | 
28  |  |  | 
29  |  | static const map_insn_ops insn_operands[] = { | 
30  |  | #include "SystemZGenCSMappingInsnOp.inc"  | 
31  |  | };  | 
32  |  |  | 
33  |  | #endif  | 
34  |  |  | 
35  |  | #define GET_REGINFO_MC_DESC  | 
36  |  | #include "SystemZGenRegisterInfo.inc"  | 
37  |  |  | 
38  |  | const insn_map systemz_insns[] = { | 
39  |  | #include "SystemZGenCSMappingInsn.inc"  | 
40  |  | };  | 
41  |  |  | 
42  |  | void SystemZ_set_instr_map_data(MCInst *MI, const uint8_t *Bytes,  | 
43  |  |         size_t BytesLen)  | 
44  | 169k  | { | 
45  | 169k  |   map_cs_id(MI, systemz_insns, ARR_SIZE(systemz_insns));  | 
46  | 169k  |   map_implicit_reads(MI, systemz_insns);  | 
47  | 169k  |   map_implicit_writes(MI, systemz_insns);  | 
48  | 169k  |   map_groups(MI, systemz_insns);  | 
49  | 169k  |   const systemz_suppl_info *suppl_info =  | 
50  | 169k  |     map_get_suppl_info(MI, systemz_insns);  | 
51  | 169k  |   if (suppl_info) { | 
52  | 169k  |     SystemZ_get_detail(MI)->format = suppl_info->form;  | 
53  | 169k  |   }  | 
54  | 169k  | }  | 
55  |  |  | 
56  |  | void SystemZ_init_mri(MCRegisterInfo *MRI)  | 
57  | 4.36k  | { | 
58  | 4.36k  |   MCRegisterInfo_InitMCRegisterInfo(  | 
59  | 4.36k  |     MRI, SystemZRegDesc, AARCH64_REG_ENDING, 0, 0,  | 
60  | 4.36k  |     SystemZMCRegisterClasses, ARR_SIZE(SystemZMCRegisterClasses), 0,  | 
61  | 4.36k  |     0, SystemZRegDiffLists, 0, SystemZSubRegIdxLists,  | 
62  | 4.36k  |     ARR_SIZE(SystemZSubRegIdxLists), 0);  | 
63  | 4.36k  | }  | 
64  |  |  | 
65  |  | const char *SystemZ_reg_name(csh handle, unsigned int reg)  | 
66  | 104k  | { | 
67  | 104k  |   return SystemZ_LLVM_getRegisterName(reg);  | 
68  | 104k  | }  | 
69  |  |  | 
70  |  | void SystemZ_printer(MCInst *MI, SStream *O, void * /* MCRegisterInfo* */ info)  | 
71  | 166k  | { | 
72  | 166k  |   MI->MRI = (MCRegisterInfo *)info;  | 
73  | 166k  |   MI->fillDetailOps = detail_is_set(MI);  | 
74  | 166k  |   SystemZ_LLVM_printInstruction(MI, "", O);  | 
75  | 166k  | #ifndef CAPSTONE_DIET  | 
76  | 166k  |   map_set_alias_id(MI, O, insn_alias_mnem_map,  | 
77  | 166k  |        ARR_SIZE(insn_alias_mnem_map));  | 
78  | 166k  | #endif  | 
79  | 166k  | }  | 
80  |  |  | 
81  |  | void SystemZ_init_cs_detail(MCInst *MI)  | 
82  | 169k  | { | 
83  | 169k  |   if (!detail_is_set(MI)) { | 
84  | 0  |     return;  | 
85  | 0  |   }  | 
86  | 169k  |   memset(get_detail(MI), 0, sizeof(cs_detail));  | 
87  | 169k  |   if (detail_is_set(MI)) { | 
88  | 169k  |     SystemZ_get_detail(MI)->cc = SYSTEMZ_CC_INVALID;  | 
89  | 169k  |   }  | 
90  | 169k  | }  | 
91  |  |  | 
92  |  | bool SystemZ_getInstruction(csh handle, const uint8_t *bytes, size_t bytes_len,  | 
93  |  |           MCInst *MI, uint16_t *size, uint64_t address,  | 
94  |  |           void *info)  | 
95  | 169k  | { | 
96  | 169k  |   SystemZ_init_cs_detail(MI);  | 
97  | 169k  |   MI->MRI = (MCRegisterInfo *)info;  | 
98  | 169k  |   DecodeStatus Result = SystemZ_LLVM_getInstruction(  | 
99  | 169k  |     handle, bytes, bytes_len, MI, size, address, info);  | 
100  | 169k  |   SystemZ_set_instr_map_data(MI, bytes, bytes_len);  | 
101  | 169k  |   if (Result == MCDisassembler_SoftFail) { | 
102  | 0  |     MCInst_setSoftFail(MI);  | 
103  | 0  |   }  | 
104  | 169k  |   return Result != MCDisassembler_Fail;  | 
105  | 169k  | }  | 
106  |  |  | 
107  |  | // given internal insn id, return public instruction info  | 
108  |  | void SystemZ_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id)  | 
109  | 166k  | { | 
110  |  |   // We do this after Instruction disassembly.  | 
111  | 166k  | }  | 
112  |  |  | 
113  |  | const char *SystemZ_insn_name(csh handle, unsigned int id)  | 
114  | 166k  | { | 
115  | 166k  | #ifndef CAPSTONE_DIET  | 
116  | 166k  |   if (id < SYSTEMZ_INS_ALIAS_END && id > SYSTEMZ_INS_ALIAS_BEGIN) { | 
117  | 0  |     if (id - SYSTEMZ_INS_ALIAS_BEGIN >=  | 
118  | 0  |         ARR_SIZE(insn_alias_mnem_map))  | 
119  | 0  |       return NULL;  | 
120  |  |  | 
121  | 0  |     return insn_alias_mnem_map[id - SYSTEMZ_INS_ALIAS_BEGIN - 1]  | 
122  | 0  |       .name;  | 
123  | 0  |   }  | 
124  | 166k  |   if (id >= SYSTEMZ_INS_ENDING)  | 
125  | 0  |     return NULL;  | 
126  |  |  | 
127  | 166k  |   if (id < ARR_SIZE(insn_name_maps))  | 
128  | 166k  |     return insn_name_maps[id];  | 
129  |  |  | 
130  |  |   // not found  | 
131  | 0  |   return NULL;  | 
132  |  | #else  | 
133  |  |   return NULL;  | 
134  |  | #endif  | 
135  | 166k  | }  | 
136  |  |  | 
137  |  | #ifndef CAPSTONE_DIET  | 
138  |  | static const name_map group_name_maps[] = { | 
139  |  |   // generic groups  | 
140  |  |   { SYSTEMZ_GRP_INVALID, NULL }, | 
141  |  |   { SYSTEMZ_GRP_JUMP, "jump" }, | 
142  |  |   { SYSTEMZ_GRP_CALL, "call" }, | 
143  |  |   { SYSTEMZ_GRP_RET, "return" }, | 
144  |  |   { SYSTEMZ_GRP_INT, "int" }, | 
145  |  |   { SYSTEMZ_GRP_IRET, "iret" }, | 
146  |  |   { SYSTEMZ_GRP_PRIVILEGE, "privilege" }, | 
147  |  |   { SYSTEMZ_GRP_BRANCH_RELATIVE, "branch_relative" }, | 
148  |  |  | 
149  |  | #include "SystemZGenCSFeatureName.inc"  | 
150  |  | };  | 
151  |  | #endif  | 
152  |  |  | 
153  |  | const char *SystemZ_group_name(csh handle, unsigned int id)  | 
154  | 99.3k  | { | 
155  | 99.3k  | #ifndef CAPSTONE_DIET  | 
156  | 99.3k  |   return id2name(group_name_maps, ARR_SIZE(group_name_maps), id);  | 
157  |  | #else  | 
158  |  |   return NULL;  | 
159  |  | #endif  | 
160  | 99.3k  | }  | 
161  |  |  | 
162  |  | void SystemZ_add_cs_detail(MCInst *MI, int /* aarch64_op_group */ op_group,  | 
163  |  |          va_list args)  | 
164  | 402k  | { | 
165  | 402k  | #ifndef CAPSTONE_DIET  | 
166  | 402k  |   if (!detail_is_set(MI) || !map_fill_detail_ops(MI))  | 
167  | 0  |     return;  | 
168  |  |  | 
169  | 402k  |   unsigned op_num = va_arg(args, unsigned);  | 
170  |  |  | 
171  | 402k  |   switch (op_group) { | 
172  | 0  |   default:  | 
173  | 0  |     printf("Operand group %d not handled\n", op_group); | 
174  | 0  |     break;  | 
175  | 234k  |   case SystemZ_OP_GROUP_Operand: { | 
176  | 234k  |     cs_op_type secondary_op_type = map_get_op_type(MI, op_num) &  | 
177  | 234k  |                  ~(CS_OP_MEM | CS_OP_BOUND);  | 
178  | 234k  |     if (secondary_op_type == CS_OP_IMM) { | 
179  | 0  |       SystemZ_set_detail_op_imm(  | 
180  | 0  |         MI, op_num, MCInst_getOpVal(MI, op_num), 0);  | 
181  | 234k  |     } else if (secondary_op_type == CS_OP_REG) { | 
182  | 234k  |       SystemZ_set_detail_op_reg(MI, op_num,  | 
183  | 234k  |               MCInst_getOpVal(MI, op_num));  | 
184  | 234k  |     } else { | 
185  | 0  |       CS_ASSERT_RET(0 && "Op type not handled.");  | 
186  | 0  |     }  | 
187  | 234k  |     break;  | 
188  | 234k  |   }  | 
189  | 234k  |   case SystemZ_OP_GROUP_Cond4Operand: { | 
190  | 0  |     systemz_cc cc = MCInst_getOpVal(MI, op_num);  | 
191  | 0  |     SystemZ_get_detail(MI)->cc = cc;  | 
192  | 0  |     break;  | 
193  | 234k  |   }  | 
194  | 46.3k  |   case SystemZ_OP_GROUP_BDAddrOperand:  | 
195  | 46.3k  |     CS_ASSERT_RET(map_get_op_type(MI, (op_num)) & CS_OP_MEM);  | 
196  | 46.3k  |     CS_ASSERT_RET(map_get_op_type(MI, (op_num + 1)) & CS_OP_MEM);  | 
197  | 46.3k  |     CS_ASSERT_RET(MCOperand_isReg(MCInst_getOperand(MI, (op_num))));  | 
198  | 46.3k  |     CS_ASSERT_RET(  | 
199  | 46.3k  |       MCOperand_isImm(MCInst_getOperand(MI, (op_num + 1))));  | 
200  | 46.3k  |     SystemZ_set_detail_op_mem(MI, op_num,  | 
201  | 46.3k  |             MCInst_getOpVal(MI, (op_num)),  | 
202  | 46.3k  |             MCInst_getOpVal(MI, (op_num + 1)), 0,  | 
203  | 46.3k  |             0, SYSTEMZ_AM_BD);  | 
204  | 46.3k  |     break;  | 
205  | 2.10k  |   case SystemZ_OP_GROUP_BDVAddrOperand:  | 
206  | 44.1k  |   case SystemZ_OP_GROUP_BDXAddrOperand: { | 
207  | 44.1k  |     CS_ASSERT(map_get_op_type(MI, (op_num)) & CS_OP_MEM);  | 
208  | 44.1k  |     CS_ASSERT(map_get_op_type(MI, (op_num + 1)) & CS_OP_MEM);  | 
209  | 44.1k  |     CS_ASSERT(map_get_op_type(MI, (op_num + 2)) & CS_OP_MEM);  | 
210  | 44.1k  |     CS_ASSERT(MCOperand_isReg(MCInst_getOperand(MI, (op_num))));  | 
211  | 44.1k  |     CS_ASSERT(MCOperand_isImm(MCInst_getOperand(MI, (op_num + 1))));  | 
212  | 44.1k  |     CS_ASSERT(MCOperand_isReg(MCInst_getOperand(MI, (op_num + 2))));  | 
213  | 44.1k  |     SystemZ_set_detail_op_mem(  | 
214  | 44.1k  |       MI, op_num, MCInst_getOpVal(MI, (op_num)),  | 
215  | 44.1k  |       MCInst_getOpVal(MI, (op_num + 1)), 0,  | 
216  | 44.1k  |       MCInst_getOpVal(MI, (op_num + 2)),  | 
217  | 44.1k  |       (op_group == SystemZ_OP_GROUP_BDXAddrOperand ?  | 
218  | 42.0k  |          SYSTEMZ_AM_BDX :  | 
219  | 44.1k  |          SYSTEMZ_AM_BDV));  | 
220  | 44.1k  |     break;  | 
221  | 2.10k  |   }  | 
222  | 12.6k  |   case SystemZ_OP_GROUP_BDLAddrOperand:  | 
223  | 12.6k  |     CS_ASSERT(map_get_op_type(MI, (op_num)) & CS_OP_MEM);  | 
224  | 12.6k  |     CS_ASSERT(map_get_op_type(MI, (op_num + 1)) & CS_OP_MEM);  | 
225  | 12.6k  |     CS_ASSERT(map_get_op_type(MI, (op_num + 2)) & CS_OP_MEM);  | 
226  | 12.6k  |     CS_ASSERT(MCOperand_isReg(MCInst_getOperand(MI, (op_num))));  | 
227  | 12.6k  |     CS_ASSERT(MCOperand_isImm(MCInst_getOperand(MI, (op_num + 1))));  | 
228  | 12.6k  |     CS_ASSERT(MCOperand_isImm(MCInst_getOperand(MI, (op_num + 2))));  | 
229  | 12.6k  |     SystemZ_set_detail_op_mem(MI, op_num,  | 
230  | 12.6k  |             MCInst_getOpVal(MI, (op_num)),  | 
231  | 12.6k  |             MCInst_getOpVal(MI, (op_num + 1)),  | 
232  | 12.6k  |             MCInst_getOpVal(MI, (op_num + 2)), 0,  | 
233  | 12.6k  |             SYSTEMZ_AM_BDL);  | 
234  | 12.6k  |     break;  | 
235  | 846  |   case SystemZ_OP_GROUP_BDRAddrOperand:  | 
236  | 846  |     CS_ASSERT(map_get_op_type(MI, (op_num)) & CS_OP_MEM);  | 
237  | 846  |     CS_ASSERT(map_get_op_type(MI, (op_num + 1)) & CS_OP_MEM);  | 
238  | 846  |     CS_ASSERT(map_get_op_type(MI, (op_num + 2)) & CS_OP_MEM);  | 
239  | 846  |     CS_ASSERT(MCOperand_isReg(MCInst_getOperand(MI, (op_num))));  | 
240  | 846  |     CS_ASSERT(MCOperand_isImm(MCInst_getOperand(MI, (op_num + 1))));  | 
241  | 846  |     CS_ASSERT(MCOperand_isReg(MCInst_getOperand(MI, (op_num + 2))));  | 
242  | 846  |     SystemZ_set_detail_op_mem(MI, op_num,  | 
243  | 846  |             MCInst_getOpVal(MI, (op_num)),  | 
244  | 846  |             MCInst_getOpVal(MI, (op_num + 1)),  | 
245  | 846  |             MCInst_getOpVal(MI, (op_num + 2)), 0,  | 
246  | 846  |             SYSTEMZ_AM_BDL);  | 
247  | 846  |     break;  | 
248  | 5.13k  |   case SystemZ_OP_GROUP_PCRelOperand:  | 
249  | 5.13k  |     SystemZ_set_detail_op_imm(MI, op_num,  | 
250  | 5.13k  |             MCInst_getOpVal(MI, op_num), 0);  | 
251  | 5.13k  |     break;  | 
252  | 2.37k  |   case SystemZ_OP_GROUP_U1ImmOperand:  | 
253  | 2.37k  |     SystemZ_set_detail_op_imm(MI, op_num,  | 
254  | 2.37k  |             MCInst_getOpVal(MI, op_num), 1);  | 
255  | 2.37k  |     break;  | 
256  | 1.81k  |   case SystemZ_OP_GROUP_U2ImmOperand:  | 
257  | 1.81k  |     SystemZ_set_detail_op_imm(MI, op_num,  | 
258  | 1.81k  |             MCInst_getOpVal(MI, op_num), 2);  | 
259  | 1.81k  |     break;  | 
260  | 1.72k  |   case SystemZ_OP_GROUP_U3ImmOperand:  | 
261  | 1.72k  |     SystemZ_set_detail_op_imm(MI, op_num,  | 
262  | 1.72k  |             MCInst_getOpVal(MI, op_num), 3);  | 
263  | 1.72k  |     break;  | 
264  | 31.4k  |   case SystemZ_OP_GROUP_U4ImmOperand:  | 
265  | 31.4k  |     SystemZ_set_detail_op_imm(MI, op_num,  | 
266  | 31.4k  |             MCInst_getOpVal(MI, op_num), 4);  | 
267  | 31.4k  |     break;  | 
268  | 9.13k  |   case SystemZ_OP_GROUP_U8ImmOperand:  | 
269  | 11.9k  |   case SystemZ_OP_GROUP_S8ImmOperand:  | 
270  | 11.9k  |     SystemZ_set_detail_op_imm(MI, op_num,  | 
271  | 11.9k  |             MCInst_getOpVal(MI, op_num), 8);  | 
272  | 11.9k  |     break;  | 
273  | 822  |   case SystemZ_OP_GROUP_U12ImmOperand:  | 
274  | 822  |     SystemZ_set_detail_op_imm(MI, op_num,  | 
275  | 822  |             MCInst_getOpVal(MI, op_num), 12);  | 
276  | 822  |     break;  | 
277  | 1.83k  |   case SystemZ_OP_GROUP_U16ImmOperand:  | 
278  | 5.70k  |   case SystemZ_OP_GROUP_S16ImmOperand:  | 
279  | 5.70k  |     SystemZ_set_detail_op_imm(MI, op_num,  | 
280  | 5.70k  |             MCInst_getOpVal(MI, op_num), 16);  | 
281  | 5.70k  |     break;  | 
282  | 1.37k  |   case SystemZ_OP_GROUP_U32ImmOperand:  | 
283  | 3.17k  |   case SystemZ_OP_GROUP_S32ImmOperand:  | 
284  | 3.17k  |     SystemZ_set_detail_op_imm(MI, op_num,  | 
285  | 3.17k  |             MCInst_getOpVal(MI, op_num), 32);  | 
286  | 3.17k  |     break;  | 
287  | 0  |   case SystemZ_OP_GROUP_U48ImmOperand:  | 
288  | 0  |     SystemZ_set_detail_op_imm(MI, op_num,  | 
289  | 0  |             MCInst_getOpVal(MI, op_num), 48);  | 
290  | 0  |     break;  | 
291  | 402k  |   }  | 
292  | 402k  | #endif  | 
293  | 402k  | }  | 
294  |  |  | 
295  |  | #ifndef CAPSTONE_DIET  | 
296  |  |  | 
297  |  | void SystemZ_set_detail_op_imm(MCInst *MI, unsigned op_num, int64_t Imm,  | 
298  |  |              size_t width)  | 
299  | 64.0k  | { | 
300  | 64.0k  |   if (!detail_is_set(MI))  | 
301  | 0  |     return;  | 
302  | 64.0k  |   CS_ASSERT((map_get_op_type(MI, op_num) & ~CS_OP_MEM) == CS_OP_IMM);  | 
303  |  |  | 
304  | 64.0k  |   SystemZ_get_detail_op(MI, 0)->type = SYSTEMZ_OP_IMM;  | 
305  | 64.0k  |   SystemZ_get_detail_op(MI, 0)->imm = Imm;  | 
306  | 64.0k  |   SystemZ_get_detail_op(MI, 0)->access = map_get_op_access(MI, op_num);  | 
307  | 64.0k  |   SystemZ_get_detail_op(MI, 0)->imm_width = width;  | 
308  | 64.0k  |   SystemZ_inc_op_count(MI);  | 
309  | 64.0k  | }  | 
310  |  |  | 
311  |  | void SystemZ_set_detail_op_reg(MCInst *MI, unsigned op_num, systemz_reg Reg)  | 
312  | 234k  | { | 
313  | 234k  |   if (!detail_is_set(MI))  | 
314  | 0  |     return;  | 
315  | 234k  |   CS_ASSERT((map_get_op_type(MI, op_num) & ~CS_OP_MEM) == CS_OP_REG);  | 
316  | 234k  |   if (Reg == SYSTEMZ_REG_INVALID) { | 
317  |  |     // This case is legal. The ISA says:  | 
318  |  |     // "  | 
319  |  |     // When the R1 field is not zero, bits 8-15 of the instruction designated  | 
320  |  |     // by the second-operand address are ORed with bits 56-63 of  | 
321  |  |     // general register R1. [...] When the R1 field is zero, no ORing takes place  | 
322  |  |     // "  | 
323  |  |     // This means we just save the neutral element for ORing, so 0.  | 
324  | 1.15k  |     SystemZ_get_detail_op(MI, 0)->type = SYSTEMZ_OP_IMM;  | 
325  | 1.15k  |     SystemZ_get_detail_op(MI, 0)->imm = 0;  | 
326  | 1.15k  |     SystemZ_get_detail_op(MI, 0)->access =  | 
327  | 1.15k  |       map_get_op_access(MI, op_num);  | 
328  | 1.15k  |     SystemZ_get_detail_op(MI, 0)->imm_width = 0;  | 
329  | 1.15k  |     SystemZ_inc_op_count(MI);  | 
330  | 1.15k  |     return;  | 
331  | 1.15k  |   }  | 
332  |  |  | 
333  | 233k  |   SystemZ_get_detail_op(MI, 0)->type = SYSTEMZ_OP_REG;  | 
334  | 233k  |   SystemZ_get_detail_op(MI, 0)->reg = Reg;  | 
335  | 233k  |   SystemZ_get_detail_op(MI, 0)->access = map_get_op_access(MI, op_num);  | 
336  | 233k  |   SystemZ_inc_op_count(MI);  | 
337  | 233k  | }  | 
338  |  |  | 
339  |  | void SystemZ_set_detail_op_mem(MCInst *MI, unsigned op_num, systemz_reg base,  | 
340  |  |              int64_t disp, uint64_t length, systemz_reg index,  | 
341  |  |              systemz_addr_mode am)  | 
342  | 104k  | { | 
343  | 104k  |   if (!detail_is_set(MI))  | 
344  | 0  |     return;  | 
345  | 104k  |   SystemZ_get_detail_op(MI, 0)->type = SYSTEMZ_OP_MEM;  | 
346  | 104k  |   SystemZ_get_detail_op(MI, 0)->access = map_get_op_access(MI, op_num);  | 
347  | 104k  |   SystemZ_get_detail_op(MI, 0)->mem.am = am;  | 
348  | 104k  |   switch (am) { | 
349  | 0  |   default:  | 
350  | 0  |     CS_ASSERT(0 && "Address mode not handled\n");  | 
351  | 0  |     break;  | 
352  | 46.3k  |   case SYSTEMZ_AM_BD:  | 
353  | 46.3k  |     SystemZ_get_detail_op(MI, 0)->mem.base = base;  | 
354  | 46.3k  |     SystemZ_get_detail_op(MI, 0)->mem.disp = disp;  | 
355  | 46.3k  |     break;  | 
356  | 42.0k  |   case SYSTEMZ_AM_BDX:  | 
357  | 44.1k  |   case SYSTEMZ_AM_BDV:  | 
358  | 44.1k  |     SystemZ_get_detail_op(MI, 0)->mem.base = base;  | 
359  | 44.1k  |     SystemZ_get_detail_op(MI, 0)->mem.disp = disp;  | 
360  | 44.1k  |     SystemZ_get_detail_op(MI, 0)->mem.index = index;  | 
361  | 44.1k  |     break;  | 
362  | 13.5k  |   case SYSTEMZ_AM_BDL:  | 
363  | 13.5k  |     SystemZ_get_detail_op(MI, 0)->mem.base = base;  | 
364  | 13.5k  |     SystemZ_get_detail_op(MI, 0)->mem.disp = disp;  | 
365  | 13.5k  |     SystemZ_get_detail_op(MI, 0)->mem.length = length;  | 
366  | 13.5k  |     break;  | 
367  | 0  |   case SYSTEMZ_AM_BDR:  | 
368  | 0  |     SystemZ_get_detail_op(MI, 0)->mem.base = base;  | 
369  | 0  |     SystemZ_get_detail_op(MI, 0)->mem.disp = disp;  | 
370  | 0  |     SystemZ_get_detail_op(MI, 0)->mem.length = length;  | 
371  | 0  |     break;  | 
372  | 104k  |   }  | 
373  | 104k  |   SystemZ_inc_op_count(MI);  | 
374  | 104k  | }  | 
375  |  |  | 
376  |  | #endif  | 
377  |  |  | 
378  |  | #endif  |