Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===-- PPCAsmPrinter.cpp - Print machine instrs to PowerPC assembly --------=// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 081ce94 | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file contains a printer that converts from our internal representation |
| 11 | // of machine-dependent LLVM code to PowerPC assembly language. This printer is |
| 12 | // the output mechanism used by `llc'. |
| 13 | // |
| 14 | // Documentation at http://developer.apple.com/documentation/DeveloperTools/ |
| 15 | // Reference/Assembler/ASMIntroduction/chapter_1_section_1.html |
| 16 | // |
| 17 | //===----------------------------------------------------------------------===// |
| 18 | |
| 19 | #define DEBUG_TYPE "asmprinter" |
| 20 | #include "PPC.h" |
| 21 | #include "PPCPredicates.h" |
| 22 | #include "PPCTargetMachine.h" |
| 23 | #include "PPCSubtarget.h" |
| 24 | #include "llvm/Constants.h" |
| 25 | #include "llvm/DerivedTypes.h" |
| 26 | #include "llvm/Module.h" |
| 27 | #include "llvm/Assembly/Writer.h" |
| 28 | #include "llvm/CodeGen/AsmPrinter.h" |
| 29 | #include "llvm/CodeGen/DwarfWriter.h" |
| 30 | #include "llvm/CodeGen/MachineModuleInfo.h" |
| 31 | #include "llvm/CodeGen/MachineFunctionPass.h" |
| 32 | #include "llvm/CodeGen/MachineInstr.h" |
Bill Wendling | 36ccaea | 2008-01-26 06:51:24 +0000 | [diff] [blame] | 33 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 34 | #include "llvm/Support/Mangler.h" |
| 35 | #include "llvm/Support/MathExtras.h" |
| 36 | #include "llvm/Support/CommandLine.h" |
| 37 | #include "llvm/Support/Debug.h" |
| 38 | #include "llvm/Support/Compiler.h" |
| 39 | #include "llvm/Target/TargetAsmInfo.h" |
Dan Gohman | 1e57df3 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 40 | #include "llvm/Target/TargetRegisterInfo.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 41 | #include "llvm/Target/TargetInstrInfo.h" |
| 42 | #include "llvm/Target/TargetOptions.h" |
| 43 | #include "llvm/ADT/Statistic.h" |
| 44 | #include "llvm/ADT/StringExtras.h" |
| 45 | #include <set> |
| 46 | using namespace llvm; |
| 47 | |
| 48 | STATISTIC(EmittedInsts, "Number of machine instrs printed"); |
| 49 | |
| 50 | namespace { |
| 51 | struct VISIBILITY_HIDDEN PPCAsmPrinter : public AsmPrinter { |
| 52 | std::set<std::string> FnStubs, GVStubs; |
| 53 | const PPCSubtarget &Subtarget; |
| 54 | |
| 55 | PPCAsmPrinter(std::ostream &O, TargetMachine &TM, const TargetAsmInfo *T) |
| 56 | : AsmPrinter(O, TM, T), Subtarget(TM.getSubtarget<PPCSubtarget>()) { |
| 57 | } |
| 58 | |
| 59 | virtual const char *getPassName() const { |
| 60 | return "PowerPC Assembly Printer"; |
| 61 | } |
| 62 | |
| 63 | PPCTargetMachine &getTM() { |
| 64 | return static_cast<PPCTargetMachine&>(TM); |
| 65 | } |
| 66 | |
| 67 | unsigned enumRegToMachineReg(unsigned enumReg) { |
| 68 | switch (enumReg) { |
| 69 | default: assert(0 && "Unhandled register!"); break; |
| 70 | case PPC::CR0: return 0; |
| 71 | case PPC::CR1: return 1; |
| 72 | case PPC::CR2: return 2; |
| 73 | case PPC::CR3: return 3; |
| 74 | case PPC::CR4: return 4; |
| 75 | case PPC::CR5: return 5; |
| 76 | case PPC::CR6: return 6; |
| 77 | case PPC::CR7: return 7; |
| 78 | } |
| 79 | abort(); |
| 80 | } |
| 81 | |
| 82 | /// printInstruction - This method is automatically generated by tablegen |
| 83 | /// from the instruction set description. This method returns true if the |
| 84 | /// machine instruction was sufficiently described to print it, otherwise it |
| 85 | /// returns false. |
| 86 | bool printInstruction(const MachineInstr *MI); |
| 87 | |
| 88 | void printMachineInstruction(const MachineInstr *MI); |
| 89 | void printOp(const MachineOperand &MO); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 90 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 91 | /// stripRegisterPrefix - This method strips the character prefix from a |
| 92 | /// register name so that only the number is left. Used by for linux asm. |
| 93 | const char *stripRegisterPrefix(const char *RegName) { |
| 94 | switch (RegName[0]) { |
| 95 | case 'r': |
| 96 | case 'f': |
| 97 | case 'v': return RegName + 1; |
| 98 | case 'c': if (RegName[1] == 'r') return RegName + 2; |
| 99 | } |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 100 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 101 | return RegName; |
| 102 | } |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 103 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 104 | /// printRegister - Print register according to target requirements. |
| 105 | /// |
| 106 | void printRegister(const MachineOperand &MO, bool R0AsZero) { |
| 107 | unsigned RegNo = MO.getReg(); |
Dan Gohman | 1e57df3 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 108 | assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??"); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 109 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 110 | // If we should use 0 for R0. |
| 111 | if (R0AsZero && RegNo == PPC::R0) { |
| 112 | O << "0"; |
| 113 | return; |
| 114 | } |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 115 | |
Bill Wendling | 8eeb979 | 2008-02-26 21:11:01 +0000 | [diff] [blame] | 116 | const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 117 | // Linux assembler (Others?) does not take register mnemonics. |
| 118 | // FIXME - What about special registers used in mfspr/mtspr? |
| 119 | if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName); |
| 120 | O << RegName; |
| 121 | } |
| 122 | |
| 123 | void printOperand(const MachineInstr *MI, unsigned OpNo) { |
| 124 | const MachineOperand &MO = MI->getOperand(OpNo); |
| 125 | if (MO.isRegister()) { |
| 126 | printRegister(MO, false); |
| 127 | } else if (MO.isImmediate()) { |
Chris Lattner | a96056a | 2007-12-30 20:49:49 +0000 | [diff] [blame] | 128 | O << MO.getImm(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 129 | } else { |
| 130 | printOp(MO); |
| 131 | } |
| 132 | } |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 133 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 134 | bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo, |
| 135 | unsigned AsmVariant, const char *ExtraCode); |
| 136 | bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo, |
| 137 | unsigned AsmVariant, const char *ExtraCode); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 138 | |
| 139 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 140 | void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) { |
Chris Lattner | a96056a | 2007-12-30 20:49:49 +0000 | [diff] [blame] | 141 | char value = MI->getOperand(OpNo).getImm(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 142 | value = (value << (32-5)) >> (32-5); |
| 143 | O << (int)value; |
| 144 | } |
| 145 | void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) { |
Chris Lattner | a96056a | 2007-12-30 20:49:49 +0000 | [diff] [blame] | 146 | unsigned char value = MI->getOperand(OpNo).getImm(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 147 | assert(value <= 31 && "Invalid u5imm argument!"); |
| 148 | O << (unsigned int)value; |
| 149 | } |
| 150 | void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) { |
Chris Lattner | a96056a | 2007-12-30 20:49:49 +0000 | [diff] [blame] | 151 | unsigned char value = MI->getOperand(OpNo).getImm(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 152 | assert(value <= 63 && "Invalid u6imm argument!"); |
| 153 | O << (unsigned int)value; |
| 154 | } |
| 155 | void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) { |
Chris Lattner | a96056a | 2007-12-30 20:49:49 +0000 | [diff] [blame] | 156 | O << (short)MI->getOperand(OpNo).getImm(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 157 | } |
| 158 | void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) { |
Chris Lattner | a96056a | 2007-12-30 20:49:49 +0000 | [diff] [blame] | 159 | O << (unsigned short)MI->getOperand(OpNo).getImm(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 160 | } |
| 161 | void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) { |
| 162 | if (MI->getOperand(OpNo).isImmediate()) { |
Chris Lattner | a96056a | 2007-12-30 20:49:49 +0000 | [diff] [blame] | 163 | O << (short)(MI->getOperand(OpNo).getImm()*4); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 164 | } else { |
| 165 | O << "lo16("; |
| 166 | printOp(MI->getOperand(OpNo)); |
| 167 | if (TM.getRelocationModel() == Reloc::PIC_) |
Evan Cheng | 477013c | 2007-10-14 05:57:21 +0000 | [diff] [blame] | 168 | O << "-\"L" << getFunctionNumber() << "$pb\")"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 169 | else |
| 170 | O << ')'; |
| 171 | } |
| 172 | } |
| 173 | void printBranchOperand(const MachineInstr *MI, unsigned OpNo) { |
| 174 | // Branches can take an immediate operand. This is used by the branch |
| 175 | // selection pass to print $+8, an eight byte displacement from the PC. |
| 176 | if (MI->getOperand(OpNo).isImmediate()) { |
Chris Lattner | a96056a | 2007-12-30 20:49:49 +0000 | [diff] [blame] | 177 | O << "$+" << MI->getOperand(OpNo).getImm()*4; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 178 | } else { |
| 179 | printOp(MI->getOperand(OpNo)); |
| 180 | } |
| 181 | } |
| 182 | void printCallOperand(const MachineInstr *MI, unsigned OpNo) { |
| 183 | const MachineOperand &MO = MI->getOperand(OpNo); |
| 184 | if (TM.getRelocationModel() != Reloc::Static) { |
| 185 | if (MO.getType() == MachineOperand::MO_GlobalAddress) { |
| 186 | GlobalValue *GV = MO.getGlobal(); |
| 187 | if (((GV->isDeclaration() || GV->hasWeakLinkage() || |
Dale Johannesen | 49c4412 | 2008-05-14 20:12:51 +0000 | [diff] [blame] | 188 | GV->hasLinkOnceLinkage() || GV->hasCommonLinkage()))) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 189 | // Dynamically-resolved functions need a stub for the function. |
| 190 | std::string Name = Mang->getValueName(GV); |
| 191 | FnStubs.insert(Name); |
Dale Johannesen | a21b520 | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 192 | printSuffixedName(Name, "$stub"); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 193 | if (GV->hasExternalWeakLinkage()) |
| 194 | ExtWeakSymbols.insert(GV); |
| 195 | return; |
| 196 | } |
| 197 | } |
| 198 | if (MO.getType() == MachineOperand::MO_ExternalSymbol) { |
| 199 | std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName(); |
| 200 | FnStubs.insert(Name); |
Dale Johannesen | a21b520 | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 201 | printSuffixedName(Name, "$stub"); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 202 | return; |
| 203 | } |
| 204 | } |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 205 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 206 | printOp(MI->getOperand(OpNo)); |
| 207 | } |
| 208 | void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) { |
Chris Lattner | a96056a | 2007-12-30 20:49:49 +0000 | [diff] [blame] | 209 | O << (int)MI->getOperand(OpNo).getImm()*4; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 210 | } |
| 211 | void printPICLabel(const MachineInstr *MI, unsigned OpNo) { |
Evan Cheng | 477013c | 2007-10-14 05:57:21 +0000 | [diff] [blame] | 212 | O << "\"L" << getFunctionNumber() << "$pb\"\n"; |
| 213 | O << "\"L" << getFunctionNumber() << "$pb\":"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 214 | } |
| 215 | void printSymbolHi(const MachineInstr *MI, unsigned OpNo) { |
| 216 | if (MI->getOperand(OpNo).isImmediate()) { |
| 217 | printS16ImmOperand(MI, OpNo); |
| 218 | } else { |
| 219 | if (Subtarget.isDarwin()) O << "ha16("; |
| 220 | printOp(MI->getOperand(OpNo)); |
| 221 | if (TM.getRelocationModel() == Reloc::PIC_) |
Evan Cheng | 477013c | 2007-10-14 05:57:21 +0000 | [diff] [blame] | 222 | O << "-\"L" << getFunctionNumber() << "$pb\""; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 223 | if (Subtarget.isDarwin()) |
| 224 | O << ')'; |
| 225 | else |
| 226 | O << "@ha"; |
| 227 | } |
| 228 | } |
| 229 | void printSymbolLo(const MachineInstr *MI, unsigned OpNo) { |
| 230 | if (MI->getOperand(OpNo).isImmediate()) { |
| 231 | printS16ImmOperand(MI, OpNo); |
| 232 | } else { |
| 233 | if (Subtarget.isDarwin()) O << "lo16("; |
| 234 | printOp(MI->getOperand(OpNo)); |
| 235 | if (TM.getRelocationModel() == Reloc::PIC_) |
Evan Cheng | 477013c | 2007-10-14 05:57:21 +0000 | [diff] [blame] | 236 | O << "-\"L" << getFunctionNumber() << "$pb\""; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 237 | if (Subtarget.isDarwin()) |
| 238 | O << ')'; |
| 239 | else |
| 240 | O << "@l"; |
| 241 | } |
| 242 | } |
| 243 | void printcrbitm(const MachineInstr *MI, unsigned OpNo) { |
| 244 | unsigned CCReg = MI->getOperand(OpNo).getReg(); |
| 245 | unsigned RegNo = enumRegToMachineReg(CCReg); |
| 246 | O << (0x80 >> RegNo); |
| 247 | } |
| 248 | // The new addressing mode printers. |
| 249 | void printMemRegImm(const MachineInstr *MI, unsigned OpNo) { |
| 250 | printSymbolLo(MI, OpNo); |
| 251 | O << '('; |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 252 | if (MI->getOperand(OpNo+1).isRegister() && |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 253 | MI->getOperand(OpNo+1).getReg() == PPC::R0) |
| 254 | O << "0"; |
| 255 | else |
| 256 | printOperand(MI, OpNo+1); |
| 257 | O << ')'; |
| 258 | } |
| 259 | void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) { |
| 260 | if (MI->getOperand(OpNo).isImmediate()) |
| 261 | printS16X4ImmOperand(MI, OpNo); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 262 | else |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 263 | printSymbolLo(MI, OpNo); |
| 264 | O << '('; |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 265 | if (MI->getOperand(OpNo+1).isRegister() && |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 266 | MI->getOperand(OpNo+1).getReg() == PPC::R0) |
| 267 | O << "0"; |
| 268 | else |
| 269 | printOperand(MI, OpNo+1); |
| 270 | O << ')'; |
| 271 | } |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 272 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 273 | void printMemRegReg(const MachineInstr *MI, unsigned OpNo) { |
| 274 | // When used as the base register, r0 reads constant zero rather than |
| 275 | // the value contained in the register. For this reason, the darwin |
| 276 | // assembler requires that we print r0 as 0 (no r) when used as the base. |
| 277 | const MachineOperand &MO = MI->getOperand(OpNo); |
| 278 | printRegister(MO, true); |
| 279 | O << ", "; |
| 280 | printOperand(MI, OpNo+1); |
| 281 | } |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 282 | |
| 283 | void printPredicateOperand(const MachineInstr *MI, unsigned OpNo, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 284 | const char *Modifier); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 285 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 286 | virtual bool runOnMachineFunction(MachineFunction &F) = 0; |
| 287 | virtual bool doFinalization(Module &M) = 0; |
| 288 | |
| 289 | virtual void EmitExternalGlobal(const GlobalVariable *GV); |
| 290 | }; |
| 291 | |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 292 | /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux |
| 293 | struct VISIBILITY_HIDDEN PPCLinuxAsmPrinter : public PPCAsmPrinter { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 294 | |
| 295 | DwarfWriter DW; |
Dale Johannesen | 2f6aa07 | 2008-07-09 21:24:07 +0000 | [diff] [blame] | 296 | MachineModuleInfo *MMI; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 297 | |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 298 | PPCLinuxAsmPrinter(std::ostream &O, PPCTargetMachine &TM, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 299 | const TargetAsmInfo *T) |
Dale Johannesen | 2f6aa07 | 2008-07-09 21:24:07 +0000 | [diff] [blame] | 300 | : PPCAsmPrinter(O, TM, T), DW(O, this, T), MMI(0) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | virtual const char *getPassName() const { |
| 304 | return "Linux PPC Assembly Printer"; |
| 305 | } |
| 306 | |
| 307 | bool runOnMachineFunction(MachineFunction &F); |
| 308 | bool doInitialization(Module &M); |
| 309 | bool doFinalization(Module &M); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 310 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 311 | void getAnalysisUsage(AnalysisUsage &AU) const { |
| 312 | AU.setPreservesAll(); |
| 313 | AU.addRequired<MachineModuleInfo>(); |
| 314 | PPCAsmPrinter::getAnalysisUsage(AU); |
| 315 | } |
| 316 | |
| 317 | /// getSectionForFunction - Return the section that we should emit the |
| 318 | /// specified function body into. |
| 319 | virtual std::string getSectionForFunction(const Function &F) const; |
| 320 | }; |
| 321 | |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 322 | /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac |
| 323 | /// OS X |
| 324 | struct VISIBILITY_HIDDEN PPCDarwinAsmPrinter : public PPCAsmPrinter { |
| 325 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 326 | DwarfWriter DW; |
Dale Johannesen | fb3ac73 | 2007-11-20 23:24:42 +0000 | [diff] [blame] | 327 | MachineModuleInfo *MMI; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 328 | |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 329 | PPCDarwinAsmPrinter(std::ostream &O, PPCTargetMachine &TM, |
| 330 | const TargetAsmInfo *T) |
Dale Johannesen | fb3ac73 | 2007-11-20 23:24:42 +0000 | [diff] [blame] | 331 | : PPCAsmPrinter(O, TM, T), DW(O, this, T), MMI(0) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 332 | } |
| 333 | |
| 334 | virtual const char *getPassName() const { |
| 335 | return "Darwin PPC Assembly Printer"; |
| 336 | } |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 337 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 338 | bool runOnMachineFunction(MachineFunction &F); |
| 339 | bool doInitialization(Module &M); |
| 340 | bool doFinalization(Module &M); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 341 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 342 | void getAnalysisUsage(AnalysisUsage &AU) const { |
| 343 | AU.setPreservesAll(); |
| 344 | AU.addRequired<MachineModuleInfo>(); |
| 345 | PPCAsmPrinter::getAnalysisUsage(AU); |
| 346 | } |
| 347 | |
| 348 | /// getSectionForFunction - Return the section that we should emit the |
| 349 | /// specified function body into. |
| 350 | virtual std::string getSectionForFunction(const Function &F) const; |
| 351 | }; |
| 352 | } // end of anonymous namespace |
| 353 | |
| 354 | // Include the auto-generated portion of the assembly writer |
| 355 | #include "PPCGenAsmWriter.inc" |
| 356 | |
| 357 | void PPCAsmPrinter::printOp(const MachineOperand &MO) { |
| 358 | switch (MO.getType()) { |
| 359 | case MachineOperand::MO_Immediate: |
| 360 | cerr << "printOp() does not handle immediate values\n"; |
| 361 | abort(); |
| 362 | return; |
| 363 | |
| 364 | case MachineOperand::MO_MachineBasicBlock: |
Chris Lattner | 6017d48 | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 365 | printBasicBlockLabel(MO.getMBB()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 366 | return; |
| 367 | case MachineOperand::MO_JumpTableIndex: |
Evan Cheng | 477013c | 2007-10-14 05:57:21 +0000 | [diff] [blame] | 368 | O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() |
Chris Lattner | 6017d48 | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 369 | << '_' << MO.getIndex(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 370 | // FIXME: PIC relocation model |
| 371 | return; |
| 372 | case MachineOperand::MO_ConstantPoolIndex: |
Evan Cheng | 477013c | 2007-10-14 05:57:21 +0000 | [diff] [blame] | 373 | O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() |
Chris Lattner | 6017d48 | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 374 | << '_' << MO.getIndex(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 375 | return; |
| 376 | case MachineOperand::MO_ExternalSymbol: |
| 377 | // Computing the address of an external symbol, not calling it. |
| 378 | if (TM.getRelocationModel() != Reloc::Static) { |
| 379 | std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName(); |
| 380 | GVStubs.insert(Name); |
Dale Johannesen | a21b520 | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 381 | printSuffixedName(Name, "$non_lazy_ptr"); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 382 | return; |
| 383 | } |
| 384 | O << TAI->getGlobalPrefix() << MO.getSymbolName(); |
| 385 | return; |
| 386 | case MachineOperand::MO_GlobalAddress: { |
| 387 | // Computing the address of a global symbol, not calling it. |
| 388 | GlobalValue *GV = MO.getGlobal(); |
| 389 | std::string Name = Mang->getValueName(GV); |
| 390 | |
| 391 | // External or weakly linked global variables need non-lazily-resolved stubs |
| 392 | if (TM.getRelocationModel() != Reloc::Static) { |
| 393 | if (((GV->isDeclaration() || GV->hasWeakLinkage() || |
Dale Johannesen | 49c4412 | 2008-05-14 20:12:51 +0000 | [diff] [blame] | 394 | GV->hasLinkOnceLinkage() || GV->hasCommonLinkage()))) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 395 | GVStubs.insert(Name); |
Dale Johannesen | a21b520 | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 396 | printSuffixedName(Name, "$non_lazy_ptr"); |
Dale Johannesen | caf1118 | 2008-05-16 20:09:25 +0000 | [diff] [blame] | 397 | if (GV->hasExternalWeakLinkage()) |
| 398 | ExtWeakSymbols.insert(GV); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 399 | return; |
| 400 | } |
| 401 | } |
| 402 | O << Name; |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 403 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 404 | if (MO.getOffset() > 0) |
| 405 | O << "+" << MO.getOffset(); |
| 406 | else if (MO.getOffset() < 0) |
| 407 | O << MO.getOffset(); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 408 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 409 | if (GV->hasExternalWeakLinkage()) |
| 410 | ExtWeakSymbols.insert(GV); |
| 411 | return; |
| 412 | } |
| 413 | |
| 414 | default: |
| 415 | O << "<unknown operand type: " << MO.getType() << ">"; |
| 416 | return; |
| 417 | } |
| 418 | } |
| 419 | |
| 420 | /// EmitExternalGlobal - In this case we need to use the indirect symbol. |
| 421 | /// |
| 422 | void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) { |
| 423 | std::string Name = getGlobalLinkName(GV); |
| 424 | if (TM.getRelocationModel() != Reloc::Static) { |
| 425 | GVStubs.insert(Name); |
Dale Johannesen | a21b520 | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 426 | printSuffixedName(Name, "$non_lazy_ptr"); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 427 | return; |
| 428 | } |
| 429 | O << Name; |
| 430 | } |
| 431 | |
| 432 | /// PrintAsmOperand - Print out an operand for an inline asm expression. |
| 433 | /// |
| 434 | bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo, |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 435 | unsigned AsmVariant, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 436 | const char *ExtraCode) { |
| 437 | // Does this asm operand have a single letter operand modifier? |
| 438 | if (ExtraCode && ExtraCode[0]) { |
| 439 | if (ExtraCode[1] != 0) return true; // Unknown modifier. |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 440 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 441 | switch (ExtraCode[0]) { |
| 442 | default: return true; // Unknown modifier. |
| 443 | case 'c': // Don't print "$" before a global var name or constant. |
| 444 | // PPC never has a prefix. |
| 445 | printOperand(MI, OpNo); |
| 446 | return false; |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 447 | case 'L': // Write second word of DImode reference. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 448 | // Verify that this operand has two consecutive registers. |
| 449 | if (!MI->getOperand(OpNo).isRegister() || |
| 450 | OpNo+1 == MI->getNumOperands() || |
| 451 | !MI->getOperand(OpNo+1).isRegister()) |
| 452 | return true; |
| 453 | ++OpNo; // Return the high-part. |
| 454 | break; |
| 455 | case 'I': |
| 456 | // Write 'i' if an integer constant, otherwise nothing. Used to print |
| 457 | // addi vs add, etc. |
Dan Gohman | 38a9a9f | 2007-09-14 20:33:02 +0000 | [diff] [blame] | 458 | if (MI->getOperand(OpNo).isImmediate()) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 459 | O << "i"; |
| 460 | return false; |
| 461 | } |
| 462 | } |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 463 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 464 | printOperand(MI, OpNo); |
| 465 | return false; |
| 466 | } |
| 467 | |
| 468 | bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo, |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 469 | unsigned AsmVariant, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 470 | const char *ExtraCode) { |
| 471 | if (ExtraCode && ExtraCode[0]) |
| 472 | return true; // Unknown modifier. |
| 473 | if (MI->getOperand(OpNo).isRegister()) |
| 474 | printMemRegReg(MI, OpNo); |
| 475 | else |
| 476 | printMemRegImm(MI, OpNo); |
| 477 | return false; |
| 478 | } |
| 479 | |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 480 | void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 481 | const char *Modifier) { |
| 482 | assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!"); |
| 483 | unsigned Code = MI->getOperand(OpNo).getImm(); |
| 484 | if (!strcmp(Modifier, "cc")) { |
| 485 | switch ((PPC::Predicate)Code) { |
| 486 | case PPC::PRED_ALWAYS: return; // Don't print anything for always. |
| 487 | case PPC::PRED_LT: O << "lt"; return; |
| 488 | case PPC::PRED_LE: O << "le"; return; |
| 489 | case PPC::PRED_EQ: O << "eq"; return; |
| 490 | case PPC::PRED_GE: O << "ge"; return; |
| 491 | case PPC::PRED_GT: O << "gt"; return; |
| 492 | case PPC::PRED_NE: O << "ne"; return; |
| 493 | case PPC::PRED_UN: O << "un"; return; |
| 494 | case PPC::PRED_NU: O << "nu"; return; |
| 495 | } |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 496 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 497 | } else { |
| 498 | assert(!strcmp(Modifier, "reg") && |
| 499 | "Need to specify 'cc' or 'reg' as predicate op modifier!"); |
| 500 | // Don't print the register for 'always'. |
| 501 | if (Code == PPC::PRED_ALWAYS) return; |
| 502 | printOperand(MI, OpNo+1); |
| 503 | } |
| 504 | } |
| 505 | |
| 506 | |
| 507 | /// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to |
| 508 | /// the current output stream. |
| 509 | /// |
| 510 | void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) { |
| 511 | ++EmittedInsts; |
| 512 | |
| 513 | // Check for slwi/srwi mnemonics. |
| 514 | if (MI->getOpcode() == PPC::RLWINM) { |
| 515 | bool FoundMnemonic = false; |
Chris Lattner | a96056a | 2007-12-30 20:49:49 +0000 | [diff] [blame] | 516 | unsigned char SH = MI->getOperand(2).getImm(); |
| 517 | unsigned char MB = MI->getOperand(3).getImm(); |
| 518 | unsigned char ME = MI->getOperand(4).getImm(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 519 | if (SH <= 31 && MB == 0 && ME == (31-SH)) { |
Nate Begeman | bd5cdf1 | 2008-02-05 08:49:09 +0000 | [diff] [blame] | 520 | O << "\tslwi "; FoundMnemonic = true; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 521 | } |
| 522 | if (SH <= 31 && MB == (32-SH) && ME == 31) { |
Nate Begeman | bd5cdf1 | 2008-02-05 08:49:09 +0000 | [diff] [blame] | 523 | O << "\tsrwi "; FoundMnemonic = true; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 524 | SH = 32-SH; |
| 525 | } |
| 526 | if (FoundMnemonic) { |
| 527 | printOperand(MI, 0); |
| 528 | O << ", "; |
| 529 | printOperand(MI, 1); |
| 530 | O << ", " << (unsigned int)SH << "\n"; |
| 531 | return; |
| 532 | } |
| 533 | } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) { |
| 534 | if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) { |
Nate Begeman | bd5cdf1 | 2008-02-05 08:49:09 +0000 | [diff] [blame] | 535 | O << "\tmr "; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 536 | printOperand(MI, 0); |
| 537 | O << ", "; |
| 538 | printOperand(MI, 1); |
| 539 | O << "\n"; |
| 540 | return; |
| 541 | } |
| 542 | } else if (MI->getOpcode() == PPC::RLDICR) { |
Chris Lattner | a96056a | 2007-12-30 20:49:49 +0000 | [diff] [blame] | 543 | unsigned char SH = MI->getOperand(2).getImm(); |
| 544 | unsigned char ME = MI->getOperand(3).getImm(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 545 | // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH |
| 546 | if (63-SH == ME) { |
Nate Begeman | bd5cdf1 | 2008-02-05 08:49:09 +0000 | [diff] [blame] | 547 | O << "\tsldi "; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 548 | printOperand(MI, 0); |
| 549 | O << ", "; |
| 550 | printOperand(MI, 1); |
| 551 | O << ", " << (unsigned int)SH << "\n"; |
| 552 | return; |
| 553 | } |
| 554 | } |
| 555 | |
| 556 | if (printInstruction(MI)) |
| 557 | return; // Printer was automatically generated |
| 558 | |
| 559 | assert(0 && "Unhandled instruction in asm writer!"); |
| 560 | abort(); |
| 561 | return; |
| 562 | } |
| 563 | |
| 564 | /// runOnMachineFunction - This uses the printMachineInstruction() |
| 565 | /// method to print assembly for each instruction. |
| 566 | /// |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 567 | bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 568 | |
| 569 | SetupMachineFunction(MF); |
| 570 | O << "\n\n"; |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 571 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 572 | // Print out constants referenced by the function |
| 573 | EmitConstantPool(MF.getConstantPool()); |
| 574 | |
| 575 | // Print out labels for the function. |
| 576 | const Function *F = MF.getFunction(); |
| 577 | SwitchToTextSection(getSectionForFunction(*F).c_str(), F); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 578 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 579 | switch (F->getLinkage()) { |
| 580 | default: assert(0 && "Unknown linkage type!"); |
| 581 | case Function::InternalLinkage: // Symbols default to internal. |
| 582 | break; |
| 583 | case Function::ExternalLinkage: |
| 584 | O << "\t.global\t" << CurrentFnName << '\n' |
| 585 | << "\t.type\t" << CurrentFnName << ", @function\n"; |
| 586 | break; |
| 587 | case Function::WeakLinkage: |
| 588 | case Function::LinkOnceLinkage: |
| 589 | O << "\t.global\t" << CurrentFnName << '\n'; |
| 590 | O << "\t.weak\t" << CurrentFnName << '\n'; |
| 591 | break; |
| 592 | } |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 593 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 594 | if (F->hasHiddenVisibility()) |
| 595 | if (const char *Directive = TAI->getHiddenDirective()) |
| 596 | O << Directive << CurrentFnName << "\n"; |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 597 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 598 | EmitAlignment(2, F); |
| 599 | O << CurrentFnName << ":\n"; |
| 600 | |
| 601 | // Emit pre-function debug information. |
| 602 | DW.BeginFunction(&MF); |
| 603 | |
| 604 | // Print out code for the function. |
| 605 | for (MachineFunction::const_iterator I = MF.begin(), E = MF.end(); |
| 606 | I != E; ++I) { |
| 607 | // Print a label for the basic block. |
| 608 | if (I != MF.begin()) { |
Evan Cheng | 45c1edb | 2008-02-28 00:43:03 +0000 | [diff] [blame] | 609 | printBasicBlockLabel(I, true, true); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 610 | O << '\n'; |
| 611 | } |
| 612 | for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end(); |
| 613 | II != E; ++II) { |
| 614 | // Print the assembly for the instruction. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 615 | printMachineInstruction(II); |
| 616 | } |
| 617 | } |
| 618 | |
| 619 | O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << "\n"; |
| 620 | |
| 621 | // Print out jump tables referenced by the function. |
| 622 | EmitJumpTableInfo(MF.getJumpTableInfo(), MF); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 623 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 624 | // Emit post-function debug information. |
| 625 | DW.EndFunction(); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 626 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 627 | // We didn't modify anything. |
| 628 | return false; |
| 629 | } |
| 630 | |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 631 | bool PPCLinuxAsmPrinter::doInitialization(Module &M) { |
Dan Gohman | 4a558a3 | 2007-07-25 19:33:14 +0000 | [diff] [blame] | 632 | bool Result = AsmPrinter::doInitialization(M); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 633 | |
Dale Johannesen | 2f6aa07 | 2008-07-09 21:24:07 +0000 | [diff] [blame] | 634 | // Emit initial debug information. |
| 635 | DW.BeginModule(&M); |
| 636 | |
| 637 | // AsmPrinter::doInitialization should have done this analysis. |
| 638 | MMI = getAnalysisToUpdate<MachineModuleInfo>(); |
| 639 | assert(MMI); |
| 640 | DW.SetModuleInfo(MMI); |
| 641 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 642 | // GNU as handles section names wrapped in quotes |
| 643 | Mang->setUseQuotes(true); |
| 644 | |
| 645 | SwitchToTextSection(TAI->getTextSection()); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 646 | |
Dan Gohman | 4a558a3 | 2007-07-25 19:33:14 +0000 | [diff] [blame] | 647 | return Result; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 648 | } |
| 649 | |
Chris Lattner | 2b638a7 | 2008-02-15 19:04:54 +0000 | [diff] [blame] | 650 | /// PrintUnmangledNameSafely - Print out the printable characters in the name. |
| 651 | /// Don't print things like \n or \0. |
| 652 | static void PrintUnmangledNameSafely(const Value *V, std::ostream &OS) { |
| 653 | for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen(); |
| 654 | Name != E; ++Name) |
| 655 | if (isprint(*Name)) |
| 656 | OS << *Name; |
| 657 | } |
| 658 | |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 659 | bool PPCLinuxAsmPrinter::doFinalization(Module &M) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 660 | const TargetData *TD = TM.getTargetData(); |
| 661 | |
| 662 | // Print out module-level global variables here. |
| 663 | for (Module::const_global_iterator I = M.global_begin(), E = M.global_end(); |
| 664 | I != E; ++I) { |
| 665 | if (!I->hasInitializer()) continue; // External global require no code |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 666 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 667 | // Check to see if this is a special global used by LLVM, if so, emit it. |
| 668 | if (EmitSpecialLLVMGlobal(I)) |
| 669 | continue; |
| 670 | |
| 671 | std::string name = Mang->getValueName(I); |
| 672 | |
| 673 | if (I->hasHiddenVisibility()) |
| 674 | if (const char *Directive = TAI->getHiddenDirective()) |
| 675 | O << Directive << name << "\n"; |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 676 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 677 | Constant *C = I->getInitializer(); |
Duncan Sands | 8157ef4 | 2007-11-05 00:04:43 +0000 | [diff] [blame] | 678 | unsigned Size = TD->getABITypeSize(C->getType()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 679 | unsigned Align = TD->getPreferredAlignmentLog(I); |
| 680 | |
| 681 | if (C->isNullValue() && /* FIXME: Verify correct */ |
Dale Johannesen | 49c4412 | 2008-05-14 20:12:51 +0000 | [diff] [blame] | 682 | !I->hasSection() && (I->hasCommonLinkage() || |
| 683 | I->hasInternalLinkage() || I->hasWeakLinkage() || |
Evan Cheng | 65c0fbc | 2007-09-21 00:41:19 +0000 | [diff] [blame] | 684 | I->hasLinkOnceLinkage() || I->hasExternalLinkage())) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 685 | if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it. |
| 686 | if (I->hasExternalLinkage()) { |
| 687 | O << "\t.global " << name << '\n'; |
| 688 | O << "\t.type " << name << ", @object\n"; |
Nick Lewycky | c658375 | 2007-11-04 17:32:10 +0000 | [diff] [blame] | 689 | if (TAI->getBSSSection()) |
| 690 | SwitchToDataSection(TAI->getBSSSection(), I); |
Nick Lewycky | 3246a9c | 2007-07-25 03:48:45 +0000 | [diff] [blame] | 691 | O << name << ":\n"; |
| 692 | O << "\t.zero " << Size << "\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 693 | } else if (I->hasInternalLinkage()) { |
| 694 | SwitchToDataSection("\t.data", I); |
| 695 | O << TAI->getLCOMMDirective() << name << "," << Size; |
| 696 | } else { |
| 697 | SwitchToDataSection("\t.data", I); |
| 698 | O << ".comm " << name << "," << Size; |
| 699 | } |
Chris Lattner | 2b638a7 | 2008-02-15 19:04:54 +0000 | [diff] [blame] | 700 | O << "\t\t" << TAI->getCommentString() << " '"; |
| 701 | PrintUnmangledNameSafely(I, O); |
| 702 | O << "'\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 703 | } else { |
| 704 | switch (I->getLinkage()) { |
| 705 | case GlobalValue::LinkOnceLinkage: |
| 706 | case GlobalValue::WeakLinkage: |
Dale Johannesen | 49c4412 | 2008-05-14 20:12:51 +0000 | [diff] [blame] | 707 | case GlobalValue::CommonLinkage: |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 708 | O << "\t.global " << name << '\n' |
| 709 | << "\t.type " << name << ", @object\n" |
| 710 | << "\t.weak " << name << '\n'; |
| 711 | SwitchToDataSection("\t.data", I); |
| 712 | break; |
| 713 | case GlobalValue::AppendingLinkage: |
| 714 | // FIXME: appending linkage variables should go into a section of |
| 715 | // their name or something. For now, just emit them as external. |
| 716 | case GlobalValue::ExternalLinkage: |
| 717 | // If external or appending, declare as a global symbol |
| 718 | O << "\t.global " << name << "\n" |
| 719 | << "\t.type " << name << ", @object\n"; |
| 720 | // FALL THROUGH |
| 721 | case GlobalValue::InternalLinkage: |
| 722 | if (I->isConstant()) { |
| 723 | const ConstantArray *CVA = dyn_cast<ConstantArray>(C); |
| 724 | if (TAI->getCStringSection() && CVA && CVA->isCString()) { |
| 725 | SwitchToDataSection(TAI->getCStringSection(), I); |
| 726 | break; |
| 727 | } |
| 728 | } |
| 729 | |
| 730 | // FIXME: special handling for ".ctors" & ".dtors" sections |
| 731 | if (I->hasSection() && |
| 732 | (I->getSection() == ".ctors" || |
| 733 | I->getSection() == ".dtors")) { |
| 734 | std::string SectionName = ".section " + I->getSection() |
| 735 | + ",\"aw\",@progbits"; |
| 736 | SwitchToDataSection(SectionName.c_str()); |
| 737 | } else { |
| 738 | if (I->isConstant() && TAI->getReadOnlySection()) |
| 739 | SwitchToDataSection(TAI->getReadOnlySection(), I); |
| 740 | else |
| 741 | SwitchToDataSection(TAI->getDataSection(), I); |
| 742 | } |
| 743 | break; |
| 744 | default: |
| 745 | cerr << "Unknown linkage type!"; |
| 746 | abort(); |
| 747 | } |
| 748 | |
| 749 | EmitAlignment(Align, I); |
Chris Lattner | 2b638a7 | 2008-02-15 19:04:54 +0000 | [diff] [blame] | 750 | O << name << ":\t\t\t\t" << TAI->getCommentString() << " '"; |
| 751 | PrintUnmangledNameSafely(I, O); |
| 752 | O << "'\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 753 | |
| 754 | // If the initializer is a extern weak symbol, remember to emit the weak |
| 755 | // reference! |
| 756 | if (const GlobalValue *GV = dyn_cast<GlobalValue>(C)) |
| 757 | if (GV->hasExternalWeakLinkage()) |
| 758 | ExtWeakSymbols.insert(GV); |
| 759 | |
| 760 | EmitGlobalConstant(C); |
| 761 | O << '\n'; |
| 762 | } |
| 763 | } |
| 764 | |
| 765 | // TODO |
| 766 | |
| 767 | // Emit initial debug information. |
| 768 | DW.EndModule(); |
| 769 | |
Dan Gohman | 4a558a3 | 2007-07-25 19:33:14 +0000 | [diff] [blame] | 770 | return AsmPrinter::doFinalization(M); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 771 | } |
| 772 | |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 773 | std::string PPCLinuxAsmPrinter::getSectionForFunction(const Function &F) const { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 774 | switch (F.getLinkage()) { |
| 775 | default: assert(0 && "Unknown linkage type!"); |
| 776 | case Function::ExternalLinkage: |
| 777 | case Function::InternalLinkage: return TAI->getTextSection(); |
| 778 | case Function::WeakLinkage: |
| 779 | case Function::LinkOnceLinkage: |
| 780 | return ".text"; |
| 781 | } |
| 782 | } |
| 783 | |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 784 | std::string PPCDarwinAsmPrinter::getSectionForFunction(const Function &F) const { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 785 | switch (F.getLinkage()) { |
| 786 | default: assert(0 && "Unknown linkage type!"); |
| 787 | case Function::ExternalLinkage: |
| 788 | case Function::InternalLinkage: return TAI->getTextSection(); |
| 789 | case Function::WeakLinkage: |
| 790 | case Function::LinkOnceLinkage: |
Dale Johannesen | 3c78832 | 2008-01-11 00:54:37 +0000 | [diff] [blame] | 791 | return "\t.section __TEXT,__textcoal_nt,coalesced,pure_instructions"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 792 | } |
| 793 | } |
| 794 | |
| 795 | /// runOnMachineFunction - This uses the printMachineInstruction() |
| 796 | /// method to print assembly for each instruction. |
| 797 | /// |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 798 | bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 799 | |
| 800 | SetupMachineFunction(MF); |
| 801 | O << "\n\n"; |
Dale Johannesen | fb3ac73 | 2007-11-20 23:24:42 +0000 | [diff] [blame] | 802 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 803 | // Print out constants referenced by the function |
| 804 | EmitConstantPool(MF.getConstantPool()); |
| 805 | |
| 806 | // Print out labels for the function. |
| 807 | const Function *F = MF.getFunction(); |
| 808 | SwitchToTextSection(getSectionForFunction(*F).c_str(), F); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 809 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 810 | switch (F->getLinkage()) { |
| 811 | default: assert(0 && "Unknown linkage type!"); |
| 812 | case Function::InternalLinkage: // Symbols default to internal. |
| 813 | break; |
| 814 | case Function::ExternalLinkage: |
| 815 | O << "\t.globl\t" << CurrentFnName << "\n"; |
| 816 | break; |
| 817 | case Function::WeakLinkage: |
| 818 | case Function::LinkOnceLinkage: |
| 819 | O << "\t.globl\t" << CurrentFnName << "\n"; |
| 820 | O << "\t.weak_definition\t" << CurrentFnName << "\n"; |
| 821 | break; |
| 822 | } |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 823 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 824 | if (F->hasHiddenVisibility()) |
| 825 | if (const char *Directive = TAI->getHiddenDirective()) |
| 826 | O << Directive << CurrentFnName << "\n"; |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 827 | |
Evan Cheng | 2e8d3d4 | 2008-03-25 22:29:46 +0000 | [diff] [blame] | 828 | EmitAlignment(OptimizeForSize ? 2 : 4, F); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 829 | O << CurrentFnName << ":\n"; |
| 830 | |
| 831 | // Emit pre-function debug information. |
| 832 | DW.BeginFunction(&MF); |
| 833 | |
Bill Wendling | 36ccaea | 2008-01-26 06:51:24 +0000 | [diff] [blame] | 834 | // If the function is empty, then we need to emit *something*. Otherwise, the |
| 835 | // function's label might be associated with something that it wasn't meant to |
| 836 | // be associated with. We emit a noop in this situation. |
| 837 | MachineFunction::iterator I = MF.begin(); |
| 838 | |
Bill Wendling | b5880a7 | 2008-01-26 09:03:52 +0000 | [diff] [blame] | 839 | if (++I == MF.end() && MF.front().empty()) |
| 840 | O << "\tnop\n"; |
Bill Wendling | 36ccaea | 2008-01-26 06:51:24 +0000 | [diff] [blame] | 841 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 842 | // Print out code for the function. |
| 843 | for (MachineFunction::const_iterator I = MF.begin(), E = MF.end(); |
| 844 | I != E; ++I) { |
| 845 | // Print a label for the basic block. |
| 846 | if (I != MF.begin()) { |
Evan Cheng | 45c1edb | 2008-02-28 00:43:03 +0000 | [diff] [blame] | 847 | printBasicBlockLabel(I, true, true); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 848 | O << '\n'; |
| 849 | } |
Bill Wendling | 36ccaea | 2008-01-26 06:51:24 +0000 | [diff] [blame] | 850 | for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end(); |
| 851 | II != IE; ++II) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 852 | // Print the assembly for the instruction. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 853 | printMachineInstruction(II); |
| 854 | } |
| 855 | } |
| 856 | |
| 857 | // Print out jump tables referenced by the function. |
| 858 | EmitJumpTableInfo(MF.getJumpTableInfo(), MF); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 859 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 860 | // Emit post-function debug information. |
| 861 | DW.EndFunction(); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 862 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 863 | // We didn't modify anything. |
| 864 | return false; |
| 865 | } |
| 866 | |
| 867 | |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 868 | bool PPCDarwinAsmPrinter::doInitialization(Module &M) { |
Dan Gohman | 12300e1 | 2008-03-25 21:45:14 +0000 | [diff] [blame] | 869 | static const char *const CPUDirectives[] = { |
Dale Johannesen | 161badc | 2008-02-14 23:35:16 +0000 | [diff] [blame] | 870 | "", |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 871 | "ppc", |
| 872 | "ppc601", |
| 873 | "ppc602", |
| 874 | "ppc603", |
| 875 | "ppc7400", |
| 876 | "ppc750", |
| 877 | "ppc970", |
| 878 | "ppc64" |
| 879 | }; |
| 880 | |
| 881 | unsigned Directive = Subtarget.getDarwinDirective(); |
| 882 | if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970) |
| 883 | Directive = PPC::DIR_970; |
| 884 | if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400) |
| 885 | Directive = PPC::DIR_7400; |
| 886 | if (Subtarget.isPPC64() && Directive < PPC::DIR_970) |
| 887 | Directive = PPC::DIR_64; |
| 888 | assert(Directive <= PPC::DIR_64 && "Directive out of range."); |
| 889 | O << "\t.machine " << CPUDirectives[Directive] << "\n"; |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 890 | |
Dan Gohman | 4a558a3 | 2007-07-25 19:33:14 +0000 | [diff] [blame] | 891 | bool Result = AsmPrinter::doInitialization(M); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 892 | |
Dale Johannesen | 58e0eeb | 2008-07-09 20:43:39 +0000 | [diff] [blame] | 893 | // Emit initial debug information. |
| 894 | DW.BeginModule(&M); |
| 895 | |
| 896 | // We need this for Personality functions. |
| 897 | // AsmPrinter::doInitialization should have done this analysis. |
| 898 | MMI = getAnalysisToUpdate<MachineModuleInfo>(); |
| 899 | assert(MMI); |
| 900 | DW.SetModuleInfo(MMI); |
| 901 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 902 | // Darwin wants symbols to be quoted if they have complex names. |
| 903 | Mang->setUseQuotes(true); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 904 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 905 | // Prime text sections so they are adjacent. This reduces the likelihood a |
| 906 | // large data or debug section causes a branch to exceed 16M limit. |
Dale Johannesen | 3c78832 | 2008-01-11 00:54:37 +0000 | [diff] [blame] | 907 | SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced," |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 908 | "pure_instructions"); |
| 909 | if (TM.getRelocationModel() == Reloc::PIC_) { |
Dale Johannesen | 3c78832 | 2008-01-11 00:54:37 +0000 | [diff] [blame] | 910 | SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs," |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 911 | "pure_instructions,32"); |
| 912 | } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) { |
Dale Johannesen | 3c78832 | 2008-01-11 00:54:37 +0000 | [diff] [blame] | 913 | SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs," |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 914 | "pure_instructions,16"); |
| 915 | } |
| 916 | SwitchToTextSection(TAI->getTextSection()); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 917 | |
Dan Gohman | 4a558a3 | 2007-07-25 19:33:14 +0000 | [diff] [blame] | 918 | return Result; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 919 | } |
| 920 | |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 921 | bool PPCDarwinAsmPrinter::doFinalization(Module &M) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 922 | const TargetData *TD = TM.getTargetData(); |
| 923 | |
| 924 | // Print out module-level global variables here. |
| 925 | for (Module::const_global_iterator I = M.global_begin(), E = M.global_end(); |
| 926 | I != E; ++I) { |
| 927 | if (!I->hasInitializer()) continue; // External global require no code |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 928 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 929 | // Check to see if this is a special global used by LLVM, if so, emit it. |
| 930 | if (EmitSpecialLLVMGlobal(I)) { |
| 931 | if (TM.getRelocationModel() == Reloc::Static) { |
| 932 | if (I->getName() == "llvm.global_ctors") |
| 933 | O << ".reference .constructors_used\n"; |
| 934 | else if (I->getName() == "llvm.global_dtors") |
| 935 | O << ".reference .destructors_used\n"; |
| 936 | } |
| 937 | continue; |
| 938 | } |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 939 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 940 | std::string name = Mang->getValueName(I); |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 941 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 942 | if (I->hasHiddenVisibility()) |
| 943 | if (const char *Directive = TAI->getHiddenDirective()) |
| 944 | O << Directive << name << "\n"; |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 945 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 946 | Constant *C = I->getInitializer(); |
| 947 | const Type *Type = C->getType(); |
Duncan Sands | 8157ef4 | 2007-11-05 00:04:43 +0000 | [diff] [blame] | 948 | unsigned Size = TD->getABITypeSize(Type); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 949 | unsigned Align = TD->getPreferredAlignmentLog(I); |
| 950 | |
| 951 | if (C->isNullValue() && /* FIXME: Verify correct */ |
Dale Johannesen | 49c4412 | 2008-05-14 20:12:51 +0000 | [diff] [blame] | 952 | !I->hasSection() && (I->hasCommonLinkage() || |
| 953 | I->hasInternalLinkage() || I->hasWeakLinkage() || |
Dale Johannesen | 50085da | 2008-01-17 23:04:07 +0000 | [diff] [blame] | 954 | I->hasLinkOnceLinkage() || I->hasExternalLinkage())) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 955 | if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it. |
| 956 | if (I->hasExternalLinkage()) { |
| 957 | O << "\t.globl " << name << '\n'; |
| 958 | O << "\t.zerofill __DATA, __common, " << name << ", " |
| 959 | << Size << ", " << Align; |
| 960 | } else if (I->hasInternalLinkage()) { |
| 961 | SwitchToDataSection("\t.data", I); |
| 962 | O << TAI->getLCOMMDirective() << name << "," << Size << "," << Align; |
Dale Johannesen | caf1118 | 2008-05-16 20:09:25 +0000 | [diff] [blame] | 963 | } else if (!I->hasCommonLinkage()) { |
| 964 | O << "\t.globl " << name << "\n" |
| 965 | << TAI->getWeakDefDirective() << name << "\n"; |
| 966 | SwitchToDataSection("\t.section __DATA,__datacoal_nt,coalesced", I); |
| 967 | EmitAlignment(Align, I); |
| 968 | O << name << ":\t\t\t\t" << TAI->getCommentString() << " "; |
| 969 | PrintUnmangledNameSafely(I, O); |
| 970 | O << "\n"; |
| 971 | EmitGlobalConstant(C); |
| 972 | continue; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 973 | } else { |
| 974 | SwitchToDataSection("\t.data", I); |
| 975 | O << ".comm " << name << "," << Size; |
Chris Lattner | 9b7677d | 2008-01-02 19:35:16 +0000 | [diff] [blame] | 976 | // Darwin 9 and above support aligned common data. |
| 977 | if (Subtarget.isDarwin9()) |
| 978 | O << "," << Align; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 979 | } |
Chris Lattner | 2b638a7 | 2008-02-15 19:04:54 +0000 | [diff] [blame] | 980 | O << "\t\t" << TAI->getCommentString() << " '"; |
| 981 | PrintUnmangledNameSafely(I, O); |
| 982 | O << "'\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 983 | } else { |
| 984 | switch (I->getLinkage()) { |
| 985 | case GlobalValue::LinkOnceLinkage: |
| 986 | case GlobalValue::WeakLinkage: |
Dale Johannesen | 49c4412 | 2008-05-14 20:12:51 +0000 | [diff] [blame] | 987 | case GlobalValue::CommonLinkage: |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 988 | O << "\t.globl " << name << '\n' |
| 989 | << "\t.weak_definition " << name << '\n'; |
Dale Johannesen | 1c36512 | 2008-05-24 00:10:20 +0000 | [diff] [blame] | 990 | if (!I->isConstant()) |
| 991 | SwitchToDataSection("\t.section __DATA,__datacoal_nt,coalesced", I); |
| 992 | else { |
| 993 | const ArrayType *AT = dyn_cast<ArrayType>(Type); |
| 994 | if (AT && AT->getElementType()==Type::Int8Ty) |
| 995 | SwitchToDataSection("\t.section __TEXT,__const_coal,coalesced", I); |
| 996 | else |
| 997 | SwitchToDataSection("\t.section __DATA,__const_coal,coalesced", I); |
| 998 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 999 | break; |
| 1000 | case GlobalValue::AppendingLinkage: |
| 1001 | // FIXME: appending linkage variables should go into a section of |
| 1002 | // their name or something. For now, just emit them as external. |
| 1003 | case GlobalValue::ExternalLinkage: |
| 1004 | // If external or appending, declare as a global symbol |
| 1005 | O << "\t.globl " << name << "\n"; |
| 1006 | // FALL THROUGH |
| 1007 | case GlobalValue::InternalLinkage: |
| 1008 | if (I->isConstant()) { |
| 1009 | const ConstantArray *CVA = dyn_cast<ConstantArray>(C); |
| 1010 | if (TAI->getCStringSection() && CVA && CVA->isCString()) { |
| 1011 | SwitchToDataSection(TAI->getCStringSection(), I); |
| 1012 | break; |
| 1013 | } |
| 1014 | } |
Dale Johannesen | ae4f62f | 2008-01-23 00:58:14 +0000 | [diff] [blame] | 1015 | if (I->hasSection()) { |
| 1016 | // Honor all section names on Darwin; ObjC uses this |
| 1017 | std::string SectionName = ".section " + I->getSection(); |
| 1018 | SwitchToDataSection(SectionName.c_str()); |
| 1019 | } else if (!I->isConstant()) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1020 | SwitchToDataSection(TAI->getDataSection(), I); |
| 1021 | else { |
| 1022 | // Read-only data. |
| 1023 | bool HasReloc = C->ContainsRelocations(); |
| 1024 | if (HasReloc && |
| 1025 | TM.getRelocationModel() != Reloc::Static) |
| 1026 | SwitchToDataSection("\t.const_data\n"); |
| 1027 | else if (!HasReloc && Size == 4 && |
| 1028 | TAI->getFourByteConstantSection()) |
| 1029 | SwitchToDataSection(TAI->getFourByteConstantSection(), I); |
| 1030 | else if (!HasReloc && Size == 8 && |
| 1031 | TAI->getEightByteConstantSection()) |
| 1032 | SwitchToDataSection(TAI->getEightByteConstantSection(), I); |
| 1033 | else if (!HasReloc && Size == 16 && |
| 1034 | TAI->getSixteenByteConstantSection()) |
| 1035 | SwitchToDataSection(TAI->getSixteenByteConstantSection(), I); |
| 1036 | else if (TAI->getReadOnlySection()) |
| 1037 | SwitchToDataSection(TAI->getReadOnlySection(), I); |
| 1038 | else |
| 1039 | SwitchToDataSection(TAI->getDataSection(), I); |
| 1040 | } |
| 1041 | break; |
| 1042 | default: |
| 1043 | cerr << "Unknown linkage type!"; |
| 1044 | abort(); |
| 1045 | } |
| 1046 | |
| 1047 | EmitAlignment(Align, I); |
Chris Lattner | 2b638a7 | 2008-02-15 19:04:54 +0000 | [diff] [blame] | 1048 | O << name << ":\t\t\t\t" << TAI->getCommentString() << " '"; |
| 1049 | PrintUnmangledNameSafely(I, O); |
| 1050 | O << "'\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1051 | |
| 1052 | // If the initializer is a extern weak symbol, remember to emit the weak |
| 1053 | // reference! |
| 1054 | if (const GlobalValue *GV = dyn_cast<GlobalValue>(C)) |
| 1055 | if (GV->hasExternalWeakLinkage()) |
| 1056 | ExtWeakSymbols.insert(GV); |
| 1057 | |
| 1058 | EmitGlobalConstant(C); |
| 1059 | O << '\n'; |
| 1060 | } |
| 1061 | } |
| 1062 | |
| 1063 | bool isPPC64 = TD->getPointerSizeInBits() == 64; |
| 1064 | |
| 1065 | // Output stubs for dynamically-linked functions |
| 1066 | if (TM.getRelocationModel() == Reloc::PIC_) { |
| 1067 | for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end(); |
| 1068 | i != e; ++i) { |
Dale Johannesen | 3c78832 | 2008-01-11 00:54:37 +0000 | [diff] [blame] | 1069 | SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs," |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1070 | "pure_instructions,32"); |
| 1071 | EmitAlignment(4); |
Dale Johannesen | a21b520 | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 1072 | std::string p = *i; |
| 1073 | std::string L0p = (p[0]=='\"') ? "\"L0$" + p.substr(1) : "L0$" + p ; |
| 1074 | printSuffixedName(p, "$stub"); |
| 1075 | O << ":\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1076 | O << "\t.indirect_symbol " << *i << "\n"; |
| 1077 | O << "\tmflr r0\n"; |
Dale Johannesen | a21b520 | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 1078 | O << "\tbcl 20,31," << L0p << "\n"; |
| 1079 | O << L0p << ":\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1080 | O << "\tmflr r11\n"; |
Dale Johannesen | a21b520 | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 1081 | O << "\taddis r11,r11,ha16("; |
| 1082 | printSuffixedName(p, "$lazy_ptr"); |
| 1083 | O << "-" << L0p << ")\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1084 | O << "\tmtlr r0\n"; |
| 1085 | if (isPPC64) |
Dale Johannesen | a21b520 | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 1086 | O << "\tldu r12,lo16("; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1087 | else |
Dale Johannesen | a21b520 | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 1088 | O << "\tlwzu r12,lo16("; |
| 1089 | printSuffixedName(p, "$lazy_ptr"); |
| 1090 | O << "-" << L0p << ")(r11)\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1091 | O << "\tmtctr r12\n"; |
| 1092 | O << "\tbctr\n"; |
| 1093 | SwitchToDataSection(".lazy_symbol_pointer"); |
Dale Johannesen | a21b520 | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 1094 | printSuffixedName(p, "$lazy_ptr"); |
| 1095 | O << ":\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1096 | O << "\t.indirect_symbol " << *i << "\n"; |
| 1097 | if (isPPC64) |
| 1098 | O << "\t.quad dyld_stub_binding_helper\n"; |
| 1099 | else |
| 1100 | O << "\t.long dyld_stub_binding_helper\n"; |
| 1101 | } |
| 1102 | } else { |
| 1103 | for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end(); |
| 1104 | i != e; ++i) { |
Dale Johannesen | 3c78832 | 2008-01-11 00:54:37 +0000 | [diff] [blame] | 1105 | SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs," |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1106 | "pure_instructions,16"); |
| 1107 | EmitAlignment(4); |
Dale Johannesen | a21b520 | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 1108 | std::string p = *i; |
| 1109 | printSuffixedName(p, "$stub"); |
| 1110 | O << ":\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1111 | O << "\t.indirect_symbol " << *i << "\n"; |
Dale Johannesen | a21b520 | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 1112 | O << "\tlis r11,ha16("; |
| 1113 | printSuffixedName(p, "$lazy_ptr"); |
| 1114 | O << ")\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1115 | if (isPPC64) |
Dale Johannesen | a21b520 | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 1116 | O << "\tldu r12,lo16("; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1117 | else |
Dale Johannesen | a21b520 | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 1118 | O << "\tlwzu r12,lo16("; |
| 1119 | printSuffixedName(p, "$lazy_ptr"); |
| 1120 | O << ")(r11)\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1121 | O << "\tmtctr r12\n"; |
| 1122 | O << "\tbctr\n"; |
| 1123 | SwitchToDataSection(".lazy_symbol_pointer"); |
Dale Johannesen | a21b520 | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 1124 | printSuffixedName(p, "$lazy_ptr"); |
| 1125 | O << ":\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1126 | O << "\t.indirect_symbol " << *i << "\n"; |
| 1127 | if (isPPC64) |
| 1128 | O << "\t.quad dyld_stub_binding_helper\n"; |
| 1129 | else |
| 1130 | O << "\t.long dyld_stub_binding_helper\n"; |
| 1131 | } |
| 1132 | } |
| 1133 | |
| 1134 | O << "\n"; |
| 1135 | |
Dale Johannesen | 8553576 | 2008-04-02 00:25:04 +0000 | [diff] [blame] | 1136 | if (TAI->doesSupportExceptionHandling() && MMI) { |
Dale Johannesen | fb3ac73 | 2007-11-20 23:24:42 +0000 | [diff] [blame] | 1137 | // Add the (possibly multiple) personalities to the set of global values. |
Dale Johannesen | 8553576 | 2008-04-02 00:25:04 +0000 | [diff] [blame] | 1138 | // Only referenced functions get into the Personalities list. |
Dale Johannesen | fb3ac73 | 2007-11-20 23:24:42 +0000 | [diff] [blame] | 1139 | const std::vector<Function *>& Personalities = MMI->getPersonalities(); |
| 1140 | |
| 1141 | for (std::vector<Function *>::const_iterator I = Personalities.begin(), |
| 1142 | E = Personalities.end(); I != E; ++I) |
| 1143 | if (*I) GVStubs.insert("_" + (*I)->getName()); |
| 1144 | } |
| 1145 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1146 | // Output stubs for external and common global variables. |
Dan Gohman | 3f7d94b | 2007-10-03 19:26:29 +0000 | [diff] [blame] | 1147 | if (!GVStubs.empty()) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1148 | SwitchToDataSection(".non_lazy_symbol_pointer"); |
| 1149 | for (std::set<std::string>::iterator I = GVStubs.begin(), |
| 1150 | E = GVStubs.end(); I != E; ++I) { |
Dale Johannesen | a21b520 | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 1151 | std::string p = *I; |
| 1152 | printSuffixedName(p, "$non_lazy_ptr"); |
| 1153 | O << ":\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1154 | O << "\t.indirect_symbol " << *I << "\n"; |
| 1155 | if (isPPC64) |
| 1156 | O << "\t.quad\t0\n"; |
| 1157 | else |
| 1158 | O << "\t.long\t0\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1159 | } |
| 1160 | } |
| 1161 | |
| 1162 | // Emit initial debug information. |
| 1163 | DW.EndModule(); |
| 1164 | |
| 1165 | // Funny Darwin hack: This flag tells the linker that no global symbols |
| 1166 | // contain code that falls through to other global symbols (e.g. the obvious |
| 1167 | // implementation of multiple entry points). If this doesn't occur, the |
| 1168 | // linker can safely perform dead code stripping. Since LLVM never generates |
| 1169 | // code that does this, it is always safe to set. |
| 1170 | O << "\t.subsections_via_symbols\n"; |
| 1171 | |
Dan Gohman | 4a558a3 | 2007-07-25 19:33:14 +0000 | [diff] [blame] | 1172 | return AsmPrinter::doFinalization(M); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1173 | } |
| 1174 | |
| 1175 | |
| 1176 | |
| 1177 | /// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code |
| 1178 | /// for a MachineFunction to the given output stream, in a format that the |
| 1179 | /// Darwin assembler can deal with. |
| 1180 | /// |
| 1181 | FunctionPass *llvm::createPPCAsmPrinterPass(std::ostream &o, |
| 1182 | PPCTargetMachine &tm) { |
| 1183 | const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>(); |
| 1184 | |
| 1185 | if (Subtarget->isDarwin()) { |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 1186 | return new PPCDarwinAsmPrinter(o, tm, tm.getTargetAsmInfo()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1187 | } else { |
Anton Korobeynikov | 28f86d1 | 2008-08-08 18:22:59 +0000 | [diff] [blame^] | 1188 | return new PPCLinuxAsmPrinter(o, tm, tm.getTargetAsmInfo()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1189 | } |
| 1190 | } |