1 //===-- PPCMCTargetDesc.cpp - PowerPC Target Descriptions -----------------===// 2 // 3 // 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 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file provides PowerPC specific target descriptions. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "MCTargetDesc/PPCMCTargetDesc.h" 14 #include "MCTargetDesc/PPCInstPrinter.h" 15 #include "MCTargetDesc/PPCMCAsmInfo.h" 16 #include "PPCELFStreamer.h" 17 #include "PPCTargetStreamer.h" 18 #include "TargetInfo/PowerPCTargetInfo.h" 19 #include "llvm/ADT/SmallPtrSet.h" 20 #include "llvm/ADT/StringRef.h" 21 #include "llvm/ADT/Triple.h" 22 #include "llvm/BinaryFormat/ELF.h" 23 #include "llvm/MC/MCAssembler.h" 24 #include "llvm/MC/MCAsmBackend.h" 25 #include "llvm/MC/MCCodeEmitter.h" 26 #include "llvm/MC/MCContext.h" 27 #include "llvm/MC/MCDwarf.h" 28 #include "llvm/MC/MCELFStreamer.h" 29 #include "llvm/MC/MCExpr.h" 30 #include "llvm/MC/MCInstrInfo.h" 31 #include "llvm/MC/MCObjectWriter.h" 32 #include "llvm/MC/MCRegisterInfo.h" 33 #include "llvm/MC/MCStreamer.h" 34 #include "llvm/MC/MCSubtargetInfo.h" 35 #include "llvm/MC/MCSymbol.h" 36 #include "llvm/MC/MCSymbolELF.h" 37 #include "llvm/MC/MCSymbolXCOFF.h" 38 #include "llvm/Support/Casting.h" 39 #include "llvm/Support/CodeGen.h" 40 #include "llvm/Support/ErrorHandling.h" 41 #include "llvm/Support/FormattedStream.h" 42 #include "llvm/Support/TargetRegistry.h" 43 #include "llvm/Support/raw_ostream.h" 44 45 using namespace llvm; 46 47 #define GET_INSTRINFO_MC_DESC 48 #include "PPCGenInstrInfo.inc" 49 50 #define GET_SUBTARGETINFO_MC_DESC 51 #include "PPCGenSubtargetInfo.inc" 52 53 #define GET_REGINFO_MC_DESC 54 #include "PPCGenRegisterInfo.inc" 55 56 PPCTargetStreamer::PPCTargetStreamer(MCStreamer &S) : MCTargetStreamer(S) {} 57 58 // Pin the vtable to this file. 59 PPCTargetStreamer::~PPCTargetStreamer() = default; 60 61 static MCInstrInfo *createPPCMCInstrInfo() { 62 MCInstrInfo *X = new MCInstrInfo(); 63 InitPPCMCInstrInfo(X); 64 return X; 65 } 66 67 static MCRegisterInfo *createPPCMCRegisterInfo(const Triple &TT) { 68 bool isPPC64 = 69 (TT.getArch() == Triple::ppc64 || TT.getArch() == Triple::ppc64le); 70 unsigned Flavour = isPPC64 ? 0 : 1; 71 unsigned RA = isPPC64 ? PPC::LR8 : PPC::LR; 72 73 MCRegisterInfo *X = new MCRegisterInfo(); 74 InitPPCMCRegisterInfo(X, RA, Flavour, Flavour); 75 return X; 76 } 77 78 static MCSubtargetInfo *createPPCMCSubtargetInfo(const Triple &TT, 79 StringRef CPU, StringRef FS) { 80 return createPPCMCSubtargetInfoImpl(TT, CPU, FS); 81 } 82 83 static MCAsmInfo *createPPCMCAsmInfo(const MCRegisterInfo &MRI, 84 const Triple &TheTriple, 85 const MCTargetOptions &Options) { 86 bool isPPC64 = (TheTriple.getArch() == Triple::ppc64 || 87 TheTriple.getArch() == Triple::ppc64le); 88 89 MCAsmInfo *MAI; 90 if (TheTriple.isOSBinFormatXCOFF()) 91 MAI = new PPCXCOFFMCAsmInfo(isPPC64, TheTriple); 92 else 93 MAI = new PPCELFMCAsmInfo(isPPC64, TheTriple); 94 95 // Initial state of the frame pointer is R1. 96 unsigned Reg = isPPC64 ? PPC::X1 : PPC::R1; 97 MCCFIInstruction Inst = 98 MCCFIInstruction::createDefCfa(nullptr, MRI.getDwarfRegNum(Reg, true), 0); 99 MAI->addInitialFrameState(Inst); 100 101 return MAI; 102 } 103 104 static MCStreamer *createPPCMCStreamer(const Triple &T, MCContext &Context, 105 std::unique_ptr<MCAsmBackend> &&MAB, 106 std::unique_ptr<MCObjectWriter> &&OW, 107 std::unique_ptr<MCCodeEmitter> &&Emitter, 108 bool RelaxAll) { 109 return createPPCELFStreamer(Context, std::move(MAB), std::move(OW), 110 std::move(Emitter)); 111 } 112 113 namespace { 114 115 class PPCTargetAsmStreamer : public PPCTargetStreamer { 116 formatted_raw_ostream &OS; 117 118 public: 119 PPCTargetAsmStreamer(MCStreamer &S, formatted_raw_ostream &OS) 120 : PPCTargetStreamer(S), OS(OS) {} 121 122 void emitTCEntry(const MCSymbol &S) override { 123 const MCAsmInfo *MAI = Streamer.getContext().getAsmInfo(); 124 OS << "\t.tc "; 125 OS << (MAI->getSymbolsHaveSMC() 126 ? cast<MCSymbolXCOFF>(S).getUnqualifiedName() 127 : S.getName()); 128 OS << "[TC],"; 129 OS << S.getName(); 130 OS << '\n'; 131 } 132 133 void emitMachine(StringRef CPU) override { 134 OS << "\t.machine " << CPU << '\n'; 135 } 136 137 void emitAbiVersion(int AbiVersion) override { 138 OS << "\t.abiversion " << AbiVersion << '\n'; 139 } 140 141 void emitLocalEntry(MCSymbolELF *S, const MCExpr *LocalOffset) override { 142 const MCAsmInfo *MAI = Streamer.getContext().getAsmInfo(); 143 144 OS << "\t.localentry\t"; 145 S->print(OS, MAI); 146 OS << ", "; 147 LocalOffset->print(OS, MAI); 148 OS << '\n'; 149 } 150 }; 151 152 class PPCTargetELFStreamer : public PPCTargetStreamer { 153 public: 154 PPCTargetELFStreamer(MCStreamer &S) : PPCTargetStreamer(S) {} 155 156 MCELFStreamer &getStreamer() { 157 return static_cast<MCELFStreamer &>(Streamer); 158 } 159 160 void emitTCEntry(const MCSymbol &S) override { 161 // Creates a R_PPC64_TOC relocation 162 Streamer.emitValueToAlignment(8); 163 Streamer.emitSymbolValue(&S, 8); 164 } 165 166 void emitMachine(StringRef CPU) override { 167 // FIXME: Is there anything to do in here or does this directive only 168 // limit the parser? 169 } 170 171 void emitAbiVersion(int AbiVersion) override { 172 MCAssembler &MCA = getStreamer().getAssembler(); 173 unsigned Flags = MCA.getELFHeaderEFlags(); 174 Flags &= ~ELF::EF_PPC64_ABI; 175 Flags |= (AbiVersion & ELF::EF_PPC64_ABI); 176 MCA.setELFHeaderEFlags(Flags); 177 } 178 179 void emitLocalEntry(MCSymbolELF *S, const MCExpr *LocalOffset) override { 180 MCAssembler &MCA = getStreamer().getAssembler(); 181 182 int64_t Res; 183 if (!LocalOffset->evaluateAsAbsolute(Res, MCA)) 184 report_fatal_error(".localentry expression must be absolute."); 185 186 unsigned Encoded = ELF::encodePPC64LocalEntryOffset(Res); 187 if (Res != ELF::decodePPC64LocalEntryOffset(Encoded)) 188 report_fatal_error(".localentry expression cannot be encoded."); 189 190 unsigned Other = S->getOther(); 191 Other &= ~ELF::STO_PPC64_LOCAL_MASK; 192 Other |= Encoded; 193 S->setOther(Other); 194 195 // For GAS compatibility, unless we already saw a .abiversion directive, 196 // set e_flags to indicate ELFv2 ABI. 197 unsigned Flags = MCA.getELFHeaderEFlags(); 198 if ((Flags & ELF::EF_PPC64_ABI) == 0) 199 MCA.setELFHeaderEFlags(Flags | 2); 200 } 201 202 void emitAssignment(MCSymbol *S, const MCExpr *Value) override { 203 auto *Symbol = cast<MCSymbolELF>(S); 204 205 // When encoding an assignment to set symbol A to symbol B, also copy 206 // the st_other bits encoding the local entry point offset. 207 if (copyLocalEntry(Symbol, Value)) 208 UpdateOther.insert(Symbol); 209 else 210 UpdateOther.erase(Symbol); 211 } 212 213 void finish() override { 214 for (auto *Sym : UpdateOther) 215 if (Sym->isVariable()) 216 copyLocalEntry(Sym, Sym->getVariableValue()); 217 } 218 219 private: 220 SmallPtrSet<MCSymbolELF *, 32> UpdateOther; 221 222 bool copyLocalEntry(MCSymbolELF *D, const MCExpr *S) { 223 auto *Ref = dyn_cast<const MCSymbolRefExpr>(S); 224 if (!Ref) 225 return false; 226 const auto &RhsSym = cast<MCSymbolELF>(Ref->getSymbol()); 227 unsigned Other = D->getOther(); 228 Other &= ~ELF::STO_PPC64_LOCAL_MASK; 229 Other |= RhsSym.getOther() & ELF::STO_PPC64_LOCAL_MASK; 230 D->setOther(Other); 231 return true; 232 } 233 }; 234 235 class PPCTargetMachOStreamer : public PPCTargetStreamer { 236 public: 237 PPCTargetMachOStreamer(MCStreamer &S) : PPCTargetStreamer(S) {} 238 239 void emitTCEntry(const MCSymbol &S) override { 240 llvm_unreachable("Unknown pseudo-op: .tc"); 241 } 242 243 void emitMachine(StringRef CPU) override { 244 // FIXME: We should update the CPUType, CPUSubType in the Object file if 245 // the new values are different from the defaults. 246 } 247 248 void emitAbiVersion(int AbiVersion) override { 249 llvm_unreachable("Unknown pseudo-op: .abiversion"); 250 } 251 252 void emitLocalEntry(MCSymbolELF *S, const MCExpr *LocalOffset) override { 253 llvm_unreachable("Unknown pseudo-op: .localentry"); 254 } 255 }; 256 257 class PPCTargetXCOFFStreamer : public PPCTargetStreamer { 258 public: 259 PPCTargetXCOFFStreamer(MCStreamer &S) : PPCTargetStreamer(S) {} 260 261 void emitTCEntry(const MCSymbol &S) override { 262 const MCAsmInfo *MAI = Streamer.getContext().getAsmInfo(); 263 const unsigned PointerSize = MAI->getCodePointerSize(); 264 Streamer.emitValueToAlignment(PointerSize); 265 Streamer.emitSymbolValue(&S, PointerSize); 266 } 267 268 void emitMachine(StringRef CPU) override { 269 llvm_unreachable("Machine pseudo-ops are invalid for XCOFF."); 270 } 271 272 void emitAbiVersion(int AbiVersion) override { 273 llvm_unreachable("ABI-version pseudo-ops are invalid for XCOFF."); 274 } 275 276 void emitLocalEntry(MCSymbolELF *S, const MCExpr *LocalOffset) override { 277 llvm_unreachable("Local-entry pseudo-ops are invalid for XCOFF."); 278 } 279 }; 280 281 } // end anonymous namespace 282 283 static MCTargetStreamer *createAsmTargetStreamer(MCStreamer &S, 284 formatted_raw_ostream &OS, 285 MCInstPrinter *InstPrint, 286 bool isVerboseAsm) { 287 return new PPCTargetAsmStreamer(S, OS); 288 } 289 290 static MCTargetStreamer * 291 createObjectTargetStreamer(MCStreamer &S, const MCSubtargetInfo &STI) { 292 const Triple &TT = STI.getTargetTriple(); 293 if (TT.isOSBinFormatELF()) 294 return new PPCTargetELFStreamer(S); 295 if (TT.isOSBinFormatXCOFF()) 296 return new PPCTargetXCOFFStreamer(S); 297 return new PPCTargetMachOStreamer(S); 298 } 299 300 static MCInstPrinter *createPPCMCInstPrinter(const Triple &T, 301 unsigned SyntaxVariant, 302 const MCAsmInfo &MAI, 303 const MCInstrInfo &MII, 304 const MCRegisterInfo &MRI) { 305 return new PPCInstPrinter(MAI, MII, MRI, T); 306 } 307 308 extern "C" LLVM_EXTERNAL_VISIBILITY void LLVMInitializePowerPCTargetMC() { 309 for (Target *T : 310 {&getThePPC32Target(), &getThePPC64Target(), &getThePPC64LETarget()}) { 311 // Register the MC asm info. 312 RegisterMCAsmInfoFn C(*T, createPPCMCAsmInfo); 313 314 // Register the MC instruction info. 315 TargetRegistry::RegisterMCInstrInfo(*T, createPPCMCInstrInfo); 316 317 // Register the MC register info. 318 TargetRegistry::RegisterMCRegInfo(*T, createPPCMCRegisterInfo); 319 320 // Register the MC subtarget info. 321 TargetRegistry::RegisterMCSubtargetInfo(*T, createPPCMCSubtargetInfo); 322 323 // Register the MC Code Emitter 324 TargetRegistry::RegisterMCCodeEmitter(*T, createPPCMCCodeEmitter); 325 326 // Register the asm backend. 327 TargetRegistry::RegisterMCAsmBackend(*T, createPPCAsmBackend); 328 329 // Register the elf streamer. 330 TargetRegistry::RegisterELFStreamer(*T, createPPCMCStreamer); 331 332 // Register the object target streamer. 333 TargetRegistry::RegisterObjectTargetStreamer(*T, 334 createObjectTargetStreamer); 335 336 // Register the asm target streamer. 337 TargetRegistry::RegisterAsmTargetStreamer(*T, createAsmTargetStreamer); 338 339 // Register the MCInstPrinter. 340 TargetRegistry::RegisterMCInstPrinter(*T, createPPCMCInstPrinter); 341 } 342 } 343