Chris Lattner | 5ffe38e | 2010-11-15 04:16:32 +0000 | [diff] [blame] | 1 | //===-- 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 Lattner | a04084e | 2010-11-15 04:51:55 +0000 | [diff] [blame] | 16 | #include "PPCRegisterInfo.h" |
Chris Lattner | a9d9ab9 | 2010-11-15 05:57:53 +0000 | [diff] [blame] | 17 | #include "PPCFixupKinds.h" |
Chris Lattner | 5ffe38e | 2010-11-15 04:16:32 +0000 | [diff] [blame] | 18 | #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" |
| 23 | using namespace llvm; |
| 24 | |
| 25 | STATISTIC(MCNumEmitted, "Number of MC instructions emitted"); |
| 26 | |
| 27 | namespace { |
| 28 | class PPCMCCodeEmitter : public MCCodeEmitter { |
| 29 | PPCMCCodeEmitter(const PPCMCCodeEmitter &); // DO NOT IMPLEMENT |
| 30 | void operator=(const PPCMCCodeEmitter &); // DO NOT IMPLEMENT |
| 31 | const TargetMachine &TM; |
| 32 | MCContext &Ctx; |
| 33 | |
| 34 | public: |
| 35 | PPCMCCodeEmitter(TargetMachine &tm, MCContext &ctx) |
| 36 | : TM(tm), Ctx(ctx) { |
| 37 | } |
| 38 | |
| 39 | ~PPCMCCodeEmitter() {} |
| 40 | |
Chris Lattner | a9d9ab9 | 2010-11-15 05:57:53 +0000 | [diff] [blame] | 41 | unsigned getNumFixupKinds() const { return PPC::NumTargetFixupKinds; } |
Chris Lattner | 5ffe38e | 2010-11-15 04:16:32 +0000 | [diff] [blame] | 42 | |
| 43 | const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const { |
| 44 | const static MCFixupKindInfo Infos[] = { |
Chris Lattner | 5ffe38e | 2010-11-15 04:16:32 +0000 | [diff] [blame] | 45 | // name offset bits flags |
Chris Lattner | b719437 | 2010-11-15 06:12:22 +0000 | [diff] [blame] | 46 | { "fixup_ppc_br24", 6, 24, MCFixupKindInfo::FKF_IsPCRel }, |
Chris Lattner | 85cf7d7 | 2010-11-15 06:33:39 +0000 | [diff] [blame^] | 47 | { "fixup_ppc_brcond14", 16, 14, MCFixupKindInfo::FKF_IsPCRel }, |
| 48 | { "fixup_ppc_lo16", 16, 16, 0 }, |
| 49 | { "fixup_ppc_ha16", 16, 16, 0 }, |
| 50 | { "fixup_ppc_lo14", 16, 14, 0 } |
Chris Lattner | 5ffe38e | 2010-11-15 04:16:32 +0000 | [diff] [blame] | 51 | }; |
| 52 | |
| 53 | if (Kind < FirstTargetFixupKind) |
| 54 | return MCCodeEmitter::getFixupKindInfo(Kind); |
| 55 | |
| 56 | assert(unsigned(Kind - FirstTargetFixupKind) < getNumFixupKinds() && |
| 57 | "Invalid kind!"); |
| 58 | return Infos[Kind - FirstTargetFixupKind]; |
| 59 | } |
Chris Lattner | 7192eb8 | 2010-11-15 05:19:25 +0000 | [diff] [blame] | 60 | |
Chris Lattner | 8d70411 | 2010-11-15 06:09:35 +0000 | [diff] [blame] | 61 | unsigned getDirectBrEncoding(const MCInst &MI, unsigned OpNo, |
| 62 | SmallVectorImpl<MCFixup> &Fixups) const; |
Chris Lattner | 8d70411 | 2010-11-15 06:09:35 +0000 | [diff] [blame] | 63 | unsigned getCondBrEncoding(const MCInst &MI, unsigned OpNo, |
| 64 | SmallVectorImpl<MCFixup> &Fixups) const; |
Chris Lattner | 85cf7d7 | 2010-11-15 06:33:39 +0000 | [diff] [blame^] | 65 | unsigned getHA16Encoding(const MCInst &MI, unsigned OpNo, |
| 66 | SmallVectorImpl<MCFixup> &Fixups) const; |
| 67 | unsigned getLO16Encoding(const MCInst &MI, unsigned OpNo, |
| 68 | SmallVectorImpl<MCFixup> &Fixups) const; |
| 69 | unsigned getLO14Encoding(const MCInst &MI, unsigned OpNo, |
| 70 | SmallVectorImpl<MCFixup> &Fixups) const; |
Chris Lattner | 7192eb8 | 2010-11-15 05:19:25 +0000 | [diff] [blame] | 71 | unsigned get_crbitm_encoding(const MCInst &MI, unsigned OpNo, |
| 72 | SmallVectorImpl<MCFixup> &Fixups) const; |
| 73 | |
Chris Lattner | 5ffe38e | 2010-11-15 04:16:32 +0000 | [diff] [blame] | 74 | /// getMachineOpValue - Return binary encoding of operand. If the machine |
| 75 | /// operand requires relocation, record the relocation and return zero. |
| 76 | unsigned getMachineOpValue(const MCInst &MI,const MCOperand &MO, |
| 77 | SmallVectorImpl<MCFixup> &Fixups) const; |
Chris Lattner | 5ffe38e | 2010-11-15 04:16:32 +0000 | [diff] [blame] | 78 | |
| 79 | // getBinaryCodeForInstr - TableGen'erated function for getting the |
| 80 | // binary encoding for an instruction. |
| 81 | unsigned getBinaryCodeForInstr(const MCInst &MI, |
| 82 | SmallVectorImpl<MCFixup> &Fixups) const; |
| 83 | void EncodeInstruction(const MCInst &MI, raw_ostream &OS, |
| 84 | SmallVectorImpl<MCFixup> &Fixups) const { |
| 85 | unsigned Bits = getBinaryCodeForInstr(MI, Fixups); |
| 86 | |
| 87 | // Output the constant in big endian byte order. |
| 88 | for (unsigned i = 0; i != 4; ++i) { |
| 89 | OS << (char)(Bits >> 24); |
| 90 | Bits <<= 8; |
| 91 | } |
| 92 | |
| 93 | ++MCNumEmitted; // Keep track of the # of mi's emitted. |
| 94 | } |
| 95 | |
| 96 | }; |
| 97 | |
| 98 | } // end anonymous namespace |
| 99 | |
| 100 | MCCodeEmitter *llvm::createPPCMCCodeEmitter(const Target &, TargetMachine &TM, |
| 101 | MCContext &Ctx) { |
| 102 | return new PPCMCCodeEmitter(TM, Ctx); |
| 103 | } |
| 104 | |
| 105 | unsigned PPCMCCodeEmitter:: |
Chris Lattner | 8d70411 | 2010-11-15 06:09:35 +0000 | [diff] [blame] | 106 | getDirectBrEncoding(const MCInst &MI, unsigned OpNo, |
| 107 | SmallVectorImpl<MCFixup> &Fixups) const { |
Chris Lattner | a9d9ab9 | 2010-11-15 05:57:53 +0000 | [diff] [blame] | 108 | const MCOperand &MO = MI.getOperand(OpNo); |
| 109 | if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups); |
| 110 | |
| 111 | // Add a fixup for the branch target. |
| 112 | Fixups.push_back(MCFixup::Create(0, MO.getExpr(), |
| 113 | (MCFixupKind)PPC::fixup_ppc_br24)); |
| 114 | return 0; |
| 115 | } |
| 116 | |
Chris Lattner | 8d70411 | 2010-11-15 06:09:35 +0000 | [diff] [blame] | 117 | unsigned PPCMCCodeEmitter::getCondBrEncoding(const MCInst &MI, unsigned OpNo, |
| 118 | SmallVectorImpl<MCFixup> &Fixups) const { |
| 119 | const MCOperand &MO = MI.getOperand(OpNo); |
| 120 | if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups); |
| 121 | |
Chris Lattner | b719437 | 2010-11-15 06:12:22 +0000 | [diff] [blame] | 122 | // Add a fixup for the branch target. |
| 123 | Fixups.push_back(MCFixup::Create(0, MO.getExpr(), |
| 124 | (MCFixupKind)PPC::fixup_ppc_brcond14)); |
Chris Lattner | 8d70411 | 2010-11-15 06:09:35 +0000 | [diff] [blame] | 125 | return 0; |
| 126 | } |
| 127 | |
Chris Lattner | 85cf7d7 | 2010-11-15 06:33:39 +0000 | [diff] [blame^] | 128 | unsigned PPCMCCodeEmitter::getHA16Encoding(const MCInst &MI, unsigned OpNo, |
| 129 | SmallVectorImpl<MCFixup> &Fixups) const { |
| 130 | const MCOperand &MO = MI.getOperand(OpNo); |
| 131 | if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups); |
| 132 | |
| 133 | // Add a fixup for the branch target. |
| 134 | Fixups.push_back(MCFixup::Create(0, MO.getExpr(), |
| 135 | (MCFixupKind)PPC::fixup_ppc_ha16)); |
| 136 | return 0; |
| 137 | } |
| 138 | |
| 139 | unsigned PPCMCCodeEmitter::getLO16Encoding(const MCInst &MI, unsigned OpNo, |
| 140 | SmallVectorImpl<MCFixup> &Fixups) const { |
| 141 | const MCOperand &MO = MI.getOperand(OpNo); |
| 142 | if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups); |
| 143 | |
| 144 | // Add a fixup for the branch target. |
| 145 | Fixups.push_back(MCFixup::Create(0, MO.getExpr(), |
| 146 | (MCFixupKind)PPC::fixup_ppc_lo16)); |
| 147 | return 0; |
| 148 | } |
| 149 | |
| 150 | unsigned PPCMCCodeEmitter::getLO14Encoding(const MCInst &MI, unsigned OpNo, |
| 151 | SmallVectorImpl<MCFixup> &Fixups) const { |
| 152 | const MCOperand &MO = MI.getOperand(OpNo); |
| 153 | if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups); |
| 154 | |
| 155 | // Add a fixup for the branch target. |
| 156 | Fixups.push_back(MCFixup::Create(0, MO.getExpr(), |
| 157 | (MCFixupKind)PPC::fixup_ppc_lo14)); |
| 158 | return 0; |
| 159 | } |
| 160 | |
Chris Lattner | 8d70411 | 2010-11-15 06:09:35 +0000 | [diff] [blame] | 161 | |
Chris Lattner | a9d9ab9 | 2010-11-15 05:57:53 +0000 | [diff] [blame] | 162 | unsigned PPCMCCodeEmitter:: |
Chris Lattner | 7192eb8 | 2010-11-15 05:19:25 +0000 | [diff] [blame] | 163 | get_crbitm_encoding(const MCInst &MI, unsigned OpNo, |
| 164 | SmallVectorImpl<MCFixup> &Fixups) const { |
| 165 | const MCOperand &MO = MI.getOperand(OpNo); |
| 166 | assert((MI.getOpcode() == PPC::MTCRF || MI.getOpcode() == PPC::MFOCRF) && |
| 167 | (MO.getReg() >= PPC::CR0 && MO.getReg() <= PPC::CR7)); |
| 168 | return 0x80 >> PPCRegisterInfo::getRegisterNumbering(MO.getReg()); |
| 169 | } |
| 170 | |
| 171 | |
| 172 | unsigned PPCMCCodeEmitter:: |
Chris Lattner | 5ffe38e | 2010-11-15 04:16:32 +0000 | [diff] [blame] | 173 | getMachineOpValue(const MCInst &MI, const MCOperand &MO, |
| 174 | SmallVectorImpl<MCFixup> &Fixups) const { |
Chris Lattner | 7192eb8 | 2010-11-15 05:19:25 +0000 | [diff] [blame] | 175 | if (MO.isReg()) { |
| 176 | assert(MI.getOpcode() != PPC::MTCRF && MI.getOpcode() != PPC::MFOCRF); |
Chris Lattner | a04084e | 2010-11-15 04:51:55 +0000 | [diff] [blame] | 177 | return PPCRegisterInfo::getRegisterNumbering(MO.getReg()); |
Chris Lattner | 7192eb8 | 2010-11-15 05:19:25 +0000 | [diff] [blame] | 178 | } |
Chris Lattner | a04084e | 2010-11-15 04:51:55 +0000 | [diff] [blame] | 179 | |
| 180 | if (MO.isImm()) |
| 181 | return MO.getImm(); |
| 182 | |
Chris Lattner | 5ffe38e | 2010-11-15 04:16:32 +0000 | [diff] [blame] | 183 | // FIXME. |
| 184 | return 0; |
| 185 | } |
| 186 | |
| 187 | |
| 188 | #include "PPCGenMCCodeEmitter.inc" |