blob: cf73d861fa4d78b6b1af60d535e3bc97acd97734 [file] [log] [blame]
Chris Lattner5ffe38e2010-11-15 04:16:32 +00001//===-- PPCMCCodeEmitter.cpp - Convert PPC code to machine code -----------===//
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 the PPCMCCodeEmitter class.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "mccodeemitter"
15#include "PPC.h"
Chris Lattnera04084e2010-11-15 04:51:55 +000016#include "PPCRegisterInfo.h"
Chris Lattnera9d9ab92010-11-15 05:57:53 +000017#include "PPCFixupKinds.h"
Chris Lattner5ffe38e2010-11-15 04:16:32 +000018#include "llvm/MC/MCCodeEmitter.h"
19#include "llvm/MC/MCInst.h"
20#include "llvm/ADT/Statistic.h"
21#include "llvm/Support/raw_ostream.h"
22#include "llvm/Support/ErrorHandling.h"
23using namespace llvm;
24
25STATISTIC(MCNumEmitted, "Number of MC instructions emitted");
26
27namespace {
28class PPCMCCodeEmitter : public MCCodeEmitter {
29 PPCMCCodeEmitter(const PPCMCCodeEmitter &); // DO NOT IMPLEMENT
30 void operator=(const PPCMCCodeEmitter &); // DO NOT IMPLEMENT
Chris Lattner5ffe38e2010-11-15 04:16:32 +000031
32public:
Evan Cheng59ee62d2011-07-11 03:57:24 +000033 PPCMCCodeEmitter(const MCInstrInfo &mcii, const MCSubtargetInfo &sti,
Evan Chengaf0a2e62011-07-11 21:24:15 +000034 MCContext &ctx) {
Chris Lattner5ffe38e2010-11-15 04:16:32 +000035 }
36
37 ~PPCMCCodeEmitter() {}
Chris Lattner7192eb82010-11-15 05:19:25 +000038
Chris Lattner8d704112010-11-15 06:09:35 +000039 unsigned getDirectBrEncoding(const MCInst &MI, unsigned OpNo,
40 SmallVectorImpl<MCFixup> &Fixups) const;
Chris Lattner8d704112010-11-15 06:09:35 +000041 unsigned getCondBrEncoding(const MCInst &MI, unsigned OpNo,
42 SmallVectorImpl<MCFixup> &Fixups) const;
Chris Lattner85cf7d72010-11-15 06:33:39 +000043 unsigned getHA16Encoding(const MCInst &MI, unsigned OpNo,
44 SmallVectorImpl<MCFixup> &Fixups) const;
45 unsigned getLO16Encoding(const MCInst &MI, unsigned OpNo,
46 SmallVectorImpl<MCFixup> &Fixups) const;
Chris Lattnerb7035d02010-11-15 08:22:03 +000047 unsigned getMemRIEncoding(const MCInst &MI, unsigned OpNo,
48 SmallVectorImpl<MCFixup> &Fixups) const;
Chris Lattner17e2c182010-11-15 08:02:41 +000049 unsigned getMemRIXEncoding(const MCInst &MI, unsigned OpNo,
50 SmallVectorImpl<MCFixup> &Fixups) const;
Chris Lattner7192eb82010-11-15 05:19:25 +000051 unsigned get_crbitm_encoding(const MCInst &MI, unsigned OpNo,
52 SmallVectorImpl<MCFixup> &Fixups) const;
53
Chris Lattner5ffe38e2010-11-15 04:16:32 +000054 /// getMachineOpValue - Return binary encoding of operand. If the machine
55 /// operand requires relocation, record the relocation and return zero.
56 unsigned getMachineOpValue(const MCInst &MI,const MCOperand &MO,
57 SmallVectorImpl<MCFixup> &Fixups) const;
Chris Lattner5ffe38e2010-11-15 04:16:32 +000058
59 // getBinaryCodeForInstr - TableGen'erated function for getting the
60 // binary encoding for an instruction.
61 unsigned getBinaryCodeForInstr(const MCInst &MI,
62 SmallVectorImpl<MCFixup> &Fixups) const;
63 void EncodeInstruction(const MCInst &MI, raw_ostream &OS,
64 SmallVectorImpl<MCFixup> &Fixups) const {
65 unsigned Bits = getBinaryCodeForInstr(MI, Fixups);
66
67 // Output the constant in big endian byte order.
68 for (unsigned i = 0; i != 4; ++i) {
69 OS << (char)(Bits >> 24);
70 Bits <<= 8;
71 }
72
73 ++MCNumEmitted; // Keep track of the # of mi's emitted.
74 }
75
76};
77
78} // end anonymous namespace
79
Evan Cheng59ee62d2011-07-11 03:57:24 +000080MCCodeEmitter *llvm::createPPCMCCodeEmitter(const MCInstrInfo &MCII,
81 const MCSubtargetInfo &STI,
Chris Lattner5ffe38e2010-11-15 04:16:32 +000082 MCContext &Ctx) {
Evan Cheng59ee62d2011-07-11 03:57:24 +000083 return new PPCMCCodeEmitter(MCII, STI, Ctx);
Chris Lattner5ffe38e2010-11-15 04:16:32 +000084}
85
86unsigned PPCMCCodeEmitter::
Chris Lattner8d704112010-11-15 06:09:35 +000087getDirectBrEncoding(const MCInst &MI, unsigned OpNo,
88 SmallVectorImpl<MCFixup> &Fixups) const {
Chris Lattnera9d9ab92010-11-15 05:57:53 +000089 const MCOperand &MO = MI.getOperand(OpNo);
90 if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups);
91
92 // Add a fixup for the branch target.
93 Fixups.push_back(MCFixup::Create(0, MO.getExpr(),
94 (MCFixupKind)PPC::fixup_ppc_br24));
95 return 0;
96}
97
Chris Lattner8d704112010-11-15 06:09:35 +000098unsigned PPCMCCodeEmitter::getCondBrEncoding(const MCInst &MI, unsigned OpNo,
99 SmallVectorImpl<MCFixup> &Fixups) const {
100 const MCOperand &MO = MI.getOperand(OpNo);
101 if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups);
102
Chris Lattnerb7194372010-11-15 06:12:22 +0000103 // Add a fixup for the branch target.
104 Fixups.push_back(MCFixup::Create(0, MO.getExpr(),
105 (MCFixupKind)PPC::fixup_ppc_brcond14));
Chris Lattner8d704112010-11-15 06:09:35 +0000106 return 0;
107}
108
Chris Lattner85cf7d72010-11-15 06:33:39 +0000109unsigned PPCMCCodeEmitter::getHA16Encoding(const MCInst &MI, unsigned OpNo,
110 SmallVectorImpl<MCFixup> &Fixups) const {
111 const MCOperand &MO = MI.getOperand(OpNo);
112 if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups);
113
114 // Add a fixup for the branch target.
115 Fixups.push_back(MCFixup::Create(0, MO.getExpr(),
116 (MCFixupKind)PPC::fixup_ppc_ha16));
117 return 0;
118}
119
120unsigned PPCMCCodeEmitter::getLO16Encoding(const MCInst &MI, unsigned OpNo,
121 SmallVectorImpl<MCFixup> &Fixups) const {
122 const MCOperand &MO = MI.getOperand(OpNo);
123 if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups);
124
125 // Add a fixup for the branch target.
126 Fixups.push_back(MCFixup::Create(0, MO.getExpr(),
127 (MCFixupKind)PPC::fixup_ppc_lo16));
128 return 0;
129}
130
Chris Lattnerb7035d02010-11-15 08:22:03 +0000131unsigned PPCMCCodeEmitter::getMemRIEncoding(const MCInst &MI, unsigned OpNo,
132 SmallVectorImpl<MCFixup> &Fixups) const {
133 // Encode (imm, reg) as a memri, which has the low 16-bits as the
134 // displacement and the next 5 bits as the register #.
135 assert(MI.getOperand(OpNo+1).isReg());
136 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups) << 16;
137
138 const MCOperand &MO = MI.getOperand(OpNo);
139 if (MO.isImm())
140 return (getMachineOpValue(MI, MO, Fixups) & 0xFFFF) | RegBits;
141
142 // Add a fixup for the displacement field.
143 Fixups.push_back(MCFixup::Create(0, MO.getExpr(),
144 (MCFixupKind)PPC::fixup_ppc_lo16));
145 return RegBits;
146}
147
148
Chris Lattner17e2c182010-11-15 08:02:41 +0000149unsigned PPCMCCodeEmitter::getMemRIXEncoding(const MCInst &MI, unsigned OpNo,
Chris Lattner85cf7d72010-11-15 06:33:39 +0000150 SmallVectorImpl<MCFixup> &Fixups) const {
Chris Lattner17e2c182010-11-15 08:02:41 +0000151 // Encode (imm, reg) as a memrix, which has the low 14-bits as the
152 // displacement and the next 5 bits as the register #.
Chris Lattnerb7035d02010-11-15 08:22:03 +0000153 assert(MI.getOperand(OpNo+1).isReg());
Chris Lattner17e2c182010-11-15 08:02:41 +0000154 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups) << 14;
155
Chris Lattner85cf7d72010-11-15 06:33:39 +0000156 const MCOperand &MO = MI.getOperand(OpNo);
Chris Lattner17e2c182010-11-15 08:02:41 +0000157 if (MO.isImm())
158 return (getMachineOpValue(MI, MO, Fixups) & 0x3FFF) | RegBits;
Chris Lattner85cf7d72010-11-15 06:33:39 +0000159
160 // Add a fixup for the branch target.
161 Fixups.push_back(MCFixup::Create(0, MO.getExpr(),
162 (MCFixupKind)PPC::fixup_ppc_lo14));
Chris Lattner17e2c182010-11-15 08:02:41 +0000163 return RegBits;
Chris Lattner85cf7d72010-11-15 06:33:39 +0000164}
165
Chris Lattner8d704112010-11-15 06:09:35 +0000166
Chris Lattnera9d9ab92010-11-15 05:57:53 +0000167unsigned PPCMCCodeEmitter::
Chris Lattner7192eb82010-11-15 05:19:25 +0000168get_crbitm_encoding(const MCInst &MI, unsigned OpNo,
169 SmallVectorImpl<MCFixup> &Fixups) const {
170 const MCOperand &MO = MI.getOperand(OpNo);
171 assert((MI.getOpcode() == PPC::MTCRF || MI.getOpcode() == PPC::MFOCRF) &&
172 (MO.getReg() >= PPC::CR0 && MO.getReg() <= PPC::CR7));
173 return 0x80 >> PPCRegisterInfo::getRegisterNumbering(MO.getReg());
174}
175
176
177unsigned PPCMCCodeEmitter::
Chris Lattner5ffe38e2010-11-15 04:16:32 +0000178getMachineOpValue(const MCInst &MI, const MCOperand &MO,
179 SmallVectorImpl<MCFixup> &Fixups) const {
Chris Lattner7192eb82010-11-15 05:19:25 +0000180 if (MO.isReg()) {
Chris Lattner0382a4c2010-11-16 00:57:32 +0000181 // MTCRF/MFOCRF should go through get_crbitm_encoding for the CR operand.
182 // The GPR operand should come through here though.
Chris Lattnerb69cdfa2010-11-16 00:55:51 +0000183 assert((MI.getOpcode() != PPC::MTCRF && MI.getOpcode() != PPC::MFOCRF) ||
184 MO.getReg() < PPC::CR0 || MO.getReg() > PPC::CR7);
Chris Lattnera04084e2010-11-15 04:51:55 +0000185 return PPCRegisterInfo::getRegisterNumbering(MO.getReg());
Chris Lattner7192eb82010-11-15 05:19:25 +0000186 }
Chris Lattnera04084e2010-11-15 04:51:55 +0000187
Chris Lattnerb7035d02010-11-15 08:22:03 +0000188 assert(MO.isImm() &&
189 "Relocation required in an instruction that we cannot encode!");
190 return MO.getImm();
Chris Lattner5ffe38e2010-11-15 04:16:32 +0000191}
192
193
194#include "PPCGenMCCodeEmitter.inc"