blob: 7b50b9ce807207e59bdc00421e857825fc54927e [file] [log] [blame]
Richard Sandifordeb9af292013-05-14 10:17:52 +00001//===-- SystemZDisassembler.cpp - Disassembler for SystemZ ------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Richard Sandifordeb9af292013-05-14 10:17:52 +00006//
7//===----------------------------------------------------------------------===//
8
Eugene Zelenko3943d2b2017-01-24 22:10:43 +00009#include "MCTargetDesc/SystemZMCTargetDesc.h"
Richard Sandifordeb9af292013-05-14 10:17:52 +000010#include "SystemZ.h"
Benjamin Kramerf57c1972016-01-26 16:44:37 +000011#include "llvm/MC/MCDisassembler/MCDisassembler.h"
Richard Sandifordeb9af292013-05-14 10:17:52 +000012#include "llvm/MC/MCFixedLenDisassembler.h"
13#include "llvm/MC/MCInst.h"
14#include "llvm/MC/MCSubtargetInfo.h"
Eugene Zelenko3943d2b2017-01-24 22:10:43 +000015#include "llvm/Support/MathExtras.h"
Richard Sandifordeb9af292013-05-14 10:17:52 +000016#include "llvm/Support/TargetRegistry.h"
Eugene Zelenko3943d2b2017-01-24 22:10:43 +000017#include <cassert>
18#include <cstdint>
Richard Sandifordeb9af292013-05-14 10:17:52 +000019
20using namespace llvm;
21
Chandler Carruthe96dd892014-04-21 22:55:11 +000022#define DEBUG_TYPE "systemz-disassembler"
23
Richard Sandifordeb9af292013-05-14 10:17:52 +000024typedef MCDisassembler::DecodeStatus DecodeStatus;
25
26namespace {
Eugene Zelenko3943d2b2017-01-24 22:10:43 +000027
Richard Sandifordeb9af292013-05-14 10:17:52 +000028class SystemZDisassembler : public MCDisassembler {
29public:
Lang Hamesa1bc0f52014-04-15 04:40:56 +000030 SystemZDisassembler(const MCSubtargetInfo &STI, MCContext &Ctx)
31 : MCDisassembler(STI, Ctx) {}
Eugene Zelenko3943d2b2017-01-24 22:10:43 +000032 ~SystemZDisassembler() override = default;
Richard Sandifordeb9af292013-05-14 10:17:52 +000033
Rafael Espindola7fc5b872014-11-12 02:04:27 +000034 DecodeStatus getInstruction(MCInst &instr, uint64_t &Size,
35 ArrayRef<uint8_t> Bytes, uint64_t Address,
Rafael Espindola4aa6bea2014-11-10 18:11:10 +000036 raw_ostream &VStream,
37 raw_ostream &CStream) const override;
Richard Sandifordeb9af292013-05-14 10:17:52 +000038};
Eugene Zelenko3943d2b2017-01-24 22:10:43 +000039
Richard Sandifordeb9af292013-05-14 10:17:52 +000040} // end anonymous namespace
41
42static MCDisassembler *createSystemZDisassembler(const Target &T,
Lang Hamesa1bc0f52014-04-15 04:40:56 +000043 const MCSubtargetInfo &STI,
44 MCContext &Ctx) {
45 return new SystemZDisassembler(STI, Ctx);
Richard Sandifordeb9af292013-05-14 10:17:52 +000046}
47
48extern "C" void LLVMInitializeSystemZDisassembler() {
49 // Register the disassembler.
Mehdi Aminif42454b2016-10-09 23:00:34 +000050 TargetRegistry::RegisterMCDisassembler(getTheSystemZTarget(),
Richard Sandifordeb9af292013-05-14 10:17:52 +000051 createSystemZDisassembler);
52}
53
Ulrich Weigand6e648ea2016-04-15 19:55:58 +000054/// tryAddingSymbolicOperand - trys to add a symbolic operand in place of the
55/// immediate Value in the MCInst.
56///
57/// @param Value - The immediate Value, has had any PC adjustment made by
58/// the caller.
59/// @param isBranch - If the instruction is a branch instruction
60/// @param Address - The starting address of the instruction
61/// @param Offset - The byte offset to this immediate in the instruction
62/// @param Width - The byte width of this immediate in the instruction
63///
64/// If the getOpInfo() function was set when setupForSymbolicDisassembly() was
65/// called then that function is called to get any symbolic information for the
66/// immediate in the instruction using the Address, Offset and Width. If that
67/// returns non-zero then the symbolic information it returns is used to create
68/// an MCExpr and that is added as an operand to the MCInst. If getOpInfo()
69/// returns zero and isBranch is true then a symbol look up for immediate Value
70/// is done and if a symbol is found an MCExpr is created with that, else
71/// an MCExpr with the immediate Value is created. This function returns true
72/// if it adds an operand to the MCInst and false otherwise.
73static bool tryAddingSymbolicOperand(int64_t Value, bool isBranch,
74 uint64_t Address, uint64_t Offset,
75 uint64_t Width, MCInst &MI,
76 const void *Decoder) {
77 const MCDisassembler *Dis = static_cast<const MCDisassembler*>(Decoder);
78 return Dis->tryAddingSymbolicOperand(MI, Value, Address, isBranch,
79 Offset, Width);
80}
81
Richard Sandifordeb9af292013-05-14 10:17:52 +000082static DecodeStatus decodeRegisterClass(MCInst &Inst, uint64_t RegNo,
Ulrich Weiganda8b04e12015-05-05 19:23:40 +000083 const unsigned *Regs, unsigned Size) {
84 assert(RegNo < Size && "Invalid register");
Richard Sandiford09de0912013-11-13 16:57:53 +000085 RegNo = Regs[RegNo];
86 if (RegNo == 0)
87 return MCDisassembler::Fail;
Jim Grosbache9119e42015-05-13 18:37:00 +000088 Inst.addOperand(MCOperand::createReg(RegNo));
Richard Sandifordeb9af292013-05-14 10:17:52 +000089 return MCDisassembler::Success;
90}
91
92static DecodeStatus DecodeGR32BitRegisterClass(MCInst &Inst, uint64_t RegNo,
93 uint64_t Address,
94 const void *Decoder) {
Ulrich Weiganda8b04e12015-05-05 19:23:40 +000095 return decodeRegisterClass(Inst, RegNo, SystemZMC::GR32Regs, 16);
Richard Sandifordeb9af292013-05-14 10:17:52 +000096}
97
Richard Sandifordf9496062013-09-30 10:45:16 +000098static DecodeStatus DecodeGRH32BitRegisterClass(MCInst &Inst, uint64_t RegNo,
99 uint64_t Address,
100 const void *Decoder) {
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000101 return decodeRegisterClass(Inst, RegNo, SystemZMC::GRH32Regs, 16);
Richard Sandifordf9496062013-09-30 10:45:16 +0000102}
103
Richard Sandifordeb9af292013-05-14 10:17:52 +0000104static DecodeStatus DecodeGR64BitRegisterClass(MCInst &Inst, uint64_t RegNo,
105 uint64_t Address,
106 const void *Decoder) {
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000107 return decodeRegisterClass(Inst, RegNo, SystemZMC::GR64Regs, 16);
Richard Sandifordeb9af292013-05-14 10:17:52 +0000108}
109
110static DecodeStatus DecodeGR128BitRegisterClass(MCInst &Inst, uint64_t RegNo,
111 uint64_t Address,
112 const void *Decoder) {
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000113 return decodeRegisterClass(Inst, RegNo, SystemZMC::GR128Regs, 16);
Richard Sandifordeb9af292013-05-14 10:17:52 +0000114}
115
116static DecodeStatus DecodeADDR64BitRegisterClass(MCInst &Inst, uint64_t RegNo,
117 uint64_t Address,
118 const void *Decoder) {
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000119 return decodeRegisterClass(Inst, RegNo, SystemZMC::GR64Regs, 16);
Richard Sandifordeb9af292013-05-14 10:17:52 +0000120}
121
122static DecodeStatus DecodeFP32BitRegisterClass(MCInst &Inst, uint64_t RegNo,
123 uint64_t Address,
124 const void *Decoder) {
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000125 return decodeRegisterClass(Inst, RegNo, SystemZMC::FP32Regs, 16);
Richard Sandifordeb9af292013-05-14 10:17:52 +0000126}
127
128static DecodeStatus DecodeFP64BitRegisterClass(MCInst &Inst, uint64_t RegNo,
129 uint64_t Address,
130 const void *Decoder) {
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000131 return decodeRegisterClass(Inst, RegNo, SystemZMC::FP64Regs, 16);
Richard Sandifordeb9af292013-05-14 10:17:52 +0000132}
133
134static DecodeStatus DecodeFP128BitRegisterClass(MCInst &Inst, uint64_t RegNo,
135 uint64_t Address,
136 const void *Decoder) {
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000137 return decodeRegisterClass(Inst, RegNo, SystemZMC::FP128Regs, 16);
138}
139
140static DecodeStatus DecodeVR32BitRegisterClass(MCInst &Inst, uint64_t RegNo,
141 uint64_t Address,
142 const void *Decoder) {
143 return decodeRegisterClass(Inst, RegNo, SystemZMC::VR32Regs, 32);
144}
145
146static DecodeStatus DecodeVR64BitRegisterClass(MCInst &Inst, uint64_t RegNo,
147 uint64_t Address,
148 const void *Decoder) {
149 return decodeRegisterClass(Inst, RegNo, SystemZMC::VR64Regs, 32);
150}
151
152static DecodeStatus DecodeVR128BitRegisterClass(MCInst &Inst, uint64_t RegNo,
153 uint64_t Address,
154 const void *Decoder) {
155 return decodeRegisterClass(Inst, RegNo, SystemZMC::VR128Regs, 32);
Richard Sandifordeb9af292013-05-14 10:17:52 +0000156}
157
Ulrich Weigandfffc7112016-11-08 20:15:26 +0000158static DecodeStatus DecodeAR32BitRegisterClass(MCInst &Inst, uint64_t RegNo,
159 uint64_t Address,
160 const void *Decoder) {
161 return decodeRegisterClass(Inst, RegNo, SystemZMC::AR32Regs, 16);
162}
163
Ulrich Weigand03ab2e22017-06-30 20:43:40 +0000164static DecodeStatus DecodeCR64BitRegisterClass(MCInst &Inst, uint64_t RegNo,
165 uint64_t Address,
166 const void *Decoder) {
167 return decodeRegisterClass(Inst, RegNo, SystemZMC::CR64Regs, 16);
168}
169
Richard Sandifordeb9af292013-05-14 10:17:52 +0000170template<unsigned N>
171static DecodeStatus decodeUImmOperand(MCInst &Inst, uint64_t Imm) {
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000172 if (!isUInt<N>(Imm))
173 return MCDisassembler::Fail;
Jim Grosbache9119e42015-05-13 18:37:00 +0000174 Inst.addOperand(MCOperand::createImm(Imm));
Richard Sandifordeb9af292013-05-14 10:17:52 +0000175 return MCDisassembler::Success;
176}
177
178template<unsigned N>
179static DecodeStatus decodeSImmOperand(MCInst &Inst, uint64_t Imm) {
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000180 if (!isUInt<N>(Imm))
181 return MCDisassembler::Fail;
Jim Grosbache9119e42015-05-13 18:37:00 +0000182 Inst.addOperand(MCOperand::createImm(SignExtend64<N>(Imm)));
Richard Sandifordeb9af292013-05-14 10:17:52 +0000183 return MCDisassembler::Success;
184}
185
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000186static DecodeStatus decodeU1ImmOperand(MCInst &Inst, uint64_t Imm,
187 uint64_t Address, const void *Decoder) {
188 return decodeUImmOperand<1>(Inst, Imm);
189}
190
191static DecodeStatus decodeU2ImmOperand(MCInst &Inst, uint64_t Imm,
192 uint64_t Address, const void *Decoder) {
193 return decodeUImmOperand<2>(Inst, Imm);
194}
195
196static DecodeStatus decodeU3ImmOperand(MCInst &Inst, uint64_t Imm,
197 uint64_t Address, const void *Decoder) {
198 return decodeUImmOperand<3>(Inst, Imm);
199}
200
Richard Sandifordeb9af292013-05-14 10:17:52 +0000201static DecodeStatus decodeU4ImmOperand(MCInst &Inst, uint64_t Imm,
202 uint64_t Address, const void *Decoder) {
203 return decodeUImmOperand<4>(Inst, Imm);
204}
205
206static DecodeStatus decodeU6ImmOperand(MCInst &Inst, uint64_t Imm,
207 uint64_t Address, const void *Decoder) {
208 return decodeUImmOperand<6>(Inst, Imm);
209}
210
211static DecodeStatus decodeU8ImmOperand(MCInst &Inst, uint64_t Imm,
212 uint64_t Address, const void *Decoder) {
213 return decodeUImmOperand<8>(Inst, Imm);
214}
215
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000216static DecodeStatus decodeU12ImmOperand(MCInst &Inst, uint64_t Imm,
217 uint64_t Address, const void *Decoder) {
218 return decodeUImmOperand<12>(Inst, Imm);
219}
220
Richard Sandifordeb9af292013-05-14 10:17:52 +0000221static DecodeStatus decodeU16ImmOperand(MCInst &Inst, uint64_t Imm,
222 uint64_t Address, const void *Decoder) {
223 return decodeUImmOperand<16>(Inst, Imm);
224}
225
226static DecodeStatus decodeU32ImmOperand(MCInst &Inst, uint64_t Imm,
227 uint64_t Address, const void *Decoder) {
228 return decodeUImmOperand<32>(Inst, Imm);
229}
230
231static DecodeStatus decodeS8ImmOperand(MCInst &Inst, uint64_t Imm,
232 uint64_t Address, const void *Decoder) {
233 return decodeSImmOperand<8>(Inst, Imm);
234}
235
236static DecodeStatus decodeS16ImmOperand(MCInst &Inst, uint64_t Imm,
237 uint64_t Address, const void *Decoder) {
238 return decodeSImmOperand<16>(Inst, Imm);
239}
240
241static DecodeStatus decodeS32ImmOperand(MCInst &Inst, uint64_t Imm,
242 uint64_t Address, const void *Decoder) {
243 return decodeSImmOperand<32>(Inst, Imm);
244}
245
246template<unsigned N>
247static DecodeStatus decodePCDBLOperand(MCInst &Inst, uint64_t Imm,
Ulrich Weigand6e648ea2016-04-15 19:55:58 +0000248 uint64_t Address,
249 bool isBranch,
250 const void *Decoder) {
Richard Sandifordeb9af292013-05-14 10:17:52 +0000251 assert(isUInt<N>(Imm) && "Invalid PC-relative offset");
Ulrich Weigand6e648ea2016-04-15 19:55:58 +0000252 uint64_t Value = SignExtend64<N>(Imm) * 2 + Address;
253
254 if (!tryAddingSymbolicOperand(Value, isBranch, Address, 2, N / 8,
255 Inst, Decoder))
256 Inst.addOperand(MCOperand::createImm(Value));
257
Richard Sandifordeb9af292013-05-14 10:17:52 +0000258 return MCDisassembler::Success;
259}
260
Ulrich Weigand84404f32016-11-28 14:01:51 +0000261static DecodeStatus decodePC12DBLBranchOperand(MCInst &Inst, uint64_t Imm,
262 uint64_t Address,
263 const void *Decoder) {
264 return decodePCDBLOperand<12>(Inst, Imm, Address, true, Decoder);
265}
266
Ulrich Weigand6e648ea2016-04-15 19:55:58 +0000267static DecodeStatus decodePC16DBLBranchOperand(MCInst &Inst, uint64_t Imm,
268 uint64_t Address,
269 const void *Decoder) {
270 return decodePCDBLOperand<16>(Inst, Imm, Address, true, Decoder);
271}
272
Ulrich Weigand84404f32016-11-28 14:01:51 +0000273static DecodeStatus decodePC24DBLBranchOperand(MCInst &Inst, uint64_t Imm,
274 uint64_t Address,
275 const void *Decoder) {
276 return decodePCDBLOperand<24>(Inst, Imm, Address, true, Decoder);
277}
278
Ulrich Weigand6e648ea2016-04-15 19:55:58 +0000279static DecodeStatus decodePC32DBLBranchOperand(MCInst &Inst, uint64_t Imm,
280 uint64_t Address,
281 const void *Decoder) {
282 return decodePCDBLOperand<32>(Inst, Imm, Address, true, Decoder);
Richard Sandifordeb9af292013-05-14 10:17:52 +0000283}
284
285static DecodeStatus decodePC32DBLOperand(MCInst &Inst, uint64_t Imm,
286 uint64_t Address,
287 const void *Decoder) {
Ulrich Weigand6e648ea2016-04-15 19:55:58 +0000288 return decodePCDBLOperand<32>(Inst, Imm, Address, false, Decoder);
Richard Sandifordeb9af292013-05-14 10:17:52 +0000289}
290
291static DecodeStatus decodeBDAddr12Operand(MCInst &Inst, uint64_t Field,
292 const unsigned *Regs) {
293 uint64_t Base = Field >> 12;
294 uint64_t Disp = Field & 0xfff;
295 assert(Base < 16 && "Invalid BDAddr12");
Jim Grosbache9119e42015-05-13 18:37:00 +0000296 Inst.addOperand(MCOperand::createReg(Base == 0 ? 0 : Regs[Base]));
297 Inst.addOperand(MCOperand::createImm(Disp));
Richard Sandifordeb9af292013-05-14 10:17:52 +0000298 return MCDisassembler::Success;
299}
300
301static DecodeStatus decodeBDAddr20Operand(MCInst &Inst, uint64_t Field,
302 const unsigned *Regs) {
303 uint64_t Base = Field >> 20;
304 uint64_t Disp = ((Field << 12) & 0xff000) | ((Field >> 8) & 0xfff);
305 assert(Base < 16 && "Invalid BDAddr20");
Jim Grosbache9119e42015-05-13 18:37:00 +0000306 Inst.addOperand(MCOperand::createReg(Base == 0 ? 0 : Regs[Base]));
307 Inst.addOperand(MCOperand::createImm(SignExtend64<20>(Disp)));
Richard Sandifordeb9af292013-05-14 10:17:52 +0000308 return MCDisassembler::Success;
309}
310
311static DecodeStatus decodeBDXAddr12Operand(MCInst &Inst, uint64_t Field,
312 const unsigned *Regs) {
313 uint64_t Index = Field >> 16;
314 uint64_t Base = (Field >> 12) & 0xf;
315 uint64_t Disp = Field & 0xfff;
316 assert(Index < 16 && "Invalid BDXAddr12");
Jim Grosbache9119e42015-05-13 18:37:00 +0000317 Inst.addOperand(MCOperand::createReg(Base == 0 ? 0 : Regs[Base]));
318 Inst.addOperand(MCOperand::createImm(Disp));
319 Inst.addOperand(MCOperand::createReg(Index == 0 ? 0 : Regs[Index]));
Richard Sandifordeb9af292013-05-14 10:17:52 +0000320 return MCDisassembler::Success;
321}
322
323static DecodeStatus decodeBDXAddr20Operand(MCInst &Inst, uint64_t Field,
324 const unsigned *Regs) {
325 uint64_t Index = Field >> 24;
326 uint64_t Base = (Field >> 20) & 0xf;
327 uint64_t Disp = ((Field & 0xfff00) >> 8) | ((Field & 0xff) << 12);
328 assert(Index < 16 && "Invalid BDXAddr20");
Jim Grosbache9119e42015-05-13 18:37:00 +0000329 Inst.addOperand(MCOperand::createReg(Base == 0 ? 0 : Regs[Base]));
330 Inst.addOperand(MCOperand::createImm(SignExtend64<20>(Disp)));
331 Inst.addOperand(MCOperand::createReg(Index == 0 ? 0 : Regs[Index]));
Richard Sandifordeb9af292013-05-14 10:17:52 +0000332 return MCDisassembler::Success;
333}
334
Ulrich Weigandc7eb5a92017-05-10 12:42:45 +0000335static DecodeStatus decodeBDLAddr12Len4Operand(MCInst &Inst, uint64_t Field,
336 const unsigned *Regs) {
337 uint64_t Length = Field >> 16;
338 uint64_t Base = (Field >> 12) & 0xf;
339 uint64_t Disp = Field & 0xfff;
340 assert(Length < 16 && "Invalid BDLAddr12Len4");
341 Inst.addOperand(MCOperand::createReg(Base == 0 ? 0 : Regs[Base]));
342 Inst.addOperand(MCOperand::createImm(Disp));
343 Inst.addOperand(MCOperand::createImm(Length + 1));
344 return MCDisassembler::Success;
345}
346
Richard Sandiford1d959002013-07-02 14:56:45 +0000347static DecodeStatus decodeBDLAddr12Len8Operand(MCInst &Inst, uint64_t Field,
348 const unsigned *Regs) {
349 uint64_t Length = Field >> 16;
350 uint64_t Base = (Field >> 12) & 0xf;
351 uint64_t Disp = Field & 0xfff;
352 assert(Length < 256 && "Invalid BDLAddr12Len8");
Jim Grosbache9119e42015-05-13 18:37:00 +0000353 Inst.addOperand(MCOperand::createReg(Base == 0 ? 0 : Regs[Base]));
354 Inst.addOperand(MCOperand::createImm(Disp));
355 Inst.addOperand(MCOperand::createImm(Length + 1));
Richard Sandiford1d959002013-07-02 14:56:45 +0000356 return MCDisassembler::Success;
357}
358
Ulrich Weigandec5d7792016-10-31 14:21:36 +0000359static DecodeStatus decodeBDRAddr12Operand(MCInst &Inst, uint64_t Field,
360 const unsigned *Regs) {
361 uint64_t Length = Field >> 16;
362 uint64_t Base = (Field >> 12) & 0xf;
363 uint64_t Disp = Field & 0xfff;
364 assert(Length < 16 && "Invalid BDRAddr12");
365 Inst.addOperand(MCOperand::createReg(Base == 0 ? 0 : Regs[Base]));
366 Inst.addOperand(MCOperand::createImm(Disp));
367 Inst.addOperand(MCOperand::createReg(Regs[Length]));
368 return MCDisassembler::Success;
369}
370
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000371static DecodeStatus decodeBDVAddr12Operand(MCInst &Inst, uint64_t Field,
372 const unsigned *Regs) {
373 uint64_t Index = Field >> 16;
374 uint64_t Base = (Field >> 12) & 0xf;
375 uint64_t Disp = Field & 0xfff;
376 assert(Index < 32 && "Invalid BDVAddr12");
Jim Grosbache9119e42015-05-13 18:37:00 +0000377 Inst.addOperand(MCOperand::createReg(Base == 0 ? 0 : Regs[Base]));
378 Inst.addOperand(MCOperand::createImm(Disp));
379 Inst.addOperand(MCOperand::createReg(SystemZMC::VR128Regs[Index]));
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000380 return MCDisassembler::Success;
381}
382
Richard Sandifordeb9af292013-05-14 10:17:52 +0000383static DecodeStatus decodeBDAddr32Disp12Operand(MCInst &Inst, uint64_t Field,
384 uint64_t Address,
385 const void *Decoder) {
386 return decodeBDAddr12Operand(Inst, Field, SystemZMC::GR32Regs);
387}
388
389static DecodeStatus decodeBDAddr32Disp20Operand(MCInst &Inst, uint64_t Field,
390 uint64_t Address,
391 const void *Decoder) {
392 return decodeBDAddr20Operand(Inst, Field, SystemZMC::GR32Regs);
393}
394
395static DecodeStatus decodeBDAddr64Disp12Operand(MCInst &Inst, uint64_t Field,
396 uint64_t Address,
397 const void *Decoder) {
398 return decodeBDAddr12Operand(Inst, Field, SystemZMC::GR64Regs);
399}
400
401static DecodeStatus decodeBDAddr64Disp20Operand(MCInst &Inst, uint64_t Field,
402 uint64_t Address,
403 const void *Decoder) {
404 return decodeBDAddr20Operand(Inst, Field, SystemZMC::GR64Regs);
405}
406
407static DecodeStatus decodeBDXAddr64Disp12Operand(MCInst &Inst, uint64_t Field,
408 uint64_t Address,
409 const void *Decoder) {
410 return decodeBDXAddr12Operand(Inst, Field, SystemZMC::GR64Regs);
411}
412
413static DecodeStatus decodeBDXAddr64Disp20Operand(MCInst &Inst, uint64_t Field,
414 uint64_t Address,
415 const void *Decoder) {
416 return decodeBDXAddr20Operand(Inst, Field, SystemZMC::GR64Regs);
417}
418
Ulrich Weigandc7eb5a92017-05-10 12:42:45 +0000419static DecodeStatus decodeBDLAddr64Disp12Len4Operand(MCInst &Inst,
420 uint64_t Field,
421 uint64_t Address,
422 const void *Decoder) {
423 return decodeBDLAddr12Len4Operand(Inst, Field, SystemZMC::GR64Regs);
424}
425
Richard Sandiford1d959002013-07-02 14:56:45 +0000426static DecodeStatus decodeBDLAddr64Disp12Len8Operand(MCInst &Inst,
427 uint64_t Field,
428 uint64_t Address,
429 const void *Decoder) {
430 return decodeBDLAddr12Len8Operand(Inst, Field, SystemZMC::GR64Regs);
431}
432
Ulrich Weigandec5d7792016-10-31 14:21:36 +0000433static DecodeStatus decodeBDRAddr64Disp12Operand(MCInst &Inst,
434 uint64_t Field,
435 uint64_t Address,
436 const void *Decoder) {
437 return decodeBDRAddr12Operand(Inst, Field, SystemZMC::GR64Regs);
438}
439
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000440static DecodeStatus decodeBDVAddr64Disp12Operand(MCInst &Inst, uint64_t Field,
441 uint64_t Address,
442 const void *Decoder) {
443 return decodeBDVAddr12Operand(Inst, Field, SystemZMC::GR64Regs);
444}
445
Richard Sandifordeb9af292013-05-14 10:17:52 +0000446#include "SystemZGenDisassemblerTables.inc"
447
448DecodeStatus SystemZDisassembler::getInstruction(MCInst &MI, uint64_t &Size,
Rafael Espindola7fc5b872014-11-12 02:04:27 +0000449 ArrayRef<uint8_t> Bytes,
Richard Sandifordeb9af292013-05-14 10:17:52 +0000450 uint64_t Address,
Rafael Espindola4aa6bea2014-11-10 18:11:10 +0000451 raw_ostream &OS,
452 raw_ostream &CS) const {
Richard Sandifordeb9af292013-05-14 10:17:52 +0000453 // Get the first two bytes of the instruction.
Richard Sandifordeb9af292013-05-14 10:17:52 +0000454 Size = 0;
Rafael Espindola7fc5b872014-11-12 02:04:27 +0000455 if (Bytes.size() < 2)
Richard Sandifordeb9af292013-05-14 10:17:52 +0000456 return MCDisassembler::Fail;
457
458 // The top 2 bits of the first byte specify the size.
459 const uint8_t *Table;
460 if (Bytes[0] < 0x40) {
461 Size = 2;
462 Table = DecoderTable16;
463 } else if (Bytes[0] < 0xc0) {
464 Size = 4;
465 Table = DecoderTable32;
466 } else {
467 Size = 6;
468 Table = DecoderTable48;
469 }
470
471 // Read any remaining bytes.
Rafael Espindola7fc5b872014-11-12 02:04:27 +0000472 if (Bytes.size() < Size)
Richard Sandifordeb9af292013-05-14 10:17:52 +0000473 return MCDisassembler::Fail;
474
475 // Construct the instruction.
476 uint64_t Inst = 0;
477 for (uint64_t I = 0; I < Size; ++I)
478 Inst = (Inst << 8) | Bytes[I];
479
480 return decodeInstruction(Table, MI, Inst, Address, this, STI);
481}