Chris Lattner | c0561f2 | 2010-04-07 18:10:38 +0000 | [diff] [blame] | 1 | //===-- AsmPrinter.cpp - Common AsmPrinter code ---------------------------===// |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 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. |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the AsmPrinter class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Evan Cheng | 932f022 | 2006-03-03 02:04:29 +0000 | [diff] [blame] | 14 | #include "llvm/CodeGen/AsmPrinter.h" |
Chris Lattner | 49cd664 | 2010-04-05 05:11:15 +0000 | [diff] [blame] | 15 | #include "DwarfDebug.h" |
| 16 | #include "DwarfException.h" |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 17 | #include "WinCodeViewLineTables.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/SmallString.h" |
| 19 | #include "llvm/ADT/Statistic.h" |
| 20 | #include "llvm/Analysis/ConstantFolding.h" |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/GCMetadataPrinter.h" |
Chris Lattner | 3b4fd32 | 2005-11-21 08:25:09 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineConstantPool.h" |
David Greene | 1924aab | 2009-11-13 21:34:57 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineFrameInfo.h" |
David Greene | fe37ab3 | 2009-08-18 19:22:55 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MachineFunction.h" |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 25 | #include "llvm/CodeGen/MachineInstrBundle.h" |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
David Greene | b71d1b2 | 2009-08-10 16:38:07 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/MachineLoopInfo.h" |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 29 | #include "llvm/IR/DataLayout.h" |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 30 | #include "llvm/IR/DebugInfo.h" |
| 31 | #include "llvm/IR/Mangler.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 32 | #include "llvm/IR/Module.h" |
| 33 | #include "llvm/IR/Operator.h" |
Chris Lattner | 736e31d | 2010-04-04 18:34:07 +0000 | [diff] [blame] | 34 | #include "llvm/MC/MCAsmInfo.h" |
Chris Lattner | 2b2954f | 2009-07-27 21:28:04 +0000 | [diff] [blame] | 35 | #include "llvm/MC/MCContext.h" |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 36 | #include "llvm/MC/MCExpr.h" |
David Greene | 3ac1ab8 | 2009-07-16 22:24:20 +0000 | [diff] [blame] | 37 | #include "llvm/MC/MCInst.h" |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 38 | #include "llvm/MC/MCSection.h" |
| 39 | #include "llvm/MC/MCStreamer.h" |
Chris Lattner | 7cb384d | 2009-09-12 23:02:08 +0000 | [diff] [blame] | 40 | #include "llvm/MC/MCSymbol.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 41 | #include "llvm/Support/ErrorHandling.h" |
| 42 | #include "llvm/Support/Format.h" |
| 43 | #include "llvm/Support/MathExtras.h" |
| 44 | #include "llvm/Support/Timer.h" |
David Blaikie | 6d9dbd5 | 2013-06-16 20:34:15 +0000 | [diff] [blame] | 45 | #include "llvm/Target/TargetFrameLowering.h" |
David Greene | 1924aab | 2009-11-13 21:34:57 +0000 | [diff] [blame] | 46 | #include "llvm/Target/TargetInstrInfo.h" |
Chris Lattner | 0336fdb | 2006-10-06 22:50:56 +0000 | [diff] [blame] | 47 | #include "llvm/Target/TargetLowering.h" |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 48 | #include "llvm/Target/TargetLoweringObjectFile.h" |
Rafael Espindola | a432997 | 2011-04-29 14:14:06 +0000 | [diff] [blame] | 49 | #include "llvm/Target/TargetOptions.h" |
Evan Cheng | da47e6e | 2008-03-15 00:03:38 +0000 | [diff] [blame] | 50 | #include "llvm/Target/TargetRegisterInfo.h" |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 51 | #include "llvm/Target/TargetSubtargetInfo.h" |
Rafael Espindola | 2cc546d | 2013-10-30 22:08:11 +0000 | [diff] [blame] | 52 | #include "llvm/Transforms/Utils/GlobalStatus.h" |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 53 | using namespace llvm; |
| 54 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 55 | #define DEBUG_TYPE "asm-printer" |
| 56 | |
Craig Topper | 4172a8a | 2013-07-16 01:17:10 +0000 | [diff] [blame] | 57 | static const char *const DWARFGroupName = "DWARF Emission"; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 58 | static const char *const DbgTimerName = "Debug Info Emission"; |
Craig Topper | 4172a8a | 2013-07-16 01:17:10 +0000 | [diff] [blame] | 59 | static const char *const EHTimerName = "DWARF Exception Writer"; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 60 | static const char *const CodeViewLineTablesGroupName = "CodeView Line Tables"; |
Torok Edwin | 9c42107 | 2010-04-07 10:44:46 +0000 | [diff] [blame] | 61 | |
Chris Lattner | 14c38ec | 2010-01-28 01:02:27 +0000 | [diff] [blame] | 62 | STATISTIC(EmittedInsts, "Number of machine instrs printed"); |
| 63 | |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 64 | char AsmPrinter::ID = 0; |
Chris Lattner | 11d53c1 | 2010-03-13 20:55:24 +0000 | [diff] [blame] | 65 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 66 | typedef DenseMap<GCStrategy*, std::unique_ptr<GCMetadataPrinter>> gcp_map_type; |
Chris Lattner | e00b59f | 2010-04-04 17:57:56 +0000 | [diff] [blame] | 67 | static gcp_map_type &getGCMap(void *&P) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 68 | if (!P) |
Chris Lattner | e00b59f | 2010-04-04 17:57:56 +0000 | [diff] [blame] | 69 | P = new gcp_map_type(); |
| 70 | return *(gcp_map_type*)P; |
| 71 | } |
| 72 | |
| 73 | |
Chris Lattner | e87f7bb | 2010-04-28 19:58:07 +0000 | [diff] [blame] | 74 | /// getGVAlignmentLog2 - Return the alignment to use for the specified global |
| 75 | /// value in log2 form. This rounds up to the preferred alignment if possible |
| 76 | /// and legal. |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 77 | static unsigned getGVAlignmentLog2(const GlobalValue *GV, const DataLayout &TD, |
Chris Lattner | e87f7bb | 2010-04-28 19:58:07 +0000 | [diff] [blame] | 78 | unsigned InBits = 0) { |
| 79 | unsigned NumBits = 0; |
| 80 | if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV)) |
| 81 | NumBits = TD.getPreferredAlignmentLog(GVar); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 82 | |
Chris Lattner | e87f7bb | 2010-04-28 19:58:07 +0000 | [diff] [blame] | 83 | // If InBits is specified, round it to it. |
| 84 | if (InBits > NumBits) |
| 85 | NumBits = InBits; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 86 | |
Chris Lattner | e87f7bb | 2010-04-28 19:58:07 +0000 | [diff] [blame] | 87 | // If the GV has a specified alignment, take it into account. |
| 88 | if (GV->getAlignment() == 0) |
| 89 | return NumBits; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 90 | |
Chris Lattner | e87f7bb | 2010-04-28 19:58:07 +0000 | [diff] [blame] | 91 | unsigned GVAlign = Log2_32(GV->getAlignment()); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 92 | |
Chris Lattner | e87f7bb | 2010-04-28 19:58:07 +0000 | [diff] [blame] | 93 | // If the GVAlign is larger than NumBits, or if we are required to obey |
| 94 | // NumBits because the GV has an assigned section, obey it. |
| 95 | if (GVAlign > NumBits || GV->hasSection()) |
| 96 | NumBits = GVAlign; |
| 97 | return NumBits; |
| 98 | } |
| 99 | |
Chris Lattner | b23569a | 2010-04-04 08:18:47 +0000 | [diff] [blame] | 100 | AsmPrinter::AsmPrinter(TargetMachine &tm, MCStreamer &Streamer) |
Owen Anderson | 90c579d | 2010-08-06 18:33:48 +0000 | [diff] [blame] | 101 | : MachineFunctionPass(ID), |
Joey Gouly | 715d98d | 2013-09-12 10:28:05 +0000 | [diff] [blame] | 102 | TM(tm), MAI(tm.getMCAsmInfo()), MII(tm.getInstrInfo()), |
Chris Lattner | 11d53c1 | 2010-03-13 20:55:24 +0000 | [diff] [blame] | 103 | OutContext(Streamer.getContext()), |
| 104 | OutStreamer(Streamer), |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 105 | LastMI(nullptr), LastFn(0), Counter(~0U), SetCounter(0) { |
| 106 | DD = nullptr; MMI = nullptr; LI = nullptr; MF = nullptr; |
| 107 | CurrentFnSym = CurrentFnSymForSize = nullptr; |
| 108 | GCMetadataPrinters = nullptr; |
Chris Lattner | 56591ab | 2010-02-02 23:37:42 +0000 | [diff] [blame] | 109 | VerboseAsm = Streamer.isVerboseAsm(); |
Evan Cheng | 42bf74b | 2009-03-25 01:47:28 +0000 | [diff] [blame] | 110 | } |
Chris Lattner | ed13893 | 2005-12-13 06:32:10 +0000 | [diff] [blame] | 111 | |
Gordon Henriksen | c317a60 | 2008-08-17 12:08:44 +0000 | [diff] [blame] | 112 | AsmPrinter::~AsmPrinter() { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 113 | assert(!DD && Handlers.empty() && "Debug/EH info didn't get finalized"); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 114 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 115 | if (GCMetadataPrinters) { |
Chris Lattner | e00b59f | 2010-04-04 17:57:56 +0000 | [diff] [blame] | 116 | gcp_map_type &GCMap = getGCMap(GCMetadataPrinters); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 117 | |
Chris Lattner | e00b59f | 2010-04-04 17:57:56 +0000 | [diff] [blame] | 118 | delete &GCMap; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 119 | GCMetadataPrinters = nullptr; |
Chris Lattner | e00b59f | 2010-04-04 17:57:56 +0000 | [diff] [blame] | 120 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 121 | |
Chris Lattner | 2b2954f | 2009-07-27 21:28:04 +0000 | [diff] [blame] | 122 | delete &OutStreamer; |
Gordon Henriksen | c317a60 | 2008-08-17 12:08:44 +0000 | [diff] [blame] | 123 | } |
Chris Lattner | ed13893 | 2005-12-13 06:32:10 +0000 | [diff] [blame] | 124 | |
Chris Lattner | b84822f | 2010-01-26 04:35:26 +0000 | [diff] [blame] | 125 | /// getFunctionNumber - Return a unique ID for the current function. |
| 126 | /// |
| 127 | unsigned AsmPrinter::getFunctionNumber() const { |
| 128 | return MF->getFunctionNumber(); |
| 129 | } |
| 130 | |
Dan Gohman | 0d805c3 | 2010-04-17 16:44:48 +0000 | [diff] [blame] | 131 | const TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const { |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 132 | return TM.getTargetLowering()->getObjFileLowering(); |
| 133 | } |
| 134 | |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 135 | /// getDataLayout - Return information about data layout. |
| 136 | const DataLayout &AsmPrinter::getDataLayout() const { |
| 137 | return *TM.getDataLayout(); |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 138 | } |
| 139 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 140 | const MCSubtargetInfo &AsmPrinter::getSubtargetInfo() const { |
| 141 | return TM.getSubtarget<MCSubtargetInfo>(); |
| 142 | } |
| 143 | |
| 144 | void AsmPrinter::EmitToStreamer(MCStreamer &S, const MCInst &Inst) { |
| 145 | S.EmitInstruction(Inst, getSubtargetInfo()); |
| 146 | } |
| 147 | |
Eric Christopher | 00297ba | 2013-04-27 01:07:52 +0000 | [diff] [blame] | 148 | StringRef AsmPrinter::getTargetTriple() const { |
| 149 | return TM.getTargetTriple(); |
| 150 | } |
| 151 | |
Chris Lattner | dabf07c | 2009-08-18 06:15:16 +0000 | [diff] [blame] | 152 | /// getCurrentSection() - Return the current section we are emitting to. |
| 153 | const MCSection *AsmPrinter::getCurrentSection() const { |
Peter Collingbourne | df39be6 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 154 | return OutStreamer.getCurrentSection().first; |
Chris Lattner | dabf07c | 2009-08-18 06:15:16 +0000 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 158 | |
Gordon Henriksen | ce22477 | 2008-01-07 01:30:38 +0000 | [diff] [blame] | 159 | void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const { |
Dan Gohman | 845012e | 2009-07-31 23:37:33 +0000 | [diff] [blame] | 160 | AU.setPreservesAll(); |
Gordon Henriksen | ce22477 | 2008-01-07 01:30:38 +0000 | [diff] [blame] | 161 | MachineFunctionPass::getAnalysisUsage(AU); |
Chris Lattner | 11d53c1 | 2010-03-13 20:55:24 +0000 | [diff] [blame] | 162 | AU.addRequired<MachineModuleInfo>(); |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 163 | AU.addRequired<GCModuleInfo>(); |
Chris Lattner | 3f53c83 | 2010-04-04 18:52:31 +0000 | [diff] [blame] | 164 | if (isVerbose()) |
David Greene | b71d1b2 | 2009-08-10 16:38:07 +0000 | [diff] [blame] | 165 | AU.addRequired<MachineLoopInfo>(); |
Gordon Henriksen | ce22477 | 2008-01-07 01:30:38 +0000 | [diff] [blame] | 166 | } |
| 167 | |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 168 | bool AsmPrinter::doInitialization(Module &M) { |
Chris Lattner | d32c8a5 | 2010-04-04 05:09:10 +0000 | [diff] [blame] | 169 | MMI = getAnalysisIfAvailable<MachineModuleInfo>(); |
Chris Lattner | 11d53c1 | 2010-03-13 20:55:24 +0000 | [diff] [blame] | 170 | MMI->AnalyzeModule(M); |
| 171 | |
Chris Lattner | f26e03b | 2009-07-31 17:42:42 +0000 | [diff] [blame] | 172 | // Initialize TargetLoweringObjectFile. |
| 173 | const_cast<TargetLoweringObjectFile&>(getObjFileLowering()) |
| 174 | .Initialize(OutContext, TM); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 175 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 176 | OutStreamer.InitSections(); |
Nico Rieck | 25746dd | 2013-07-04 21:37:26 +0000 | [diff] [blame] | 177 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 178 | Mang = new Mangler(TM.getDataLayout()); |
| 179 | |
| 180 | // Emit the version-min deplyment target directive if needed. |
| 181 | // |
| 182 | // FIXME: If we end up with a collection of these sorts of Darwin-specific |
| 183 | // or ELF-specific things, it may make sense to have a platform helper class |
| 184 | // that will work with the target helper class. For now keep it here, as the |
| 185 | // alternative is duplicated code in each of the target asm printers that |
| 186 | // use the directive, where it would need the same conditionalization |
| 187 | // anyway. |
| 188 | Triple TT(getTargetTriple()); |
| 189 | if (TT.isOSDarwin()) { |
| 190 | unsigned Major, Minor, Update; |
| 191 | TT.getOSVersion(Major, Minor, Update); |
| 192 | // If there is a version specified, Major will be non-zero. |
| 193 | if (Major) |
| 194 | OutStreamer.EmitVersionMin((TT.isMacOSX() ? |
| 195 | MCVM_OSXVersionMin : MCVM_IOSVersionMin), |
| 196 | Major, Minor, Update); |
| 197 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 198 | |
Bob Wilson | 812209a | 2009-09-30 22:06:26 +0000 | [diff] [blame] | 199 | // Allow the target to emit any magic that it wants at the start of the file. |
| 200 | EmitStartOfAsmFile(M); |
Rafael Espindola | 952b839 | 2008-12-03 11:01:37 +0000 | [diff] [blame] | 201 | |
Chris Lattner | a6594fc | 2010-01-25 18:58:59 +0000 | [diff] [blame] | 202 | // Very minimal debug info. It is ignored if we emit actual debug info. If we |
| 203 | // don't, this at least helps the user find where a global came from. |
Chris Lattner | 33adcfb | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 204 | if (MAI->hasSingleParameterDotFile()) { |
Chris Lattner | a6594fc | 2010-01-25 18:58:59 +0000 | [diff] [blame] | 205 | // .file "foo.c" |
| 206 | OutStreamer.EmitFileDirective(M.getModuleIdentifier()); |
Rafael Espindola | 952b839 | 2008-12-03 11:01:37 +0000 | [diff] [blame] | 207 | } |
| 208 | |
Bob Wilson | 812209a | 2009-09-30 22:06:26 +0000 | [diff] [blame] | 209 | GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>(); |
| 210 | assert(MI && "AsmPrinter didn't require GCModuleInfo?"); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 211 | for (auto &I : *MI) |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 212 | if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I)) |
Chris Lattner | 7d73c7f | 2010-04-04 07:39:04 +0000 | [diff] [blame] | 213 | MP->beginAssembly(*this); |
Chris Lattner | 91bead7 | 2010-04-03 21:35:55 +0000 | [diff] [blame] | 214 | |
| 215 | // Emit module-level inline asm if it exists. |
Chris Lattner | 47b7e5d | 2010-04-03 21:13:18 +0000 | [diff] [blame] | 216 | if (!M.getModuleInlineAsm().empty()) { |
| 217 | OutStreamer.AddComment("Start of file scope inline assembly"); |
| 218 | OutStreamer.AddBlankLine(); |
Chris Lattner | a38941d | 2010-11-17 07:53:40 +0000 | [diff] [blame] | 219 | EmitInlineAsm(M.getModuleInlineAsm()+"\n"); |
Chris Lattner | 47b7e5d | 2010-04-03 21:13:18 +0000 | [diff] [blame] | 220 | OutStreamer.AddComment("End of file scope inline assembly"); |
| 221 | OutStreamer.AddBlankLine(); |
| 222 | } |
Chris Lattner | 2c1b159 | 2006-01-23 23:47:53 +0000 | [diff] [blame] | 223 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 224 | if (MAI->doesSupportDebugInformation()) { |
| 225 | if (Triple(TM.getTargetTriple()).isKnownWindowsMSVCEnvironment()) { |
| 226 | Handlers.push_back(HandlerInfo(new WinCodeViewLineTables(this), |
| 227 | DbgTimerName, |
| 228 | CodeViewLineTablesGroupName)); |
| 229 | } else { |
| 230 | DD = new DwarfDebug(this, &M); |
| 231 | Handlers.push_back(HandlerInfo(DD, DbgTimerName, DWARFGroupName)); |
| 232 | } |
| 233 | } |
Anton Korobeynikov | d7e8ddc | 2011-01-14 21:57:45 +0000 | [diff] [blame] | 234 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 235 | DwarfException *DE = nullptr; |
Rafael Espindola | 2d57a64 | 2011-05-05 19:48:34 +0000 | [diff] [blame] | 236 | switch (MAI->getExceptionHandlingType()) { |
| 237 | case ExceptionHandling::None: |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 238 | break; |
Rafael Espindola | 2d57a64 | 2011-05-05 19:48:34 +0000 | [diff] [blame] | 239 | case ExceptionHandling::SjLj: |
Rafael Espindola | 2d57a64 | 2011-05-05 19:48:34 +0000 | [diff] [blame] | 240 | case ExceptionHandling::DwarfCFI: |
| 241 | DE = new DwarfCFIException(this); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 242 | break; |
Rafael Espindola | 2d57a64 | 2011-05-05 19:48:34 +0000 | [diff] [blame] | 243 | case ExceptionHandling::ARM: |
| 244 | DE = new ARMException(this); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 245 | break; |
Charles Davis | d652b13 | 2011-05-27 23:47:32 +0000 | [diff] [blame] | 246 | case ExceptionHandling::Win64: |
| 247 | DE = new Win64Exception(this); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 248 | break; |
| 249 | } |
| 250 | if (DE) |
| 251 | Handlers.push_back(HandlerInfo(DE, EHTimerName, DWARFGroupName)); |
| 252 | return false; |
| 253 | } |
| 254 | |
| 255 | static bool canBeHidden(const GlobalValue *GV, const MCAsmInfo &MAI) { |
| 256 | GlobalValue::LinkageTypes Linkage = GV->getLinkage(); |
| 257 | if (Linkage != GlobalValue::LinkOnceODRLinkage) |
Charles Davis | d652b13 | 2011-05-27 23:47:32 +0000 | [diff] [blame] | 258 | return false; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 259 | |
| 260 | if (!MAI.hasWeakDefCanBeHiddenDirective()) |
| 261 | return false; |
| 262 | |
| 263 | if (GV->hasUnnamedAddr()) |
| 264 | return true; |
| 265 | |
| 266 | // This is only used for MachO, so right now it doesn't really matter how |
| 267 | // we handle alias. Revisit this once the MachO linker implements aliases. |
| 268 | if (isa<GlobalAlias>(GV)) |
| 269 | return false; |
| 270 | |
| 271 | // If it is a non constant variable, it needs to be uniqued across shared |
| 272 | // objects. |
| 273 | if (const GlobalVariable *Var = dyn_cast<GlobalVariable>(GV)) { |
| 274 | if (!Var->isConstant()) |
| 275 | return false; |
Rafael Espindola | 2d57a64 | 2011-05-05 19:48:34 +0000 | [diff] [blame] | 276 | } |
Devang Patel | 14a55d9 | 2009-06-19 21:54:26 +0000 | [diff] [blame] | 277 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 278 | GlobalStatus GS; |
| 279 | if (!GlobalStatus::analyzeGlobal(GV, GS) && !GS.IsCompared) |
| 280 | return true; |
| 281 | |
| 282 | return false; |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 283 | } |
| 284 | |
Rafael Espindola | 2cc546d | 2013-10-30 22:08:11 +0000 | [diff] [blame] | 285 | void AsmPrinter::EmitLinkage(const GlobalValue *GV, MCSymbol *GVSym) const { |
| 286 | GlobalValue::LinkageTypes Linkage = GV->getLinkage(); |
Rafael Espindola | 3873361 | 2013-10-23 21:24:34 +0000 | [diff] [blame] | 287 | switch (Linkage) { |
Chris Lattner | a3e8883 | 2010-01-26 23:47:12 +0000 | [diff] [blame] | 288 | case GlobalValue::CommonLinkage: |
| 289 | case GlobalValue::LinkOnceAnyLinkage: |
| 290 | case GlobalValue::LinkOnceODRLinkage: |
| 291 | case GlobalValue::WeakAnyLinkage: |
| 292 | case GlobalValue::WeakODRLinkage: |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 293 | if (MAI->hasWeakDefDirective()) { |
Chris Lattner | a3e8883 | 2010-01-26 23:47:12 +0000 | [diff] [blame] | 294 | // .globl _foo |
| 295 | OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global); |
Bill Wendling | 55ae515 | 2010-08-20 22:05:50 +0000 | [diff] [blame] | 296 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 297 | if (!canBeHidden(GV, *MAI)) |
Bill Wendling | 55ae515 | 2010-08-20 22:05:50 +0000 | [diff] [blame] | 298 | // .weak_definition _foo |
| 299 | OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefinition); |
| 300 | else |
| 301 | OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefAutoPrivate); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 302 | } else if (MAI->hasLinkOnceDirective()) { |
Chris Lattner | a3e8883 | 2010-01-26 23:47:12 +0000 | [diff] [blame] | 303 | // .globl _foo |
| 304 | OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global); |
Duncan Sands | 5b1b3b7 | 2010-05-12 07:11:33 +0000 | [diff] [blame] | 305 | //NOTE: linkonce is handled by the section the symbol was assigned to. |
Chris Lattner | a3e8883 | 2010-01-26 23:47:12 +0000 | [diff] [blame] | 306 | } else { |
| 307 | // .weak _foo |
| 308 | OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Weak); |
| 309 | } |
Rafael Espindola | 3873361 | 2013-10-23 21:24:34 +0000 | [diff] [blame] | 310 | return; |
Chris Lattner | a3e8883 | 2010-01-26 23:47:12 +0000 | [diff] [blame] | 311 | case GlobalValue::AppendingLinkage: |
| 312 | // FIXME: appending linkage variables should go into a section of |
| 313 | // their name or something. For now, just emit them as external. |
| 314 | case GlobalValue::ExternalLinkage: |
| 315 | // If external or appending, declare as a global symbol. |
| 316 | // .globl _foo |
| 317 | OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global); |
Rafael Espindola | 3873361 | 2013-10-23 21:24:34 +0000 | [diff] [blame] | 318 | return; |
Chris Lattner | a3e8883 | 2010-01-26 23:47:12 +0000 | [diff] [blame] | 319 | case GlobalValue::PrivateLinkage: |
| 320 | case GlobalValue::InternalLinkage: |
Rafael Espindola | 3873361 | 2013-10-23 21:24:34 +0000 | [diff] [blame] | 321 | return; |
| 322 | case GlobalValue::AvailableExternallyLinkage: |
| 323 | llvm_unreachable("Should never emit this"); |
Rafael Espindola | 3873361 | 2013-10-23 21:24:34 +0000 | [diff] [blame] | 324 | case GlobalValue::ExternalWeakLinkage: |
| 325 | llvm_unreachable("Don't know how to emit these"); |
Chris Lattner | a3e8883 | 2010-01-26 23:47:12 +0000 | [diff] [blame] | 326 | } |
Rafael Espindola | 3873361 | 2013-10-23 21:24:34 +0000 | [diff] [blame] | 327 | llvm_unreachable("Unknown linkage type!"); |
Chris Lattner | a3e8883 | 2010-01-26 23:47:12 +0000 | [diff] [blame] | 328 | } |
| 329 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 330 | void AsmPrinter::getNameWithPrefix(SmallVectorImpl<char> &Name, |
| 331 | const GlobalValue *GV) const { |
| 332 | TM.getNameWithPrefix(Name, GV, *Mang); |
| 333 | } |
| 334 | |
Rafael Espindola | ffc7dca | 2013-10-29 17:07:16 +0000 | [diff] [blame] | 335 | MCSymbol *AsmPrinter::getSymbol(const GlobalValue *GV) const { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 336 | return TM.getSymbol(GV, *Mang); |
Rafael Espindola | ffc7dca | 2013-10-29 17:07:16 +0000 | [diff] [blame] | 337 | } |
Chris Lattner | a3e8883 | 2010-01-26 23:47:12 +0000 | [diff] [blame] | 338 | |
Chris Lattner | 48d64ba | 2010-01-19 04:39:15 +0000 | [diff] [blame] | 339 | /// EmitGlobalVariable - Emit the specified global variable to the .s file. |
| 340 | void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) { |
Rafael Espindola | 8439747 | 2011-04-05 15:51:32 +0000 | [diff] [blame] | 341 | if (GV->hasInitializer()) { |
| 342 | // Check to see if this is a special global used by LLVM, if so, emit it. |
| 343 | if (EmitSpecialLLVMGlobal(GV)) |
| 344 | return; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 345 | |
Rafael Espindola | 8439747 | 2011-04-05 15:51:32 +0000 | [diff] [blame] | 346 | if (isVerbose()) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 347 | GV->printAsOperand(OutStreamer.GetCommentOS(), |
Rafael Espindola | 8439747 | 2011-04-05 15:51:32 +0000 | [diff] [blame] | 348 | /*PrintType=*/false, GV->getParent()); |
| 349 | OutStreamer.GetCommentOS() << '\n'; |
| 350 | } |
Eric Christopher | 04386ca | 2010-05-25 21:49:43 +0000 | [diff] [blame] | 351 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 352 | |
Rafael Espindola | ffc7dca | 2013-10-29 17:07:16 +0000 | [diff] [blame] | 353 | MCSymbol *GVSym = getSymbol(GV); |
Chad Rosier | 348d542 | 2011-06-10 00:53:15 +0000 | [diff] [blame] | 354 | EmitVisibility(GVSym, GV->getVisibility(), !GV->isDeclaration()); |
Chris Lattner | 74bfe21 | 2010-01-19 05:38:33 +0000 | [diff] [blame] | 355 | |
Rafael Espindola | 8439747 | 2011-04-05 15:51:32 +0000 | [diff] [blame] | 356 | if (!GV->hasInitializer()) // External globals require no extra code. |
| 357 | return; |
| 358 | |
Chris Lattner | a800f7c | 2010-01-25 18:33:40 +0000 | [diff] [blame] | 359 | if (MAI->hasDotTypeDotSizeDirective()) |
| 360 | OutStreamer.EmitSymbolAttribute(GVSym, MCSA_ELF_TypeObject); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 361 | |
Chris Lattner | 74bfe21 | 2010-01-19 05:38:33 +0000 | [diff] [blame] | 362 | SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, TM); |
| 363 | |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 364 | const DataLayout *DL = TM.getDataLayout(); |
| 365 | uint64_t Size = DL->getTypeAllocSize(GV->getType()->getElementType()); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 366 | |
Chris Lattner | 567dd1f | 2010-04-26 18:46:46 +0000 | [diff] [blame] | 367 | // If the alignment is specified, we *must* obey it. Overaligning a global |
| 368 | // with a specified alignment is a prompt way to break globals emitted to |
| 369 | // sections and expected to be contiguous (e.g. ObjC metadata). |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 370 | unsigned AlignLog = getGVAlignmentLog2(GV, *DL); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 371 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 372 | for (const HandlerInfo &HI : Handlers) { |
| 373 | NamedRegionTimer T(HI.TimerName, HI.TimerGroupName, TimePassesIsEnabled); |
| 374 | HI.Handler->setSymbolSize(GVSym, Size); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 375 | } |
Richard Mitton | eb46def | 2013-09-23 17:56:20 +0000 | [diff] [blame] | 376 | |
Chris Lattner | 9744d61 | 2010-01-19 05:51:42 +0000 | [diff] [blame] | 377 | // Handle common and BSS local symbols (.lcomm). |
| 378 | if (GVKind.isCommon() || GVKind.isBSSLocal()) { |
Chris Lattner | 74bfe21 | 2010-01-19 05:38:33 +0000 | [diff] [blame] | 379 | if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it. |
Benjamin Kramer | 36a1601 | 2011-09-01 23:04:27 +0000 | [diff] [blame] | 380 | unsigned Align = 1 << AlignLog; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 381 | |
Chris Lattner | 814819f | 2010-01-19 06:25:51 +0000 | [diff] [blame] | 382 | // Handle common symbols. |
Chris Lattner | 9744d61 | 2010-01-19 05:51:42 +0000 | [diff] [blame] | 383 | if (GVKind.isCommon()) { |
Chris Lattner | 8048ebe | 2010-09-27 06:44:54 +0000 | [diff] [blame] | 384 | if (!getObjFileLowering().getCommDirectiveSupportsAlignment()) |
| 385 | Align = 0; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 386 | |
Chris Lattner | 9744d61 | 2010-01-19 05:51:42 +0000 | [diff] [blame] | 387 | // .comm _foo, 42, 4 |
Chris Lattner | 8048ebe | 2010-09-27 06:44:54 +0000 | [diff] [blame] | 388 | OutStreamer.EmitCommonSymbol(GVSym, Size, Align); |
Chris Lattner | 814819f | 2010-01-19 06:25:51 +0000 | [diff] [blame] | 389 | return; |
Chris Lattner | 9744d61 | 2010-01-19 05:51:42 +0000 | [diff] [blame] | 390 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 391 | |
Chris Lattner | 814819f | 2010-01-19 06:25:51 +0000 | [diff] [blame] | 392 | // Handle local BSS symbols. |
| 393 | if (MAI->hasMachoZeroFillDirective()) { |
| 394 | const MCSection *TheSection = |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 395 | getObjFileLowering().SectionForGlobal(GV, GVKind, *Mang, TM); |
Chris Lattner | 814819f | 2010-01-19 06:25:51 +0000 | [diff] [blame] | 396 | // .zerofill __DATA, __bss, _foo, 400, 5 |
Benjamin Kramer | 36a1601 | 2011-09-01 23:04:27 +0000 | [diff] [blame] | 397 | OutStreamer.EmitZerofill(TheSection, GVSym, Size, Align); |
Chris Lattner | 814819f | 2010-01-19 06:25:51 +0000 | [diff] [blame] | 398 | return; |
| 399 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 400 | |
Ulrich Weigand | dba37a3 | 2012-11-27 16:11:16 +0000 | [diff] [blame] | 401 | // Use .lcomm only if it supports user-specified alignment. |
| 402 | // Otherwise, while it would still be correct to use .lcomm in some |
| 403 | // cases (e.g. when Align == 1), the external assembler might enfore |
| 404 | // some -unknown- default alignment behavior, which could cause |
| 405 | // spurious differences between external and integrated assembler. |
| 406 | // Prefer to simply fall back to .local / .comm in this case. |
| 407 | if (MAI->getLCOMMDirectiveAlignmentType() != LCOMM::NoAlignment) { |
Chris Lattner | 814819f | 2010-01-19 06:25:51 +0000 | [diff] [blame] | 408 | // .lcomm _foo, 42 |
Benjamin Kramer | 36a1601 | 2011-09-01 23:04:27 +0000 | [diff] [blame] | 409 | OutStreamer.EmitLocalCommonSymbol(GVSym, Size, Align); |
Chris Lattner | 814819f | 2010-01-19 06:25:51 +0000 | [diff] [blame] | 410 | return; |
| 411 | } |
Chris Lattner | 8048ebe | 2010-09-27 06:44:54 +0000 | [diff] [blame] | 412 | |
Chris Lattner | 8048ebe | 2010-09-27 06:44:54 +0000 | [diff] [blame] | 413 | if (!getObjFileLowering().getCommDirectiveSupportsAlignment()) |
| 414 | Align = 0; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 415 | |
Chris Lattner | 814819f | 2010-01-19 06:25:51 +0000 | [diff] [blame] | 416 | // .local _foo |
Chris Lattner | a5ad93a | 2010-01-23 06:39:22 +0000 | [diff] [blame] | 417 | OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Local); |
Chris Lattner | 814819f | 2010-01-19 06:25:51 +0000 | [diff] [blame] | 418 | // .comm _foo, 42, 4 |
Chris Lattner | 8048ebe | 2010-09-27 06:44:54 +0000 | [diff] [blame] | 419 | OutStreamer.EmitCommonSymbol(GVSym, Size, Align); |
Chris Lattner | 74bfe21 | 2010-01-19 05:38:33 +0000 | [diff] [blame] | 420 | return; |
| 421 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 422 | |
Chris Lattner | 74bfe21 | 2010-01-19 05:38:33 +0000 | [diff] [blame] | 423 | const MCSection *TheSection = |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 424 | getObjFileLowering().SectionForGlobal(GV, GVKind, *Mang, TM); |
Chris Lattner | 74bfe21 | 2010-01-19 05:38:33 +0000 | [diff] [blame] | 425 | |
| 426 | // Handle the zerofill directive on darwin, which is a special form of BSS |
| 427 | // emission. |
| 428 | if (GVKind.isBSSExtern() && MAI->hasMachoZeroFillDirective()) { |
Chris Lattner | 4c4d0c0 | 2010-04-27 07:41:44 +0000 | [diff] [blame] | 429 | if (Size == 0) Size = 1; // zerofill of 0 bytes is undefined. |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 430 | |
Chris Lattner | 74bfe21 | 2010-01-19 05:38:33 +0000 | [diff] [blame] | 431 | // .globl _foo |
Chris Lattner | a5ad93a | 2010-01-23 06:39:22 +0000 | [diff] [blame] | 432 | OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global); |
Chris Lattner | 74bfe21 | 2010-01-19 05:38:33 +0000 | [diff] [blame] | 433 | // .zerofill __DATA, __common, _foo, 400, 5 |
| 434 | OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog); |
| 435 | return; |
| 436 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 437 | |
Eric Christopher | 02b46bc | 2010-05-25 21:28:50 +0000 | [diff] [blame] | 438 | // Handle thread local data for mach-o which requires us to output an |
| 439 | // additional structure of data and mangle the original symbol so that we |
| 440 | // can reference it later. |
Chris Lattner | dfe254b | 2010-09-05 20:33:40 +0000 | [diff] [blame] | 441 | // |
| 442 | // TODO: This should become an "emit thread local global" method on TLOF. |
| 443 | // All of this macho specific stuff should be sunk down into TLOFMachO and |
| 444 | // stuff like "TLSExtraDataSection" should no longer be part of the parent |
| 445 | // TLOF class. This will also make it more obvious that stuff like |
| 446 | // MCStreamer::EmitTBSSSymbol is macho specific and only called from macho |
| 447 | // specific code. |
Eric Christopher | 02b46bc | 2010-05-25 21:28:50 +0000 | [diff] [blame] | 448 | if (GVKind.isThreadLocal() && MAI->hasMachoTBSSDirective()) { |
Eric Christopher | 8116ca5 | 2010-05-22 00:10:22 +0000 | [diff] [blame] | 449 | // Emit the .tbss symbol |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 450 | MCSymbol *MangSym = |
Eric Christopher | 8116ca5 | 2010-05-22 00:10:22 +0000 | [diff] [blame] | 451 | OutContext.GetOrCreateSymbol(GVSym->getName() + Twine("$tlv$init")); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 452 | |
Eric Christopher | 1025175 | 2013-08-07 21:13:06 +0000 | [diff] [blame] | 453 | if (GVKind.isThreadBSS()) { |
| 454 | TheSection = getObjFileLowering().getTLSBSSSection(); |
Eric Christopher | 02b46bc | 2010-05-25 21:28:50 +0000 | [diff] [blame] | 455 | OutStreamer.EmitTBSSSymbol(TheSection, MangSym, Size, 1 << AlignLog); |
Eric Christopher | 1025175 | 2013-08-07 21:13:06 +0000 | [diff] [blame] | 456 | } else if (GVKind.isThreadData()) { |
Eric Christopher | 02b46bc | 2010-05-25 21:28:50 +0000 | [diff] [blame] | 457 | OutStreamer.SwitchSection(TheSection); |
| 458 | |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 459 | EmitAlignment(AlignLog, GV); |
Eric Christopher | 02b46bc | 2010-05-25 21:28:50 +0000 | [diff] [blame] | 460 | OutStreamer.EmitLabel(MangSym); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 461 | |
Eric Christopher | 02b46bc | 2010-05-25 21:28:50 +0000 | [diff] [blame] | 462 | EmitGlobalConstant(GV->getInitializer()); |
| 463 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 464 | |
Eric Christopher | 8116ca5 | 2010-05-22 00:10:22 +0000 | [diff] [blame] | 465 | OutStreamer.AddBlankLine(); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 466 | |
Eric Christopher | 8116ca5 | 2010-05-22 00:10:22 +0000 | [diff] [blame] | 467 | // Emit the variable struct for the runtime. |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 468 | const MCSection *TLVSect |
Eric Christopher | 8116ca5 | 2010-05-22 00:10:22 +0000 | [diff] [blame] | 469 | = getObjFileLowering().getTLSExtraDataSection(); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 470 | |
Eric Christopher | 8116ca5 | 2010-05-22 00:10:22 +0000 | [diff] [blame] | 471 | OutStreamer.SwitchSection(TLVSect); |
| 472 | // Emit the linkage here. |
Rafael Espindola | 2cc546d | 2013-10-30 22:08:11 +0000 | [diff] [blame] | 473 | EmitLinkage(GV, GVSym); |
Eric Christopher | 8116ca5 | 2010-05-22 00:10:22 +0000 | [diff] [blame] | 474 | OutStreamer.EmitLabel(GVSym); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 475 | |
Eric Christopher | 8116ca5 | 2010-05-22 00:10:22 +0000 | [diff] [blame] | 476 | // Three pointers in size: |
| 477 | // - __tlv_bootstrap - used to make sure support exists |
| 478 | // - spare pointer, used when mapped by the runtime |
| 479 | // - pointer to mangled symbol above with initializer |
Matt Arsenault | 6d9e013 | 2013-11-10 04:46:57 +0000 | [diff] [blame] | 480 | unsigned PtrSize = DL->getPointerTypeSize(GV->getType()); |
Eric Christopher | 7310064 | 2010-06-03 04:02:59 +0000 | [diff] [blame] | 481 | OutStreamer.EmitSymbolValue(GetExternalSymbolSymbol("_tlv_bootstrap"), |
Eric Christopher | fdfc81f | 2013-06-24 23:20:02 +0000 | [diff] [blame] | 482 | PtrSize); |
Eric Christopher | 68ca562 | 2013-01-09 01:57:54 +0000 | [diff] [blame] | 483 | OutStreamer.EmitIntValue(0, PtrSize); |
| 484 | OutStreamer.EmitSymbolValue(MangSym, PtrSize); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 485 | |
Eric Christopher | 8116ca5 | 2010-05-22 00:10:22 +0000 | [diff] [blame] | 486 | OutStreamer.AddBlankLine(); |
Eric Christopher | c1a887d | 2010-05-20 00:49:07 +0000 | [diff] [blame] | 487 | return; |
| 488 | } |
Chris Lattner | 74bfe21 | 2010-01-19 05:38:33 +0000 | [diff] [blame] | 489 | |
| 490 | OutStreamer.SwitchSection(TheSection); |
| 491 | |
Rafael Espindola | 2cc546d | 2013-10-30 22:08:11 +0000 | [diff] [blame] | 492 | EmitLinkage(GV, GVSym); |
Chris Lattner | f74e25f | 2010-04-26 18:30:45 +0000 | [diff] [blame] | 493 | EmitAlignment(AlignLog, GV); |
Chris Lattner | a3e8883 | 2010-01-26 23:47:12 +0000 | [diff] [blame] | 494 | |
Chris Lattner | 4c8c668 | 2010-01-19 06:41:24 +0000 | [diff] [blame] | 495 | OutStreamer.EmitLabel(GVSym); |
Chris Lattner | 74bfe21 | 2010-01-19 05:38:33 +0000 | [diff] [blame] | 496 | |
| 497 | EmitGlobalConstant(GV->getInitializer()); |
| 498 | |
| 499 | if (MAI->hasDotTypeDotSizeDirective()) |
Chris Lattner | 1947f24 | 2010-01-25 07:53:05 +0000 | [diff] [blame] | 500 | // .size foo, 42 |
Chris Lattner | 99328ad | 2010-01-25 07:52:13 +0000 | [diff] [blame] | 501 | OutStreamer.EmitELFSize(GVSym, MCConstantExpr::Create(Size, OutContext)); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 502 | |
Chris Lattner | 0fd90fd | 2010-01-22 19:52:01 +0000 | [diff] [blame] | 503 | OutStreamer.AddBlankLine(); |
Chris Lattner | 48d64ba | 2010-01-19 04:39:15 +0000 | [diff] [blame] | 504 | } |
| 505 | |
Chris Lattner | b11caed | 2010-01-26 23:18:44 +0000 | [diff] [blame] | 506 | /// EmitFunctionHeader - This method emits the header for the current |
| 507 | /// function. |
| 508 | void AsmPrinter::EmitFunctionHeader() { |
| 509 | // Print out constants referenced by the function |
Chris Lattner | a240619 | 2010-01-28 00:19:24 +0000 | [diff] [blame] | 510 | EmitConstantPool(); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 511 | |
Chris Lattner | b11caed | 2010-01-26 23:18:44 +0000 | [diff] [blame] | 512 | // Print the 'header' of function. |
Chris Lattner | b11caed | 2010-01-26 23:18:44 +0000 | [diff] [blame] | 513 | const Function *F = MF->getFunction(); |
| 514 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 515 | OutStreamer.SwitchSection( |
| 516 | getObjFileLowering().SectionForGlobal(F, *Mang, TM)); |
Chris Lattner | be9dfce | 2010-01-28 00:05:10 +0000 | [diff] [blame] | 517 | EmitVisibility(CurrentFnSym, F->getVisibility()); |
Chris Lattner | b11caed | 2010-01-26 23:18:44 +0000 | [diff] [blame] | 518 | |
Rafael Espindola | 2cc546d | 2013-10-30 22:08:11 +0000 | [diff] [blame] | 519 | EmitLinkage(F, CurrentFnSym); |
Chris Lattner | b406a81 | 2010-01-26 23:41:48 +0000 | [diff] [blame] | 520 | EmitAlignment(MF->getAlignment(), F); |
| 521 | |
Chris Lattner | b11caed | 2010-01-26 23:18:44 +0000 | [diff] [blame] | 522 | if (MAI->hasDotTypeDotSizeDirective()) |
| 523 | OutStreamer.EmitSymbolAttribute(CurrentFnSym, MCSA_ELF_TypeFunction); |
| 524 | |
Chris Lattner | 3f53c83 | 2010-04-04 18:52:31 +0000 | [diff] [blame] | 525 | if (isVerbose()) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 526 | F->printAsOperand(OutStreamer.GetCommentOS(), |
Chris Lattner | 9bc20ab | 2010-01-26 23:53:39 +0000 | [diff] [blame] | 527 | /*PrintType=*/false, F->getParent()); |
| 528 | OutStreamer.GetCommentOS() << '\n'; |
Chris Lattner | b11caed | 2010-01-26 23:18:44 +0000 | [diff] [blame] | 529 | } |
Chris Lattner | b11caed | 2010-01-26 23:18:44 +0000 | [diff] [blame] | 530 | |
Dan Gohman | f451cb8 | 2010-02-10 16:03:48 +0000 | [diff] [blame] | 531 | // Emit the CurrentFnSym. This is a virtual function to allow targets to |
Chris Lattner | 2cf7251 | 2010-01-27 07:21:55 +0000 | [diff] [blame] | 532 | // do their wild and crazy things as required. |
| 533 | EmitFunctionEntryLabel(); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 534 | |
Chris Lattner | 9cc0da9 | 2010-03-15 20:39:00 +0000 | [diff] [blame] | 535 | // If the function had address-taken blocks that got deleted, then we have |
| 536 | // references to the dangling symbols. Emit them at the start of the function |
| 537 | // so that we don't get references to undefined symbols. |
| 538 | std::vector<MCSymbol*> DeadBlockSyms; |
| 539 | MMI->takeDeletedSymbolsForFunction(F, DeadBlockSyms); |
| 540 | for (unsigned i = 0, e = DeadBlockSyms.size(); i != e; ++i) { |
| 541 | OutStreamer.AddComment("Address taken block that was later removed"); |
| 542 | OutStreamer.EmitLabel(DeadBlockSyms[i]); |
| 543 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 544 | |
Chris Lattner | b11caed | 2010-01-26 23:18:44 +0000 | [diff] [blame] | 545 | // Emit pre-function debug and/or EH information. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 546 | for (const HandlerInfo &HI : Handlers) { |
| 547 | NamedRegionTimer T(HI.TimerName, HI.TimerGroupName, TimePassesIsEnabled); |
| 548 | HI.Handler->beginFunction(MF); |
Torok Edwin | 9c42107 | 2010-04-07 10:44:46 +0000 | [diff] [blame] | 549 | } |
Peter Collingbourne | 0abc362 | 2013-10-20 02:16:21 +0000 | [diff] [blame] | 550 | |
| 551 | // Emit the prefix data. |
| 552 | if (F->hasPrefixData()) |
| 553 | EmitGlobalConstant(F->getPrefixData()); |
Chris Lattner | b11caed | 2010-01-26 23:18:44 +0000 | [diff] [blame] | 554 | } |
| 555 | |
Chris Lattner | 2cf7251 | 2010-01-27 07:21:55 +0000 | [diff] [blame] | 556 | /// EmitFunctionEntryLabel - Emit the label that is the entrypoint for the |
| 557 | /// function. This can be overridden by targets as required to do custom stuff. |
| 558 | void AsmPrinter::EmitFunctionEntryLabel() { |
Chris Lattner | b4202db | 2010-05-06 00:05:37 +0000 | [diff] [blame] | 559 | // The function label could have already been emitted if two symbols end up |
| 560 | // conflicting due to asm renaming. Detect this and emit an error. |
Jim Grosbach | 3e96531 | 2012-05-18 19:12:01 +0000 | [diff] [blame] | 561 | if (CurrentFnSym->isUndefined()) |
Chris Lattner | b4202db | 2010-05-06 00:05:37 +0000 | [diff] [blame] | 562 | return OutStreamer.EmitLabel(CurrentFnSym); |
| 563 | |
| 564 | report_fatal_error("'" + Twine(CurrentFnSym->getName()) + |
| 565 | "' label emitted multiple times to assembly file"); |
Chris Lattner | 2cf7251 | 2010-01-27 07:21:55 +0000 | [diff] [blame] | 566 | } |
Chris Lattner | b11caed | 2010-01-26 23:18:44 +0000 | [diff] [blame] | 567 | |
Chad Rosier | c53ade2 | 2012-09-07 18:16:38 +0000 | [diff] [blame] | 568 | /// emitComments - Pretty-print comments for instructions. |
| 569 | static void emitComments(const MachineInstr &MI, raw_ostream &CommentOS) { |
Devang Patel | e025e96 | 2010-06-29 22:29:15 +0000 | [diff] [blame] | 570 | const MachineFunction *MF = MI.getParent()->getParent(); |
| 571 | const TargetMachine &TM = MF->getTarget(); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 572 | |
Chris Lattner | 47529c9 | 2010-02-10 00:47:53 +0000 | [diff] [blame] | 573 | // Check for spills and reloads |
| 574 | int FI; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 575 | |
Chris Lattner | 47529c9 | 2010-02-10 00:47:53 +0000 | [diff] [blame] | 576 | const MachineFrameInfo *FrameInfo = MF->getFrameInfo(); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 577 | |
Chris Lattner | 47529c9 | 2010-02-10 00:47:53 +0000 | [diff] [blame] | 578 | // We assume a single instruction only has a spill or reload, not |
| 579 | // both. |
| 580 | const MachineMemOperand *MMO; |
| 581 | if (TM.getInstrInfo()->isLoadFromStackSlotPostFE(&MI, FI)) { |
| 582 | if (FrameInfo->isSpillSlotObjectIndex(FI)) { |
| 583 | MMO = *MI.memoperands_begin(); |
| 584 | CommentOS << MMO->getSize() << "-byte Reload\n"; |
| 585 | } |
| 586 | } else if (TM.getInstrInfo()->hasLoadFromStackSlot(&MI, MMO, FI)) { |
| 587 | if (FrameInfo->isSpillSlotObjectIndex(FI)) |
| 588 | CommentOS << MMO->getSize() << "-byte Folded Reload\n"; |
| 589 | } else if (TM.getInstrInfo()->isStoreToStackSlotPostFE(&MI, FI)) { |
| 590 | if (FrameInfo->isSpillSlotObjectIndex(FI)) { |
| 591 | MMO = *MI.memoperands_begin(); |
| 592 | CommentOS << MMO->getSize() << "-byte Spill\n"; |
| 593 | } |
| 594 | } else if (TM.getInstrInfo()->hasStoreToStackSlot(&MI, MMO, FI)) { |
| 595 | if (FrameInfo->isSpillSlotObjectIndex(FI)) |
| 596 | CommentOS << MMO->getSize() << "-byte Folded Spill\n"; |
| 597 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 598 | |
Chris Lattner | 47529c9 | 2010-02-10 00:47:53 +0000 | [diff] [blame] | 599 | // Check for spill-induced copies |
Jakob Stoklund Olesen | 04c528a | 2010-07-16 04:45:42 +0000 | [diff] [blame] | 600 | if (MI.getAsmPrinterFlag(MachineInstr::ReloadReuse)) |
| 601 | CommentOS << " Reload Reuse\n"; |
Chris Lattner | 47529c9 | 2010-02-10 00:47:53 +0000 | [diff] [blame] | 602 | } |
| 603 | |
Chad Rosier | c53ade2 | 2012-09-07 18:16:38 +0000 | [diff] [blame] | 604 | /// emitImplicitDef - This method emits the specified machine instruction |
Chris Lattner | 17fedf2 | 2010-04-04 18:58:53 +0000 | [diff] [blame] | 605 | /// that is an implicit def. |
Justin Holewinski | 43777c3 | 2013-10-11 12:39:36 +0000 | [diff] [blame] | 606 | void AsmPrinter::emitImplicitDef(const MachineInstr *MI) const { |
Chris Lattner | 17fedf2 | 2010-04-04 18:58:53 +0000 | [diff] [blame] | 607 | unsigned RegNo = MI->getOperand(0).getReg(); |
Justin Holewinski | 43777c3 | 2013-10-11 12:39:36 +0000 | [diff] [blame] | 608 | OutStreamer.AddComment(Twine("implicit-def: ") + |
| 609 | TM.getRegisterInfo()->getName(RegNo)); |
| 610 | OutStreamer.AddBlankLine(); |
Chris Lattner | 17fedf2 | 2010-04-04 18:58:53 +0000 | [diff] [blame] | 611 | } |
| 612 | |
Chad Rosier | c53ade2 | 2012-09-07 18:16:38 +0000 | [diff] [blame] | 613 | static void emitKill(const MachineInstr *MI, AsmPrinter &AP) { |
Chris Lattner | 17fedf2 | 2010-04-04 18:58:53 +0000 | [diff] [blame] | 614 | std::string Str = "kill:"; |
| 615 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 616 | const MachineOperand &Op = MI->getOperand(i); |
| 617 | assert(Op.isReg() && "KILL instruction must have only register operands"); |
| 618 | Str += ' '; |
| 619 | Str += AP.TM.getRegisterInfo()->getName(Op.getReg()); |
| 620 | Str += (Op.isDef() ? "<def>" : "<kill>"); |
| 621 | } |
| 622 | AP.OutStreamer.AddComment(Str); |
| 623 | AP.OutStreamer.AddBlankLine(); |
| 624 | } |
| 625 | |
Chad Rosier | c53ade2 | 2012-09-07 18:16:38 +0000 | [diff] [blame] | 626 | /// emitDebugValueComment - This method handles the target-independent form |
Dale Johannesen | 343b42e | 2010-04-07 01:15:14 +0000 | [diff] [blame] | 627 | /// of DBG_VALUE, returning true if it was able to do so. A false return |
| 628 | /// means the target will need to handle MI in EmitInstruction. |
Chad Rosier | c53ade2 | 2012-09-07 18:16:38 +0000 | [diff] [blame] | 629 | static bool emitDebugValueComment(const MachineInstr *MI, AsmPrinter &AP) { |
Dale Johannesen | 343b42e | 2010-04-07 01:15:14 +0000 | [diff] [blame] | 630 | // This code handles only the 3-operand target-independent form. |
| 631 | if (MI->getNumOperands() != 3) |
| 632 | return false; |
Chris Lattner | 47529c9 | 2010-02-10 00:47:53 +0000 | [diff] [blame] | 633 | |
Benjamin Kramer | a592e67 | 2010-04-07 09:26:51 +0000 | [diff] [blame] | 634 | SmallString<128> Str; |
| 635 | raw_svector_ostream OS(Str); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 636 | OS << "DEBUG_VALUE: "; |
Benjamin Kramer | a592e67 | 2010-04-07 09:26:51 +0000 | [diff] [blame] | 637 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 638 | DIVariable V(MI->getOperand(2).getMetadata()); |
David Blaikie | 702ff96 | 2013-06-15 00:33:47 +0000 | [diff] [blame] | 639 | if (V.getContext().isSubprogram()) { |
| 640 | StringRef Name = DISubprogram(V.getContext()).getDisplayName(); |
| 641 | if (!Name.empty()) |
| 642 | OS << Name << ":"; |
| 643 | } |
Benjamin Kramer | a592e67 | 2010-04-07 09:26:51 +0000 | [diff] [blame] | 644 | OS << V.getName() << " <- "; |
Dale Johannesen | 343b42e | 2010-04-07 01:15:14 +0000 | [diff] [blame] | 645 | |
Adrian Prantl | 3517640 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 646 | // The second operand is only an offset if it's an immediate. |
| 647 | bool Deref = MI->getOperand(0).isReg() && MI->getOperand(1).isImm(); |
| 648 | int64_t Offset = Deref ? MI->getOperand(1).getImm() : 0; |
| 649 | |
Dale Johannesen | 343b42e | 2010-04-07 01:15:14 +0000 | [diff] [blame] | 650 | // Register or immediate value. Register 0 means undef. |
| 651 | if (MI->getOperand(0).isFPImm()) { |
| 652 | APFloat APF = APFloat(MI->getOperand(0).getFPImm()->getValueAPF()); |
| 653 | if (MI->getOperand(0).getFPImm()->getType()->isFloatTy()) { |
Benjamin Kramer | a592e67 | 2010-04-07 09:26:51 +0000 | [diff] [blame] | 654 | OS << (double)APF.convertToFloat(); |
Dale Johannesen | 343b42e | 2010-04-07 01:15:14 +0000 | [diff] [blame] | 655 | } else if (MI->getOperand(0).getFPImm()->getType()->isDoubleTy()) { |
Benjamin Kramer | a592e67 | 2010-04-07 09:26:51 +0000 | [diff] [blame] | 656 | OS << APF.convertToDouble(); |
Dale Johannesen | 343b42e | 2010-04-07 01:15:14 +0000 | [diff] [blame] | 657 | } else { |
| 658 | // There is no good way to print long double. Convert a copy to |
| 659 | // double. Ah well, it's only a comment. |
| 660 | bool ignored; |
| 661 | APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, |
| 662 | &ignored); |
Benjamin Kramer | a592e67 | 2010-04-07 09:26:51 +0000 | [diff] [blame] | 663 | OS << "(long double) " << APF.convertToDouble(); |
Dale Johannesen | 343b42e | 2010-04-07 01:15:14 +0000 | [diff] [blame] | 664 | } |
| 665 | } else if (MI->getOperand(0).isImm()) { |
Benjamin Kramer | a592e67 | 2010-04-07 09:26:51 +0000 | [diff] [blame] | 666 | OS << MI->getOperand(0).getImm(); |
Devang Patel | 8594d42 | 2011-06-24 20:46:11 +0000 | [diff] [blame] | 667 | } else if (MI->getOperand(0).isCImm()) { |
| 668 | MI->getOperand(0).getCImm()->getValue().print(OS, false /*isSigned*/); |
Chris Lattner | 00d1390 | 2010-04-07 22:29:10 +0000 | [diff] [blame] | 669 | } else { |
David Blaikie | 6d9dbd5 | 2013-06-16 20:34:15 +0000 | [diff] [blame] | 670 | unsigned Reg; |
| 671 | if (MI->getOperand(0).isReg()) { |
| 672 | Reg = MI->getOperand(0).getReg(); |
David Blaikie | 6d9dbd5 | 2013-06-16 20:34:15 +0000 | [diff] [blame] | 673 | } else { |
| 674 | assert(MI->getOperand(0).isFI() && "Unknown operand type"); |
| 675 | const TargetFrameLowering *TFI = AP.TM.getFrameLowering(); |
Eric Christopher | fdfc81f | 2013-06-24 23:20:02 +0000 | [diff] [blame] | 676 | Offset += TFI->getFrameIndexReference(*AP.MF, |
| 677 | MI->getOperand(0).getIndex(), Reg); |
David Blaikie | 6d9dbd5 | 2013-06-16 20:34:15 +0000 | [diff] [blame] | 678 | Deref = true; |
| 679 | } |
David Blaikie | f14b44c | 2013-06-15 15:52:58 +0000 | [diff] [blame] | 680 | if (Reg == 0) { |
Dale Johannesen | 343b42e | 2010-04-07 01:15:14 +0000 | [diff] [blame] | 681 | // Suppress offset, it is not meaningful here. |
Benjamin Kramer | a592e67 | 2010-04-07 09:26:51 +0000 | [diff] [blame] | 682 | OS << "undef"; |
Dale Johannesen | 343b42e | 2010-04-07 01:15:14 +0000 | [diff] [blame] | 683 | // NOTE: Want this comment at start of line, don't emit with AddComment. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 684 | AP.OutStreamer.emitRawComment(OS.str()); |
Dale Johannesen | 343b42e | 2010-04-07 01:15:14 +0000 | [diff] [blame] | 685 | return true; |
| 686 | } |
David Blaikie | f14b44c | 2013-06-15 15:52:58 +0000 | [diff] [blame] | 687 | if (Deref) |
| 688 | OS << '['; |
| 689 | OS << AP.TM.getRegisterInfo()->getName(Reg); |
Chris Lattner | 00d1390 | 2010-04-07 22:29:10 +0000 | [diff] [blame] | 690 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 691 | |
David Blaikie | f14b44c | 2013-06-15 15:52:58 +0000 | [diff] [blame] | 692 | if (Deref) |
Adrian Prantl | 3517640 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 693 | OS << '+' << Offset << ']'; |
| 694 | |
Dale Johannesen | 343b42e | 2010-04-07 01:15:14 +0000 | [diff] [blame] | 695 | // NOTE: Want this comment at start of line, don't emit with AddComment. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 696 | AP.OutStreamer.emitRawComment(OS.str()); |
Dale Johannesen | 343b42e | 2010-04-07 01:15:14 +0000 | [diff] [blame] | 697 | return true; |
| 698 | } |
Chris Lattner | 47529c9 | 2010-02-10 00:47:53 +0000 | [diff] [blame] | 699 | |
Rafael Espindola | e29887b | 2011-05-10 18:39:09 +0000 | [diff] [blame] | 700 | AsmPrinter::CFIMoveType AsmPrinter::needsCFIMoves() { |
Rafael Espindola | fc2bb8c | 2011-05-25 03:44:17 +0000 | [diff] [blame] | 701 | if (MAI->getExceptionHandlingType() == ExceptionHandling::DwarfCFI && |
| 702 | MF->getFunction()->needsUnwindTableEntry()) |
| 703 | return CFI_M_EH; |
Rafael Espindola | a432997 | 2011-04-29 14:14:06 +0000 | [diff] [blame] | 704 | |
Rafael Espindola | f2b0423 | 2011-05-06 14:56:22 +0000 | [diff] [blame] | 705 | if (MMI->hasDebugInfo()) |
Rafael Espindola | e29887b | 2011-05-10 18:39:09 +0000 | [diff] [blame] | 706 | return CFI_M_Debug; |
Rafael Espindola | a432997 | 2011-04-29 14:14:06 +0000 | [diff] [blame] | 707 | |
Rafael Espindola | e29887b | 2011-05-10 18:39:09 +0000 | [diff] [blame] | 708 | return CFI_M_None; |
Rafael Espindola | a432997 | 2011-04-29 14:14:06 +0000 | [diff] [blame] | 709 | } |
| 710 | |
Charles Davis | f463370 | 2011-05-28 04:21:04 +0000 | [diff] [blame] | 711 | bool AsmPrinter::needsSEHMoves() { |
| 712 | return MAI->getExceptionHandlingType() == ExceptionHandling::Win64 && |
| 713 | MF->getFunction()->needsUnwindTableEntry(); |
| 714 | } |
| 715 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 716 | void AsmPrinter::emitCFIInstruction(const MachineInstr &MI) { |
| 717 | ExceptionHandling::ExceptionsType ExceptionHandlingType = |
| 718 | MAI->getExceptionHandlingType(); |
| 719 | if (ExceptionHandlingType != ExceptionHandling::DwarfCFI && |
| 720 | ExceptionHandlingType != ExceptionHandling::ARM) |
Rafael Espindola | f0adba9 | 2011-04-15 15:11:06 +0000 | [diff] [blame] | 721 | return; |
Rafael Espindola | f0adba9 | 2011-04-15 15:11:06 +0000 | [diff] [blame] | 722 | |
Rafael Espindola | e29887b | 2011-05-10 18:39:09 +0000 | [diff] [blame] | 723 | if (needsCFIMoves() == CFI_M_None) |
Rafael Espindola | a432997 | 2011-04-29 14:14:06 +0000 | [diff] [blame] | 724 | return; |
| 725 | |
Bill Wendling | e060a5c | 2011-07-19 00:02:51 +0000 | [diff] [blame] | 726 | if (MMI->getCompactUnwindEncoding() != 0) |
| 727 | OutStreamer.EmitCompactUnwindEncoding(MMI->getCompactUnwindEncoding()); |
| 728 | |
Bill Wendling | 873e392 | 2013-08-15 20:25:44 +0000 | [diff] [blame] | 729 | const MachineModuleInfo &MMI = MF->getMMI(); |
Bill Wendling | 7d938ad | 2013-08-15 20:21:49 +0000 | [diff] [blame] | 730 | const std::vector<MCCFIInstruction> &Instrs = MMI.getFrameInstructions(); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 731 | unsigned CFIIndex = MI.getOperand(0).getCFIIndex(); |
| 732 | const MCCFIInstruction &CFI = Instrs[CFIIndex]; |
| 733 | emitCFIInstruction(CFI); |
Rafael Espindola | f0adba9 | 2011-04-15 15:11:06 +0000 | [diff] [blame] | 734 | } |
| 735 | |
Chris Lattner | 14c38ec | 2010-01-28 01:02:27 +0000 | [diff] [blame] | 736 | /// EmitFunctionBody - This method emits the body and trailer for a |
| 737 | /// function. |
| 738 | void AsmPrinter::EmitFunctionBody() { |
Chris Lattner | edfe776 | 2010-01-28 01:58:58 +0000 | [diff] [blame] | 739 | // Emit target-specific gunk before the function body. |
| 740 | EmitFunctionBodyStart(); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 741 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 742 | bool ShouldPrintDebugScopes = MMI->hasDebugInfo(); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 743 | |
Chris Lattner | 14c38ec | 2010-01-28 01:02:27 +0000 | [diff] [blame] | 744 | // Print out code for the function. |
| 745 | bool HasAnyRealCode = false; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 746 | const MachineInstr *LastMI = nullptr; |
| 747 | for (auto &MBB : *MF) { |
Chris Lattner | 14c38ec | 2010-01-28 01:02:27 +0000 | [diff] [blame] | 748 | // Print a label for the basic block. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 749 | EmitBasicBlockStart(MBB); |
| 750 | for (auto &MI : MBB) { |
| 751 | LastMI = &MI; |
Bill Wendling | dc86704 | 2010-07-16 22:51:10 +0000 | [diff] [blame] | 752 | |
Chris Lattner | 14c38ec | 2010-01-28 01:02:27 +0000 | [diff] [blame] | 753 | // Print the assembly for the instruction. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 754 | if (!MI.isPosition() && !MI.isImplicitDef() && !MI.isKill() && |
| 755 | !MI.isDebugValue()) { |
Chris Lattner | 14c38ec | 2010-01-28 01:02:27 +0000 | [diff] [blame] | 756 | HasAnyRealCode = true; |
Evan Cheng | ed33b13 | 2010-04-27 19:38:45 +0000 | [diff] [blame] | 757 | ++EmittedInsts; |
| 758 | } |
| 759 | |
Torok Edwin | 9c42107 | 2010-04-07 10:44:46 +0000 | [diff] [blame] | 760 | if (ShouldPrintDebugScopes) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 761 | for (const HandlerInfo &HI : Handlers) { |
| 762 | NamedRegionTimer T(HI.TimerName, HI.TimerGroupName, |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 763 | TimePassesIsEnabled); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 764 | HI.Handler->beginInstruction(&MI); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 765 | } |
Torok Edwin | 9c42107 | 2010-04-07 10:44:46 +0000 | [diff] [blame] | 766 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 767 | |
Chris Lattner | 3f53c83 | 2010-04-04 18:52:31 +0000 | [diff] [blame] | 768 | if (isVerbose()) |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 769 | emitComments(MI, OutStreamer.GetCommentOS()); |
Chris Lattner | 47529c9 | 2010-02-10 00:47:53 +0000 | [diff] [blame] | 770 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 771 | switch (MI.getOpcode()) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 772 | case TargetOpcode::CFI_INSTRUCTION: |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 773 | emitCFIInstruction(MI); |
Rafael Espindola | f0adba9 | 2011-04-15 15:11:06 +0000 | [diff] [blame] | 774 | break; |
| 775 | |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 776 | case TargetOpcode::EH_LABEL: |
| 777 | case TargetOpcode::GC_LABEL: |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 778 | OutStreamer.EmitLabel(MI.getOperand(0).getMCSymbol()); |
Chris Lattner | 0d883e3 | 2010-02-03 01:00:52 +0000 | [diff] [blame] | 779 | break; |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 780 | case TargetOpcode::INLINEASM: |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 781 | EmitInlineAsm(&MI); |
Chris Lattner | 0d883e3 | 2010-02-03 01:00:52 +0000 | [diff] [blame] | 782 | break; |
Dale Johannesen | 343b42e | 2010-04-07 01:15:14 +0000 | [diff] [blame] | 783 | case TargetOpcode::DBG_VALUE: |
| 784 | if (isVerbose()) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 785 | if (!emitDebugValueComment(&MI, *this)) |
| 786 | EmitInstruction(&MI); |
Dale Johannesen | 343b42e | 2010-04-07 01:15:14 +0000 | [diff] [blame] | 787 | } |
| 788 | break; |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 789 | case TargetOpcode::IMPLICIT_DEF: |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 790 | if (isVerbose()) emitImplicitDef(&MI); |
Chris Lattner | 0d883e3 | 2010-02-03 01:00:52 +0000 | [diff] [blame] | 791 | break; |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 792 | case TargetOpcode::KILL: |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 793 | if (isVerbose()) emitKill(&MI, *this); |
Chris Lattner | 0d883e3 | 2010-02-03 01:00:52 +0000 | [diff] [blame] | 794 | break; |
| 795 | default: |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 796 | EmitInstruction(&MI); |
Chris Lattner | 0d883e3 | 2010-02-03 01:00:52 +0000 | [diff] [blame] | 797 | break; |
| 798 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 799 | |
Torok Edwin | 9c42107 | 2010-04-07 10:44:46 +0000 | [diff] [blame] | 800 | if (ShouldPrintDebugScopes) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 801 | for (const HandlerInfo &HI : Handlers) { |
| 802 | NamedRegionTimer T(HI.TimerName, HI.TimerGroupName, |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 803 | TimePassesIsEnabled); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 804 | HI.Handler->endInstruction(); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 805 | } |
Torok Edwin | 9c42107 | 2010-04-07 10:44:46 +0000 | [diff] [blame] | 806 | } |
Chris Lattner | 14c38ec | 2010-01-28 01:02:27 +0000 | [diff] [blame] | 807 | } |
| 808 | } |
Bill Wendling | dc86704 | 2010-07-16 22:51:10 +0000 | [diff] [blame] | 809 | |
| 810 | // If the last instruction was a prolog label, then we have a situation where |
| 811 | // we emitted a prolog but no function body. This results in the ending prolog |
| 812 | // label equaling the end of function label and an invalid "row" in the |
| 813 | // FDE. We need to emit a noop in this situation so that the FDE's rows are |
| 814 | // valid. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 815 | bool RequiresNoop = LastMI && LastMI->isCFIInstruction(); |
Bill Wendling | dc86704 | 2010-07-16 22:51:10 +0000 | [diff] [blame] | 816 | |
Chris Lattner | 14c38ec | 2010-01-28 01:02:27 +0000 | [diff] [blame] | 817 | // If the function is empty and the object file uses .subsections_via_symbols, |
Chris Lattner | d49fe1b | 2010-01-28 01:28:58 +0000 | [diff] [blame] | 818 | // then we need to emit *something* to the function body to prevent the |
Chris Lattner | ee9eb41 | 2010-04-26 23:37:21 +0000 | [diff] [blame] | 819 | // labels from collapsing together. Just emit a noop. |
Bill Wendling | dc86704 | 2010-07-16 22:51:10 +0000 | [diff] [blame] | 820 | if ((MAI->hasSubsectionsViaSymbols() && !HasAnyRealCode) || RequiresNoop) { |
Chris Lattner | ee9eb41 | 2010-04-26 23:37:21 +0000 | [diff] [blame] | 821 | MCInst Noop; |
| 822 | TM.getInstrInfo()->getNoopForMachoTarget(Noop); |
Chris Lattner | d61647d | 2010-04-26 23:41:43 +0000 | [diff] [blame] | 823 | if (Noop.getOpcode()) { |
| 824 | OutStreamer.AddComment("avoids zero-length function"); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 825 | OutStreamer.EmitInstruction(Noop, getSubtargetInfo()); |
Chris Lattner | d61647d | 2010-04-26 23:41:43 +0000 | [diff] [blame] | 826 | } else // Target not mc-ized yet. |
Chris Lattner | ee9eb41 | 2010-04-26 23:37:21 +0000 | [diff] [blame] | 827 | OutStreamer.EmitRawText(StringRef("\tnop\n")); |
| 828 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 829 | |
Rafael Espindola | 6c5b2dc | 2011-11-15 19:08:46 +0000 | [diff] [blame] | 830 | const Function *F = MF->getFunction(); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 831 | for (const auto &BB : *F) { |
| 832 | if (!BB.hasAddressTaken()) |
Rafael Espindola | 6c5b2dc | 2011-11-15 19:08:46 +0000 | [diff] [blame] | 833 | continue; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 834 | MCSymbol *Sym = GetBlockAddressSymbol(&BB); |
Rafael Espindola | 6c5b2dc | 2011-11-15 19:08:46 +0000 | [diff] [blame] | 835 | if (Sym->isDefined()) |
| 836 | continue; |
| 837 | OutStreamer.AddComment("Address of block that was removed by CodeGen"); |
| 838 | OutStreamer.EmitLabel(Sym); |
| 839 | } |
| 840 | |
Chris Lattner | edfe776 | 2010-01-28 01:58:58 +0000 | [diff] [blame] | 841 | // Emit target-specific gunk after the function body. |
| 842 | EmitFunctionBodyEnd(); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 843 | |
Chris Lattner | fd60b8b | 2010-04-03 22:19:41 +0000 | [diff] [blame] | 844 | // If the target wants a .size directive for the size of the function, emit |
| 845 | // it. |
| 846 | if (MAI->hasDotTypeDotSizeDirective()) { |
Chris Lattner | 0c08d09 | 2010-04-03 22:28:33 +0000 | [diff] [blame] | 847 | // Create a symbol for the end of function, so we can get the size as |
| 848 | // difference between the function label and the temp label. |
| 849 | MCSymbol *FnEndLabel = OutContext.CreateTempSymbol(); |
| 850 | OutStreamer.EmitLabel(FnEndLabel); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 851 | |
Chris Lattner | 0c08d09 | 2010-04-03 22:28:33 +0000 | [diff] [blame] | 852 | const MCExpr *SizeExp = |
| 853 | MCBinaryExpr::CreateSub(MCSymbolRefExpr::Create(FnEndLabel, OutContext), |
Hal Finkel | d55a266 | 2012-02-22 21:11:47 +0000 | [diff] [blame] | 854 | MCSymbolRefExpr::Create(CurrentFnSymForSize, |
| 855 | OutContext), |
Chris Lattner | 0c08d09 | 2010-04-03 22:28:33 +0000 | [diff] [blame] | 856 | OutContext); |
| 857 | OutStreamer.EmitELFSize(CurrentFnSym, SizeExp); |
Chris Lattner | fd60b8b | 2010-04-03 22:19:41 +0000 | [diff] [blame] | 858 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 859 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 860 | // Emit post-function debug and/or EH information. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 861 | for (const HandlerInfo &HI : Handlers) { |
| 862 | NamedRegionTimer T(HI.TimerName, HI.TimerGroupName, TimePassesIsEnabled); |
| 863 | HI.Handler->endFunction(MF); |
Torok Edwin | 9c42107 | 2010-04-07 10:44:46 +0000 | [diff] [blame] | 864 | } |
Chris Lattner | 49cd664 | 2010-04-05 05:11:15 +0000 | [diff] [blame] | 865 | MMI->EndFunction(); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 866 | |
Chris Lattner | 14c38ec | 2010-01-28 01:02:27 +0000 | [diff] [blame] | 867 | // Print out jump tables referenced by the function. |
| 868 | EmitJumpTableInfo(); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 869 | |
Chris Lattner | d26a80f | 2010-02-03 01:49:49 +0000 | [diff] [blame] | 870 | OutStreamer.AddBlankLine(); |
Chris Lattner | 14c38ec | 2010-01-28 01:02:27 +0000 | [diff] [blame] | 871 | } |
| 872 | |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 873 | bool AsmPrinter::doFinalization(Module &M) { |
Chris Lattner | 40bbebd | 2009-07-21 18:38:57 +0000 | [diff] [blame] | 874 | // Emit global variables. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 875 | for (const auto &G : M.globals()) |
| 876 | EmitGlobalVariable(&G); |
Rafael Espindola | 1ffb533 | 2011-01-28 03:20:10 +0000 | [diff] [blame] | 877 | |
| 878 | // Emit visibility info for declarations |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 879 | for (const Function &F : M) { |
Rafael Espindola | 1ffb533 | 2011-01-28 03:20:10 +0000 | [diff] [blame] | 880 | if (!F.isDeclaration()) |
| 881 | continue; |
| 882 | GlobalValue::VisibilityTypes V = F.getVisibility(); |
| 883 | if (V == GlobalValue::DefaultVisibility) |
| 884 | continue; |
| 885 | |
Rafael Espindola | ffc7dca | 2013-10-29 17:07:16 +0000 | [diff] [blame] | 886 | MCSymbol *Name = getSymbol(&F); |
Stuart Hastings | 5129bde | 2011-02-23 02:27:05 +0000 | [diff] [blame] | 887 | EmitVisibility(Name, V, false); |
Rafael Espindola | 1ffb533 | 2011-01-28 03:20:10 +0000 | [diff] [blame] | 888 | } |
| 889 | |
Bill Wendling | b464d3f | 2012-02-14 21:28:13 +0000 | [diff] [blame] | 890 | // Emit module flags. |
Bill Wendling | 057d521 | 2012-02-15 22:36:15 +0000 | [diff] [blame] | 891 | SmallVector<Module::ModuleFlagEntry, 8> ModuleFlags; |
| 892 | M.getModuleFlagsMetadata(ModuleFlags); |
| 893 | if (!ModuleFlags.empty()) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 894 | getObjFileLowering().emitModuleFlags(OutStreamer, ModuleFlags, *Mang, TM); |
Bill Wendling | b464d3f | 2012-02-14 21:28:13 +0000 | [diff] [blame] | 895 | |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 896 | // Make sure we wrote out everything we need. |
| 897 | OutStreamer.Flush(); |
| 898 | |
Chris Lattner | 49cd664 | 2010-04-05 05:11:15 +0000 | [diff] [blame] | 899 | // Finalize debug and EH information. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 900 | for (const HandlerInfo &HI : Handlers) { |
| 901 | NamedRegionTimer T(HI.TimerName, HI.TimerGroupName, |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 902 | TimePassesIsEnabled); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 903 | HI.Handler->endModule(); |
| 904 | delete HI.Handler; |
Chris Lattner | 49cd664 | 2010-04-05 05:11:15 +0000 | [diff] [blame] | 905 | } |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 906 | Handlers.clear(); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 907 | DD = nullptr; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 908 | |
Chris Lattner | 0a7befa | 2009-06-24 18:52:01 +0000 | [diff] [blame] | 909 | // If the target wants to know about weak references, print them all. |
Chris Lattner | 33adcfb | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 910 | if (MAI->getWeakRefDirective()) { |
Chris Lattner | 0a7befa | 2009-06-24 18:52:01 +0000 | [diff] [blame] | 911 | // FIXME: This is not lazy, it would be nice to only print weak references |
| 912 | // to stuff that is actually used. Note that doing so would require targets |
| 913 | // to notice uses in operands (due to constant exprs etc). This should |
| 914 | // happen with the MC stuff eventually. |
Rafael Espindola | 15404d0 | 2006-12-18 03:37:18 +0000 | [diff] [blame] | 915 | |
Chris Lattner | 0a7befa | 2009-06-24 18:52:01 +0000 | [diff] [blame] | 916 | // Print out module-level global variables here. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 917 | for (const auto &G : M.globals()) { |
| 918 | if (!G.hasExternalWeakLinkage()) |
| 919 | continue; |
| 920 | OutStreamer.EmitSymbolAttribute(getSymbol(&G), MCSA_WeakReference); |
Chris Lattner | 0a7befa | 2009-06-24 18:52:01 +0000 | [diff] [blame] | 921 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 922 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 923 | for (const auto &F : M) { |
| 924 | if (!F.hasExternalWeakLinkage()) |
| 925 | continue; |
| 926 | OutStreamer.EmitSymbolAttribute(getSymbol(&F), MCSA_WeakReference); |
Chris Lattner | 0a7befa | 2009-06-24 18:52:01 +0000 | [diff] [blame] | 927 | } |
Rafael Espindola | 15404d0 | 2006-12-18 03:37:18 +0000 | [diff] [blame] | 928 | } |
| 929 | |
Chris Lattner | cee6332 | 2010-01-26 20:40:54 +0000 | [diff] [blame] | 930 | if (MAI->hasSetDirective()) { |
Chris Lattner | 3a9be0e | 2010-01-23 05:51:36 +0000 | [diff] [blame] | 931 | OutStreamer.AddBlankLine(); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 932 | for (const auto &Alias : M.aliases()) { |
| 933 | MCSymbol *Name = getSymbol(&Alias); |
Anton Korobeynikov | 325be7c | 2007-09-06 17:21:48 +0000 | [diff] [blame] | 934 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 935 | const GlobalValue *GV = Alias.getAliasee(); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 936 | assert(!GV->isDeclaration()); |
Rafael Espindola | ffc7dca | 2013-10-29 17:07:16 +0000 | [diff] [blame] | 937 | MCSymbol *Target = getSymbol(GV); |
Anton Korobeynikov | 541af7f | 2008-09-24 22:21:04 +0000 | [diff] [blame] | 938 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 939 | if (Alias.hasExternalLinkage() || !MAI->getWeakRefDirective()) |
Chris Lattner | a5ad93a | 2010-01-23 06:39:22 +0000 | [diff] [blame] | 940 | OutStreamer.EmitSymbolAttribute(Name, MCSA_Global); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 941 | else if (Alias.hasWeakLinkage() || Alias.hasLinkOnceLinkage()) |
Chris Lattner | a5ad93a | 2010-01-23 06:39:22 +0000 | [diff] [blame] | 942 | OutStreamer.EmitSymbolAttribute(Name, MCSA_WeakReference); |
Chris Lattner | 10b318b | 2010-01-17 21:43:43 +0000 | [diff] [blame] | 943 | else |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 944 | assert(Alias.hasLocalLinkage() && "Invalid alias linkage"); |
Anton Korobeynikov | 22c9e65 | 2008-03-11 21:41:14 +0000 | [diff] [blame] | 945 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 946 | EmitVisibility(Name, Alias.getVisibility()); |
Anton Korobeynikov | 22c9e65 | 2008-03-11 21:41:14 +0000 | [diff] [blame] | 947 | |
Chris Lattner | c618c8a | 2010-01-26 21:53:08 +0000 | [diff] [blame] | 948 | // Emit the directives as assignments aka .set: |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 949 | OutStreamer.EmitAssignment(Name, |
Chris Lattner | c618c8a | 2010-01-26 21:53:08 +0000 | [diff] [blame] | 950 | MCSymbolRefExpr::Create(Target, OutContext)); |
Anton Korobeynikov | 8b0a8c8 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 951 | } |
| 952 | } |
| 953 | |
Duncan Sands | 1465d61 | 2009-01-28 13:14:17 +0000 | [diff] [blame] | 954 | GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>(); |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 955 | assert(MI && "AsmPrinter didn't require GCModuleInfo?"); |
| 956 | for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; ) |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 957 | if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(**--I)) |
Chris Lattner | 7d73c7f | 2010-04-04 07:39:04 +0000 | [diff] [blame] | 958 | MP->finishAssembly(*this); |
Gordon Henriksen | ce22477 | 2008-01-07 01:30:38 +0000 | [diff] [blame] | 959 | |
Rafael Espindola | 3aa342b | 2013-10-16 01:49:05 +0000 | [diff] [blame] | 960 | // Emit llvm.ident metadata in an '.ident' directive. |
| 961 | EmitModuleIdents(M); |
| 962 | |
Dan Gohman | a779a98 | 2008-05-05 00:28:39 +0000 | [diff] [blame] | 963 | // If we don't have any trampolines, then we don't require stack memory |
| 964 | // to be executable. Some targets have a directive to declare this. |
Chris Lattner | 0a7befa | 2009-06-24 18:52:01 +0000 | [diff] [blame] | 965 | Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline"); |
Dan Gohman | a779a98 | 2008-05-05 00:28:39 +0000 | [diff] [blame] | 966 | if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty()) |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 967 | if (const MCSection *S = MAI->getNonexecutableStackSection(OutContext)) |
Chris Lattner | f9f93e4 | 2010-01-23 07:21:06 +0000 | [diff] [blame] | 968 | OutStreamer.SwitchSection(S); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 969 | |
Chris Lattner | bd23d5f | 2009-09-18 20:17:03 +0000 | [diff] [blame] | 970 | // Allow the target to emit any magic that it wants at the end of the file, |
| 971 | // after everything else has gone out. |
| 972 | EmitEndOfAsmFile(M); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 973 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 974 | delete Mang; Mang = nullptr; |
| 975 | MMI = nullptr; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 976 | |
Chris Lattner | 2b2954f | 2009-07-27 21:28:04 +0000 | [diff] [blame] | 977 | OutStreamer.Finish(); |
Pedro Artigas | 5399d25 | 2012-12-12 22:59:46 +0000 | [diff] [blame] | 978 | OutStreamer.reset(); |
| 979 | |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 980 | return false; |
| 981 | } |
| 982 | |
Chris Lattner | 25045bd | 2005-11-21 07:51:36 +0000 | [diff] [blame] | 983 | void AsmPrinter::SetupMachineFunction(MachineFunction &MF) { |
Chris Lattner | b84822f | 2010-01-26 04:35:26 +0000 | [diff] [blame] | 984 | this->MF = &MF; |
Chris Lattner | 412c3a5 | 2010-01-16 01:24:10 +0000 | [diff] [blame] | 985 | // Get the function symbol. |
Rafael Espindola | ffc7dca | 2013-10-29 17:07:16 +0000 | [diff] [blame] | 986 | CurrentFnSym = getSymbol(MF.getFunction()); |
Hal Finkel | d55a266 | 2012-02-22 21:11:47 +0000 | [diff] [blame] | 987 | CurrentFnSymForSize = CurrentFnSym; |
David Greene | b71d1b2 | 2009-08-10 16:38:07 +0000 | [diff] [blame] | 988 | |
Chris Lattner | 3f53c83 | 2010-04-04 18:52:31 +0000 | [diff] [blame] | 989 | if (isVerbose()) |
David Greene | b71d1b2 | 2009-08-10 16:38:07 +0000 | [diff] [blame] | 990 | LI = &getAnalysis<MachineLoopInfo>(); |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 991 | } |
| 992 | |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 993 | namespace { |
| 994 | // SectionCPs - Keep track the alignment, constpool entries per Section. |
| 995 | struct SectionCPs { |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 996 | const MCSection *S; |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 997 | unsigned Alignment; |
| 998 | SmallVector<unsigned, 4> CPEs; |
Douglas Gregor | cabdd74 | 2009-12-19 07:05:23 +0000 | [diff] [blame] | 999 | SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {} |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 1000 | }; |
| 1001 | } |
| 1002 | |
Chris Lattner | 3b4fd32 | 2005-11-21 08:25:09 +0000 | [diff] [blame] | 1003 | /// EmitConstantPool - Print to the current output stream assembly |
| 1004 | /// representations of the constants in the constant pool MCP. This is |
| 1005 | /// used to print out constants which have been "spilled to memory" by |
| 1006 | /// the code generator. |
| 1007 | /// |
Chris Lattner | a240619 | 2010-01-28 00:19:24 +0000 | [diff] [blame] | 1008 | void AsmPrinter::EmitConstantPool() { |
| 1009 | const MachineConstantPool *MCP = MF->getConstantPool(); |
Chris Lattner | fa77d43 | 2006-02-09 04:22:52 +0000 | [diff] [blame] | 1010 | const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants(); |
Chris Lattner | 3b4fd32 | 2005-11-21 08:25:09 +0000 | [diff] [blame] | 1011 | if (CP.empty()) return; |
Evan Cheng | 2d2cec1 | 2006-06-29 00:26:09 +0000 | [diff] [blame] | 1012 | |
Anton Korobeynikov | 088ae83 | 2008-09-24 22:17:59 +0000 | [diff] [blame] | 1013 | // Calculate sections for constant pool entries. We collect entries to go into |
| 1014 | // the same section together to reduce amount of section switch statements. |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 1015 | SmallVector<SectionCPs, 4> CPSections; |
Chris Lattner | 3b4fd32 | 2005-11-21 08:25:09 +0000 | [diff] [blame] | 1016 | for (unsigned i = 0, e = CP.size(); i != e; ++i) { |
Chris Lattner | 298414e | 2009-07-22 00:28:43 +0000 | [diff] [blame] | 1017 | const MachineConstantPoolEntry &CPE = CP[i]; |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 1018 | unsigned Align = CPE.getAlignment(); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1019 | |
Chris Lattner | 5c2f789 | 2009-07-26 06:26:55 +0000 | [diff] [blame] | 1020 | SectionKind Kind; |
| 1021 | switch (CPE.getRelocationInfo()) { |
| 1022 | default: llvm_unreachable("Unknown section kind"); |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 1023 | case 2: Kind = SectionKind::getReadOnlyWithRel(); break; |
Chris Lattner | 4c50922 | 2009-07-26 07:00:12 +0000 | [diff] [blame] | 1024 | case 1: |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 1025 | Kind = SectionKind::getReadOnlyWithRelLocal(); |
Chris Lattner | 4c50922 | 2009-07-26 07:00:12 +0000 | [diff] [blame] | 1026 | break; |
Chris Lattner | 5c2f789 | 2009-07-26 06:26:55 +0000 | [diff] [blame] | 1027 | case 0: |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 1028 | switch (TM.getDataLayout()->getTypeAllocSize(CPE.getType())) { |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 1029 | case 4: Kind = SectionKind::getMergeableConst4(); break; |
| 1030 | case 8: Kind = SectionKind::getMergeableConst8(); break; |
| 1031 | case 16: Kind = SectionKind::getMergeableConst16();break; |
| 1032 | default: Kind = SectionKind::getMergeableConst(); break; |
Chris Lattner | 4c50922 | 2009-07-26 07:00:12 +0000 | [diff] [blame] | 1033 | } |
Chris Lattner | 5c2f789 | 2009-07-26 06:26:55 +0000 | [diff] [blame] | 1034 | } |
| 1035 | |
Chris Lattner | 83d77fa | 2009-08-01 23:46:12 +0000 | [diff] [blame] | 1036 | const MCSection *S = getObjFileLowering().getSectionForConstant(Kind); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1037 | |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 1038 | // The number of sections are small, just do a linear search from the |
| 1039 | // last section to the first. |
| 1040 | bool Found = false; |
| 1041 | unsigned SecIdx = CPSections.size(); |
| 1042 | while (SecIdx != 0) { |
| 1043 | if (CPSections[--SecIdx].S == S) { |
| 1044 | Found = true; |
| 1045 | break; |
| 1046 | } |
| 1047 | } |
| 1048 | if (!Found) { |
| 1049 | SecIdx = CPSections.size(); |
| 1050 | CPSections.push_back(SectionCPs(S, Align)); |
| 1051 | } |
| 1052 | |
| 1053 | if (Align > CPSections[SecIdx].Alignment) |
| 1054 | CPSections[SecIdx].Alignment = Align; |
| 1055 | CPSections[SecIdx].CPEs.push_back(i); |
Evan Cheng | 2d2cec1 | 2006-06-29 00:26:09 +0000 | [diff] [blame] | 1056 | } |
| 1057 | |
Anton Korobeynikov | 088ae83 | 2008-09-24 22:17:59 +0000 | [diff] [blame] | 1058 | // Now print stuff into the calculated sections. |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 1059 | for (unsigned i = 0, e = CPSections.size(); i != e; ++i) { |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 1060 | OutStreamer.SwitchSection(CPSections[i].S); |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 1061 | EmitAlignment(Log2_32(CPSections[i].Alignment)); |
Evan Cheng | 2d2cec1 | 2006-06-29 00:26:09 +0000 | [diff] [blame] | 1062 | |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 1063 | unsigned Offset = 0; |
| 1064 | for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) { |
| 1065 | unsigned CPI = CPSections[i].CPEs[j]; |
| 1066 | MachineConstantPoolEntry CPE = CP[CPI]; |
Anton Korobeynikov | 088ae83 | 2008-09-24 22:17:59 +0000 | [diff] [blame] | 1067 | |
Chris Lattner | 3029f92 | 2006-02-09 04:46:04 +0000 | [diff] [blame] | 1068 | // Emit inter-object padding for alignment. |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 1069 | unsigned AlignMask = CPE.getAlignment() - 1; |
| 1070 | unsigned NewOffset = (Offset + AlignMask) & ~AlignMask; |
Eric Christopher | ca1dd05 | 2013-01-09 01:35:34 +0000 | [diff] [blame] | 1071 | OutStreamer.EmitZeros(NewOffset - Offset); |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 1072 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1073 | Type *Ty = CPE.getType(); |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 1074 | Offset = NewOffset + TM.getDataLayout()->getTypeAllocSize(Ty); |
Chris Lattner | 3924868 | 2010-01-23 05:19:23 +0000 | [diff] [blame] | 1075 | OutStreamer.EmitLabel(GetCPISymbol(CPI)); |
| 1076 | |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 1077 | if (CPE.isMachineConstantPoolEntry()) |
| 1078 | EmitMachineConstantPoolValue(CPE.Val.MachineCPVal); |
| 1079 | else |
| 1080 | EmitGlobalConstant(CPE.Val.ConstVal); |
Chris Lattner | 3029f92 | 2006-02-09 04:46:04 +0000 | [diff] [blame] | 1081 | } |
Chris Lattner | 3b4fd32 | 2005-11-21 08:25:09 +0000 | [diff] [blame] | 1082 | } |
| 1083 | } |
| 1084 | |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1085 | /// EmitJumpTableInfo - Print assembly representations of the jump tables used |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1086 | /// by the current function to the current output stream. |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1087 | /// |
Chris Lattner | 14c38ec | 2010-01-28 01:02:27 +0000 | [diff] [blame] | 1088 | void AsmPrinter::EmitJumpTableInfo() { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1089 | const DataLayout *DL = MF->getTarget().getDataLayout(); |
Chris Lattner | 14c38ec | 2010-01-28 01:02:27 +0000 | [diff] [blame] | 1090 | const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo(); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1091 | if (!MJTI) return; |
Richard Osborne | 95da605 | 2010-03-11 14:58:16 +0000 | [diff] [blame] | 1092 | if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_Inline) return; |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1093 | const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables(); |
| 1094 | if (JT.empty()) return; |
Anton Korobeynikov | 9de1934 | 2007-11-14 09:18:41 +0000 | [diff] [blame] | 1095 | |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1096 | // Pick the directive to use to print the jump table entries, and switch to |
Nate Begeman | 2f1ae88 | 2006-07-27 01:13:04 +0000 | [diff] [blame] | 1097 | // the appropriate section. |
Chris Lattner | 14c38ec | 2010-01-28 01:02:27 +0000 | [diff] [blame] | 1098 | const Function *F = MF->getFunction(); |
Evan Cheng | b13bafe | 2009-06-18 20:37:15 +0000 | [diff] [blame] | 1099 | bool JTInDiffSection = false; |
Chris Lattner | f1214cb | 2010-01-26 06:53:37 +0000 | [diff] [blame] | 1100 | if (// In PIC mode, we need to emit the jump table to the same section as the |
| 1101 | // function body itself, otherwise the label differences won't make sense. |
| 1102 | // FIXME: Need a better predicate for this: what about custom entries? |
| 1103 | MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 || |
| 1104 | // We should also do if the section name is NULL or function is declared |
| 1105 | // in discardable section |
| 1106 | // FIXME: this isn't the right predicate, should be based on the MCSection |
| 1107 | // for the function. |
| 1108 | F->isWeakForLinker()) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1109 | OutStreamer.SwitchSection( |
| 1110 | getObjFileLowering().SectionForGlobal(F, *Mang, TM)); |
Nate Begeman | 2f1ae88 | 2006-07-27 01:13:04 +0000 | [diff] [blame] | 1111 | } else { |
Chris Lattner | 83d77fa | 2009-08-01 23:46:12 +0000 | [diff] [blame] | 1112 | // Otherwise, drop it in the readonly section. |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1113 | const MCSection *ReadOnlySection = |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 1114 | getObjFileLowering().getSectionForConstant(SectionKind::getReadOnly()); |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 1115 | OutStreamer.SwitchSection(ReadOnlySection); |
Evan Cheng | b13bafe | 2009-06-18 20:37:15 +0000 | [diff] [blame] | 1116 | JTInDiffSection = true; |
Nate Begeman | 2f1ae88 | 2006-07-27 01:13:04 +0000 | [diff] [blame] | 1117 | } |
Chris Lattner | 071c62f | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 1118 | |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 1119 | EmitAlignment(Log2_32(MJTI->getEntryAlignment(*TM.getDataLayout()))); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1120 | |
Jim Grosbach | e9525d8 | 2012-09-24 23:06:27 +0000 | [diff] [blame] | 1121 | // Jump tables in code sections are marked with a data_region directive |
| 1122 | // where that's supported. |
| 1123 | if (!JTInDiffSection) |
| 1124 | OutStreamer.EmitDataRegion(MCDR_DataRegionJT32); |
| 1125 | |
Chris Lattner | 3b131d7 | 2010-01-26 06:42:44 +0000 | [diff] [blame] | 1126 | for (unsigned JTI = 0, e = JT.size(); JTI != e; ++JTI) { |
| 1127 | const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1128 | |
| 1129 | // If this jump table was deleted, ignore it. |
Chris Lattner | 0737188 | 2006-10-28 18:10:06 +0000 | [diff] [blame] | 1130 | if (JTBBs.empty()) continue; |
Nate Begeman | 52a51e38 | 2006-08-12 21:29:52 +0000 | [diff] [blame] | 1131 | |
Chris Lattner | e35df92 | 2010-01-26 05:15:20 +0000 | [diff] [blame] | 1132 | // For the EK_LabelDifference32 entry, if the target supports .set, emit a |
| 1133 | // .set directive for each unique entry. This reduces the number of |
| 1134 | // relocations the assembler will generate for the jump table. |
| 1135 | if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 && |
Chris Lattner | cee6332 | 2010-01-26 20:40:54 +0000 | [diff] [blame] | 1136 | MAI->hasSetDirective()) { |
Chris Lattner | 3b131d7 | 2010-01-26 06:42:44 +0000 | [diff] [blame] | 1137 | SmallPtrSet<const MachineBasicBlock*, 16> EmittedSets; |
| 1138 | const TargetLowering *TLI = TM.getTargetLowering(); |
Chris Lattner | 14c38ec | 2010-01-28 01:02:27 +0000 | [diff] [blame] | 1139 | const MCExpr *Base = TLI->getPICJumpTableRelocBaseExpr(MF,JTI,OutContext); |
Chris Lattner | 3b131d7 | 2010-01-26 06:42:44 +0000 | [diff] [blame] | 1140 | for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) { |
| 1141 | const MachineBasicBlock *MBB = JTBBs[ii]; |
| 1142 | if (!EmittedSets.insert(MBB)) continue; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1143 | |
Chris Lattner | c618c8a | 2010-01-26 21:53:08 +0000 | [diff] [blame] | 1144 | // .set LJTSet, LBB32-base |
| 1145 | const MCExpr *LHS = |
Chris Lattner | 1b2eb0e | 2010-03-13 21:04:28 +0000 | [diff] [blame] | 1146 | MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext); |
Chris Lattner | c618c8a | 2010-01-26 21:53:08 +0000 | [diff] [blame] | 1147 | OutStreamer.EmitAssignment(GetJTSetSymbol(JTI, MBB->getNumber()), |
| 1148 | MCBinaryExpr::CreateSub(LHS, Base, OutContext)); |
Chris Lattner | 3b131d7 | 2010-01-26 06:42:44 +0000 | [diff] [blame] | 1149 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1150 | } |
| 1151 | |
Duncan Sands | ab4c366 | 2011-02-15 09:23:02 +0000 | [diff] [blame] | 1152 | // On some targets (e.g. Darwin) we want to emit two consecutive labels |
Chris Lattner | 393a8ee | 2007-01-18 01:12:56 +0000 | [diff] [blame] | 1153 | // before each jump table. The first label is never referenced, but tells |
| 1154 | // the assembler and linker the extents of the jump table object. The |
| 1155 | // second label is actually referenced by the code. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1156 | if (JTInDiffSection && DL->hasLinkerPrivateGlobalPrefix()) |
Chris Lattner | beeb93e | 2010-01-26 05:58:28 +0000 | [diff] [blame] | 1157 | // FIXME: This doesn't have to have any specific name, just any randomly |
| 1158 | // named and numbered 'l' label would work. Simplify GetJTISymbol. |
Chris Lattner | 3b131d7 | 2010-01-26 06:42:44 +0000 | [diff] [blame] | 1159 | OutStreamer.EmitLabel(GetJTISymbol(JTI, true)); |
Chris Lattner | 3924868 | 2010-01-23 05:19:23 +0000 | [diff] [blame] | 1160 | |
Chris Lattner | 3b131d7 | 2010-01-26 06:42:44 +0000 | [diff] [blame] | 1161 | OutStreamer.EmitLabel(GetJTISymbol(JTI)); |
Chris Lattner | 3924868 | 2010-01-23 05:19:23 +0000 | [diff] [blame] | 1162 | |
Chris Lattner | 6bf1def | 2010-01-26 05:10:10 +0000 | [diff] [blame] | 1163 | for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) |
Chris Lattner | 3b131d7 | 2010-01-26 06:42:44 +0000 | [diff] [blame] | 1164 | EmitJumpTableEntry(MJTI, JTBBs[ii], JTI); |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1165 | } |
Jim Grosbach | e9525d8 | 2012-09-24 23:06:27 +0000 | [diff] [blame] | 1166 | if (!JTInDiffSection) |
| 1167 | OutStreamer.EmitDataRegion(MCDR_DataRegionEnd); |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1168 | } |
| 1169 | |
Chris Lattner | 6bf1def | 2010-01-26 05:10:10 +0000 | [diff] [blame] | 1170 | /// EmitJumpTableEntry - Emit a jump table entry for the specified MBB to the |
| 1171 | /// current stream. |
| 1172 | void AsmPrinter::EmitJumpTableEntry(const MachineJumpTableInfo *MJTI, |
| 1173 | const MachineBasicBlock *MBB, |
| 1174 | unsigned UID) const { |
Jakob Stoklund Olesen | e5005d0 | 2011-02-09 21:52:06 +0000 | [diff] [blame] | 1175 | assert(MBB && MBB->getNumber() >= 0 && "Invalid basic block"); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1176 | const MCExpr *Value = nullptr; |
Chris Lattner | ff537ce | 2010-01-26 03:43:22 +0000 | [diff] [blame] | 1177 | switch (MJTI->getEntryKind()) { |
Richard Osborne | 95da605 | 2010-03-11 14:58:16 +0000 | [diff] [blame] | 1178 | case MachineJumpTableInfo::EK_Inline: |
David Blaikie | 4d6ccb5 | 2012-01-20 21:51:11 +0000 | [diff] [blame] | 1179 | llvm_unreachable("Cannot emit EK_Inline jump table entry"); |
Chris Lattner | 85fe078 | 2010-01-26 04:05:28 +0000 | [diff] [blame] | 1180 | case MachineJumpTableInfo::EK_Custom32: |
Chris Lattner | 6bf1def | 2010-01-26 05:10:10 +0000 | [diff] [blame] | 1181 | Value = TM.getTargetLowering()->LowerCustomJumpTableEntry(MJTI, MBB, UID, |
Chris Lattner | 85fe078 | 2010-01-26 04:05:28 +0000 | [diff] [blame] | 1182 | OutContext); |
| 1183 | break; |
Chris Lattner | ff537ce | 2010-01-26 03:43:22 +0000 | [diff] [blame] | 1184 | case MachineJumpTableInfo::EK_BlockAddress: |
| 1185 | // EK_BlockAddress - Each entry is a plain address of block, e.g.: |
| 1186 | // .word LBB123 |
Chris Lattner | 1b2eb0e | 2010-03-13 21:04:28 +0000 | [diff] [blame] | 1187 | Value = MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext); |
Chris Lattner | ff537ce | 2010-01-26 03:43:22 +0000 | [diff] [blame] | 1188 | break; |
Chris Lattner | ff537ce | 2010-01-26 03:43:22 +0000 | [diff] [blame] | 1189 | case MachineJumpTableInfo::EK_GPRel32BlockAddress: { |
| 1190 | // EK_GPRel32BlockAddress - Each entry is an address of block, encoded |
| 1191 | // with a relocation as gp-relative, e.g.: |
| 1192 | // .gprel32 LBB123 |
Chris Lattner | 1b2eb0e | 2010-03-13 21:04:28 +0000 | [diff] [blame] | 1193 | MCSymbol *MBBSym = MBB->getSymbol(); |
Chris Lattner | 718fb59 | 2010-01-25 21:28:50 +0000 | [diff] [blame] | 1194 | OutStreamer.EmitGPRel32Value(MCSymbolRefExpr::Create(MBBSym, OutContext)); |
Chris Lattner | 78f485a | 2010-01-25 21:10:10 +0000 | [diff] [blame] | 1195 | return; |
Anton Korobeynikov | 9de1934 | 2007-11-14 09:18:41 +0000 | [diff] [blame] | 1196 | } |
Chris Lattner | 85fe078 | 2010-01-26 04:05:28 +0000 | [diff] [blame] | 1197 | |
Akira Hatanaka | 6c2cf8b | 2012-02-03 04:33:00 +0000 | [diff] [blame] | 1198 | case MachineJumpTableInfo::EK_GPRel64BlockAddress: { |
| 1199 | // EK_GPRel64BlockAddress - Each entry is an address of block, encoded |
| 1200 | // with a relocation as gp-relative, e.g.: |
| 1201 | // .gpdword LBB123 |
| 1202 | MCSymbol *MBBSym = MBB->getSymbol(); |
| 1203 | OutStreamer.EmitGPRel64Value(MCSymbolRefExpr::Create(MBBSym, OutContext)); |
| 1204 | return; |
| 1205 | } |
| 1206 | |
Chris Lattner | ff537ce | 2010-01-26 03:43:22 +0000 | [diff] [blame] | 1207 | case MachineJumpTableInfo::EK_LabelDifference32: { |
| 1208 | // EK_LabelDifference32 - Each entry is the address of the block minus |
| 1209 | // the address of the jump table. This is used for PIC jump tables where |
| 1210 | // gprel32 is not supported. e.g.: |
| 1211 | // .word LBB123 - LJTI1_2 |
| 1212 | // If the .set directive is supported, this is emitted as: |
| 1213 | // .set L4_5_set_123, LBB123 - LJTI1_2 |
| 1214 | // .word L4_5_set_123 |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1215 | |
| 1216 | // If we have emitted set directives for the jump table entries, print |
Chris Lattner | ff537ce | 2010-01-26 03:43:22 +0000 | [diff] [blame] | 1217 | // them rather than the entries themselves. If we're emitting PIC, then |
| 1218 | // emit the table entries as differences between two text section labels. |
Chris Lattner | cee6332 | 2010-01-26 20:40:54 +0000 | [diff] [blame] | 1219 | if (MAI->hasSetDirective()) { |
Chris Lattner | ff537ce | 2010-01-26 03:43:22 +0000 | [diff] [blame] | 1220 | // If we used .set, reference the .set's symbol. |
Chris Lattner | 6bf1def | 2010-01-26 05:10:10 +0000 | [diff] [blame] | 1221 | Value = MCSymbolRefExpr::Create(GetJTSetSymbol(UID, MBB->getNumber()), |
Chris Lattner | ff537ce | 2010-01-26 03:43:22 +0000 | [diff] [blame] | 1222 | OutContext); |
| 1223 | break; |
| 1224 | } |
Chris Lattner | 1aca249 | 2010-01-25 21:22:22 +0000 | [diff] [blame] | 1225 | // Otherwise, use the difference as the jump table entry. |
Chris Lattner | 1b2eb0e | 2010-03-13 21:04:28 +0000 | [diff] [blame] | 1226 | Value = MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext); |
Chris Lattner | 6bf1def | 2010-01-26 05:10:10 +0000 | [diff] [blame] | 1227 | const MCExpr *JTI = MCSymbolRefExpr::Create(GetJTISymbol(UID), OutContext); |
Chris Lattner | ff537ce | 2010-01-26 03:43:22 +0000 | [diff] [blame] | 1228 | Value = MCBinaryExpr::CreateSub(Value, JTI, OutContext); |
| 1229 | break; |
| 1230 | } |
Anton Korobeynikov | 9de1934 | 2007-11-14 09:18:41 +0000 | [diff] [blame] | 1231 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1232 | |
Chris Lattner | ff537ce | 2010-01-26 03:43:22 +0000 | [diff] [blame] | 1233 | assert(Value && "Unknown entry kind!"); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1234 | |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 1235 | unsigned EntrySize = MJTI->getEntrySize(*TM.getDataLayout()); |
Eric Christopher | ca1dd05 | 2013-01-09 01:35:34 +0000 | [diff] [blame] | 1236 | OutStreamer.EmitValue(Value, EntrySize); |
Anton Korobeynikov | 9de1934 | 2007-11-14 09:18:41 +0000 | [diff] [blame] | 1237 | } |
| 1238 | |
| 1239 | |
Chris Lattner | ed13893 | 2005-12-13 06:32:10 +0000 | [diff] [blame] | 1240 | /// EmitSpecialLLVMGlobal - Check to see if the specified global is a |
| 1241 | /// special global used by LLVM. If so, emit it and return true, otherwise |
| 1242 | /// do nothing and return false. |
| 1243 | bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) { |
Daniel Dunbar | 03d7651 | 2009-07-25 23:55:21 +0000 | [diff] [blame] | 1244 | if (GV->getName() == "llvm.used") { |
Chris Lattner | 3a9be0e | 2010-01-23 05:51:36 +0000 | [diff] [blame] | 1245 | if (MAI->hasNoDeadStrip()) // No need to emit this at all. |
Rafael Espindola | cde25b4 | 2013-04-22 14:58:02 +0000 | [diff] [blame] | 1246 | EmitLLVMUsedList(cast<ConstantArray>(GV->getInitializer())); |
Andrew Lenharth | b753a9b | 2007-08-22 19:33:11 +0000 | [diff] [blame] | 1247 | return true; |
| 1248 | } |
| 1249 | |
Chris Lattner | 401e10c | 2009-07-20 06:14:25 +0000 | [diff] [blame] | 1250 | // Ignore debug and non-emitted data. This handles llvm.compiler.used. |
Chris Lattner | 266c7bb | 2009-04-13 05:44:34 +0000 | [diff] [blame] | 1251 | if (GV->getSection() == "llvm.metadata" || |
| 1252 | GV->hasAvailableExternallyLinkage()) |
| 1253 | return true; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1254 | |
Jim Laskey | 7809811 | 2006-03-07 22:00:35 +0000 | [diff] [blame] | 1255 | if (!GV->hasAppendingLinkage()) return false; |
| 1256 | |
| 1257 | assert(GV->hasInitializer() && "Not a special LLVM global!"); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1258 | |
Chris Lattner | f231c07 | 2009-03-09 05:52:15 +0000 | [diff] [blame] | 1259 | if (GV->getName() == "llvm.global_ctors") { |
Anton Korobeynikov | 4a99f59 | 2012-01-25 22:24:19 +0000 | [diff] [blame] | 1260 | EmitXXStructorList(GV->getInitializer(), /* isCtor */ true); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1261 | |
Chris Lattner | 71eae71 | 2010-01-19 04:34:02 +0000 | [diff] [blame] | 1262 | if (TM.getRelocationModel() == Reloc::Static && |
Chris Lattner | 3a9be0e | 2010-01-23 05:51:36 +0000 | [diff] [blame] | 1263 | MAI->hasStaticCtorDtorReferenceInStaticMode()) { |
| 1264 | StringRef Sym(".constructors_used"); |
| 1265 | OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym), |
Chris Lattner | a5ad93a | 2010-01-23 06:39:22 +0000 | [diff] [blame] | 1266 | MCSA_Reference); |
Chris Lattner | 3a9be0e | 2010-01-23 05:51:36 +0000 | [diff] [blame] | 1267 | } |
Chris Lattner | ea3a9ff | 2009-03-09 08:18:48 +0000 | [diff] [blame] | 1268 | return true; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1269 | } |
| 1270 | |
Chris Lattner | f231c07 | 2009-03-09 05:52:15 +0000 | [diff] [blame] | 1271 | if (GV->getName() == "llvm.global_dtors") { |
Anton Korobeynikov | 4a99f59 | 2012-01-25 22:24:19 +0000 | [diff] [blame] | 1272 | EmitXXStructorList(GV->getInitializer(), /* isCtor */ false); |
Chris Lattner | 71eae71 | 2010-01-19 04:34:02 +0000 | [diff] [blame] | 1273 | |
| 1274 | if (TM.getRelocationModel() == Reloc::Static && |
Chris Lattner | 3a9be0e | 2010-01-23 05:51:36 +0000 | [diff] [blame] | 1275 | MAI->hasStaticCtorDtorReferenceInStaticMode()) { |
| 1276 | StringRef Sym(".destructors_used"); |
| 1277 | OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym), |
Chris Lattner | a5ad93a | 2010-01-23 06:39:22 +0000 | [diff] [blame] | 1278 | MCSA_Reference); |
Chris Lattner | 3a9be0e | 2010-01-23 05:51:36 +0000 | [diff] [blame] | 1279 | } |
Chris Lattner | ea3a9ff | 2009-03-09 08:18:48 +0000 | [diff] [blame] | 1280 | return true; |
Chris Lattner | ed13893 | 2005-12-13 06:32:10 +0000 | [diff] [blame] | 1281 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1282 | |
Chris Lattner | ed13893 | 2005-12-13 06:32:10 +0000 | [diff] [blame] | 1283 | return false; |
| 1284 | } |
| 1285 | |
Chris Lattner | 33adcfb | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 1286 | /// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each |
Dale Johannesen | d2e51af | 2008-09-09 22:29:13 +0000 | [diff] [blame] | 1287 | /// global in the specified llvm.used list for which emitUsedDirectiveFor |
| 1288 | /// is true, as being used with this directive. |
Rafael Espindola | cde25b4 | 2013-04-22 14:58:02 +0000 | [diff] [blame] | 1289 | void AsmPrinter::EmitLLVMUsedList(const ConstantArray *InitList) { |
Dan Gohman | a119de8 | 2009-06-14 23:30:43 +0000 | [diff] [blame] | 1290 | // Should be an array of 'i8*'. |
Chris Lattner | cb05af8 | 2006-09-26 03:38:18 +0000 | [diff] [blame] | 1291 | for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) { |
Chris Lattner | 16fe990 | 2009-07-17 22:00:23 +0000 | [diff] [blame] | 1292 | const GlobalValue *GV = |
| 1293 | dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts()); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1294 | if (GV) |
Rafael Espindola | ffc7dca | 2013-10-29 17:07:16 +0000 | [diff] [blame] | 1295 | OutStreamer.EmitSymbolAttribute(getSymbol(GV), MCSA_NoDeadStrip); |
Chris Lattner | cb05af8 | 2006-09-26 03:38:18 +0000 | [diff] [blame] | 1296 | } |
| 1297 | } |
| 1298 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1299 | namespace { |
| 1300 | struct Structor { |
| 1301 | Structor() : Priority(0), Func(nullptr), ComdatKey(nullptr) {} |
| 1302 | int Priority; |
| 1303 | llvm::Constant *Func; |
| 1304 | llvm::GlobalValue *ComdatKey; |
| 1305 | }; |
| 1306 | } // end namespace |
| 1307 | |
Duncan Sands | fd9c4f7 | 2011-08-28 13:17:22 +0000 | [diff] [blame] | 1308 | /// EmitXXStructorList - Emit the ctor or dtor list taking into account the init |
| 1309 | /// priority. |
Anton Korobeynikov | 4a99f59 | 2012-01-25 22:24:19 +0000 | [diff] [blame] | 1310 | void AsmPrinter::EmitXXStructorList(const Constant *List, bool isCtor) { |
Chris Lattner | ed13893 | 2005-12-13 06:32:10 +0000 | [diff] [blame] | 1311 | // Should be an array of '{ int, void ()* }' structs. The first value is the |
Duncan Sands | fd9c4f7 | 2011-08-28 13:17:22 +0000 | [diff] [blame] | 1312 | // init priority. |
Chris Lattner | ed13893 | 2005-12-13 06:32:10 +0000 | [diff] [blame] | 1313 | if (!isa<ConstantArray>(List)) return; |
Chris Lattner | 8de324b | 2005-12-21 01:17:37 +0000 | [diff] [blame] | 1314 | |
Duncan Sands | fd9c4f7 | 2011-08-28 13:17:22 +0000 | [diff] [blame] | 1315 | // Sanity check the structors list. |
| 1316 | const ConstantArray *InitList = dyn_cast<ConstantArray>(List); |
| 1317 | if (!InitList) return; // Not an array! |
| 1318 | StructType *ETy = dyn_cast<StructType>(InitList->getType()->getElementType()); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1319 | // FIXME: Only allow the 3-field form in LLVM 4.0. |
| 1320 | if (!ETy || ETy->getNumElements() < 2 || ETy->getNumElements() > 3) |
| 1321 | return; // Not an array of two or three elements! |
Duncan Sands | fd9c4f7 | 2011-08-28 13:17:22 +0000 | [diff] [blame] | 1322 | if (!isa<IntegerType>(ETy->getTypeAtIndex(0U)) || |
| 1323 | !isa<PointerType>(ETy->getTypeAtIndex(1U))) return; // Not (int, ptr). |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1324 | if (ETy->getNumElements() == 3 && !isa<PointerType>(ETy->getTypeAtIndex(2U))) |
| 1325 | return; // Not (int, ptr, ptr). |
Duncan Sands | fd9c4f7 | 2011-08-28 13:17:22 +0000 | [diff] [blame] | 1326 | |
| 1327 | // Gather the structors in a form that's convenient for sorting by priority. |
| 1328 | SmallVector<Structor, 8> Structors; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1329 | for (Value *O : InitList->operands()) { |
| 1330 | ConstantStruct *CS = dyn_cast<ConstantStruct>(O); |
Duncan Sands | fd9c4f7 | 2011-08-28 13:17:22 +0000 | [diff] [blame] | 1331 | if (!CS) continue; // Malformed. |
| 1332 | if (CS->getOperand(1)->isNullValue()) |
| 1333 | break; // Found a null terminator, skip the rest. |
| 1334 | ConstantInt *Priority = dyn_cast<ConstantInt>(CS->getOperand(0)); |
| 1335 | if (!Priority) continue; // Malformed. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1336 | Structors.push_back(Structor()); |
| 1337 | Structor &S = Structors.back(); |
| 1338 | S.Priority = Priority->getLimitedValue(65535); |
| 1339 | S.Func = CS->getOperand(1); |
| 1340 | if (ETy->getNumElements() == 3 && !CS->getOperand(2)->isNullValue()) |
| 1341 | S.ComdatKey = dyn_cast<GlobalValue>(CS->getOperand(2)->stripPointerCasts()); |
Duncan Sands | fd9c4f7 | 2011-08-28 13:17:22 +0000 | [diff] [blame] | 1342 | } |
| 1343 | |
Anton Korobeynikov | 4a99f59 | 2012-01-25 22:24:19 +0000 | [diff] [blame] | 1344 | // Emit the function pointers in the target-specific order |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 1345 | const DataLayout *DL = TM.getDataLayout(); |
| 1346 | unsigned Align = Log2_32(DL->getPointerPrefAlignment()); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1347 | std::stable_sort(Structors.begin(), Structors.end(), |
| 1348 | [](const Structor &L, |
| 1349 | const Structor &R) { return L.Priority < R.Priority; }); |
| 1350 | for (Structor &S : Structors) { |
| 1351 | const TargetLoweringObjectFile &Obj = getObjFileLowering(); |
| 1352 | const MCSymbol *KeySym = nullptr; |
| 1353 | const MCSection *KeySec = nullptr; |
| 1354 | if (S.ComdatKey) { |
| 1355 | KeySym = getSymbol(S.ComdatKey); |
| 1356 | KeySec = getObjFileLowering().SectionForGlobal(S.ComdatKey, *Mang, TM); |
| 1357 | } |
Anton Korobeynikov | 4a99f59 | 2012-01-25 22:24:19 +0000 | [diff] [blame] | 1358 | const MCSection *OutputSection = |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1359 | (isCtor ? Obj.getStaticCtorSection(S.Priority, KeySym, KeySec) |
| 1360 | : Obj.getStaticDtorSection(S.Priority, KeySym, KeySec)); |
Anton Korobeynikov | 4a99f59 | 2012-01-25 22:24:19 +0000 | [diff] [blame] | 1361 | OutStreamer.SwitchSection(OutputSection); |
| 1362 | if (OutStreamer.getCurrentSection() != OutStreamer.getPreviousSection()) |
| 1363 | EmitAlignment(Align); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1364 | EmitXXStructor(S.Func); |
Anton Korobeynikov | 4a99f59 | 2012-01-25 22:24:19 +0000 | [diff] [blame] | 1365 | } |
Chris Lattner | ed13893 | 2005-12-13 06:32:10 +0000 | [diff] [blame] | 1366 | } |
Chris Lattner | 3b4fd32 | 2005-11-21 08:25:09 +0000 | [diff] [blame] | 1367 | |
Rafael Espindola | 3aa342b | 2013-10-16 01:49:05 +0000 | [diff] [blame] | 1368 | void AsmPrinter::EmitModuleIdents(Module &M) { |
| 1369 | if (!MAI->hasIdentDirective()) |
| 1370 | return; |
| 1371 | |
| 1372 | if (const NamedMDNode *NMD = M.getNamedMetadata("llvm.ident")) { |
| 1373 | for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) { |
| 1374 | const MDNode *N = NMD->getOperand(i); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1375 | assert(N->getNumOperands() == 1 && |
Rafael Espindola | 3aa342b | 2013-10-16 01:49:05 +0000 | [diff] [blame] | 1376 | "llvm.ident metadata entry can have only one operand"); |
| 1377 | const MDString *S = cast<MDString>(N->getOperand(0)); |
| 1378 | OutStreamer.EmitIdent(S->getString()); |
| 1379 | } |
| 1380 | } |
| 1381 | } |
| 1382 | |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 1383 | //===--------------------------------------------------------------------===// |
| 1384 | // Emission and print routines |
| 1385 | // |
| 1386 | |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 1387 | /// EmitInt8 - Emit a byte directive and value. |
| 1388 | /// |
| 1389 | void AsmPrinter::EmitInt8(int Value) const { |
Eric Christopher | ca1dd05 | 2013-01-09 01:35:34 +0000 | [diff] [blame] | 1390 | OutStreamer.EmitIntValue(Value, 1); |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 1391 | } |
| 1392 | |
| 1393 | /// EmitInt16 - Emit a short directive and value. |
| 1394 | /// |
| 1395 | void AsmPrinter::EmitInt16(int Value) const { |
Eric Christopher | ca1dd05 | 2013-01-09 01:35:34 +0000 | [diff] [blame] | 1396 | OutStreamer.EmitIntValue(Value, 2); |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 1397 | } |
| 1398 | |
| 1399 | /// EmitInt32 - Emit a long directive and value. |
| 1400 | /// |
| 1401 | void AsmPrinter::EmitInt32(int Value) const { |
Eric Christopher | ca1dd05 | 2013-01-09 01:35:34 +0000 | [diff] [blame] | 1402 | OutStreamer.EmitIntValue(Value, 4); |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 1403 | } |
| 1404 | |
Chris Lattner | 0d50c76 | 2010-03-08 23:58:37 +0000 | [diff] [blame] | 1405 | /// EmitLabelDifference - Emit something like ".long Hi-Lo" where the size |
| 1406 | /// in bytes of the directive is specified by Size and Hi/Lo specify the |
| 1407 | /// labels. This implicitly uses .set if it is available. |
| 1408 | void AsmPrinter::EmitLabelDifference(const MCSymbol *Hi, const MCSymbol *Lo, |
| 1409 | unsigned Size) const { |
| 1410 | // Get the Hi-Lo expression. |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1411 | const MCExpr *Diff = |
Chris Lattner | 0d50c76 | 2010-03-08 23:58:37 +0000 | [diff] [blame] | 1412 | MCBinaryExpr::CreateSub(MCSymbolRefExpr::Create(Hi, OutContext), |
| 1413 | MCSymbolRefExpr::Create(Lo, OutContext), |
| 1414 | OutContext); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1415 | |
Chris Lattner | 0d50c76 | 2010-03-08 23:58:37 +0000 | [diff] [blame] | 1416 | if (!MAI->hasSetDirective()) { |
Eric Christopher | ca1dd05 | 2013-01-09 01:35:34 +0000 | [diff] [blame] | 1417 | OutStreamer.EmitValue(Diff, Size); |
Chris Lattner | 0d50c76 | 2010-03-08 23:58:37 +0000 | [diff] [blame] | 1418 | return; |
| 1419 | } |
| 1420 | |
| 1421 | // Otherwise, emit with .set (aka assignment). |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 1422 | MCSymbol *SetLabel = GetTempSymbol("set", SetCounter++); |
Chris Lattner | 0d50c76 | 2010-03-08 23:58:37 +0000 | [diff] [blame] | 1423 | OutStreamer.EmitAssignment(SetLabel, Diff); |
Eric Christopher | ca1dd05 | 2013-01-09 01:35:34 +0000 | [diff] [blame] | 1424 | OutStreamer.EmitSymbolValue(SetLabel, Size); |
Chris Lattner | 0d50c76 | 2010-03-08 23:58:37 +0000 | [diff] [blame] | 1425 | } |
| 1426 | |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1427 | /// EmitLabelOffsetDifference - Emit something like ".long Hi+Offset-Lo" |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 1428 | /// where the size in bytes of the directive is specified by Size and Hi/Lo |
| 1429 | /// specify the labels. This implicitly uses .set if it is available. |
| 1430 | void AsmPrinter::EmitLabelOffsetDifference(const MCSymbol *Hi, uint64_t Offset, |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1431 | const MCSymbol *Lo, |
| 1432 | unsigned Size) const { |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1433 | |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 1434 | // Emit Hi+Offset - Lo |
| 1435 | // Get the Hi+Offset expression. |
| 1436 | const MCExpr *Plus = |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1437 | MCBinaryExpr::CreateAdd(MCSymbolRefExpr::Create(Hi, OutContext), |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 1438 | MCConstantExpr::Create(Offset, OutContext), |
| 1439 | OutContext); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1440 | |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 1441 | // Get the Hi+Offset-Lo expression. |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1442 | const MCExpr *Diff = |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 1443 | MCBinaryExpr::CreateSub(Plus, |
| 1444 | MCSymbolRefExpr::Create(Lo, OutContext), |
| 1445 | OutContext); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1446 | |
| 1447 | if (!MAI->hasSetDirective()) |
Manman Ren | 38856f8 | 2013-10-29 23:14:15 +0000 | [diff] [blame] | 1448 | OutStreamer.EmitValue(Diff, Size); |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 1449 | else { |
| 1450 | // Otherwise, emit with .set (aka assignment). |
| 1451 | MCSymbol *SetLabel = GetTempSymbol("set", SetCounter++); |
| 1452 | OutStreamer.EmitAssignment(SetLabel, Diff); |
Manman Ren | 38856f8 | 2013-10-29 23:14:15 +0000 | [diff] [blame] | 1453 | OutStreamer.EmitSymbolValue(SetLabel, Size); |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 1454 | } |
| 1455 | } |
Devang Patel | b1fcfbe | 2010-09-02 16:43:44 +0000 | [diff] [blame] | 1456 | |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1457 | /// EmitLabelPlusOffset - Emit something like ".long Label+Offset" |
Devang Patel | b1fcfbe | 2010-09-02 16:43:44 +0000 | [diff] [blame] | 1458 | /// where the size in bytes of the directive is specified by Size and Label |
| 1459 | /// specifies the label. This implicitly uses .set if it is available. |
| 1460 | void AsmPrinter::EmitLabelPlusOffset(const MCSymbol *Label, uint64_t Offset, |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1461 | unsigned Size, |
| 1462 | bool IsSectionRelative) const { |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 1463 | if (MAI->needsDwarfSectionOffsetDirective() && IsSectionRelative) { |
Carlo Kok | fdabd9f | 2013-08-02 16:14:15 +0000 | [diff] [blame] | 1464 | OutStreamer.EmitCOFFSecRel32(Label); |
| 1465 | return; |
| 1466 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1467 | |
Nick Lewycky | ffccd92 | 2012-06-22 01:25:12 +0000 | [diff] [blame] | 1468 | // Emit Label+Offset (or just Label if Offset is zero) |
| 1469 | const MCExpr *Expr = MCSymbolRefExpr::Create(Label, OutContext); |
| 1470 | if (Offset) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1471 | Expr = MCBinaryExpr::CreateAdd( |
| 1472 | Expr, MCConstantExpr::Create(Offset, OutContext), OutContext); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1473 | |
Eric Christopher | ca1dd05 | 2013-01-09 01:35:34 +0000 | [diff] [blame] | 1474 | OutStreamer.EmitValue(Expr, Size); |
Devang Patel | b1fcfbe | 2010-09-02 16:43:44 +0000 | [diff] [blame] | 1475 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1476 | |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 1477 | //===----------------------------------------------------------------------===// |
| 1478 | |
Chris Lattner | 3a42053 | 2007-05-31 18:57:45 +0000 | [diff] [blame] | 1479 | // EmitAlignment - Emit an alignment directive to the specified power of |
| 1480 | // two boundary. For example, if you pass in 3 here, you will get an 8 |
| 1481 | // byte alignment. If a global value is specified, and if that global has |
Chris Lattner | e87f7bb | 2010-04-28 19:58:07 +0000 | [diff] [blame] | 1482 | // an explicit alignment requested, it will override the alignment request |
| 1483 | // if required for correctness. |
Chris Lattner | 3a42053 | 2007-05-31 18:57:45 +0000 | [diff] [blame] | 1484 | // |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1485 | void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalObject *GV) const { |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 1486 | if (GV) NumBits = getGVAlignmentLog2(GV, *TM.getDataLayout(), NumBits); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1487 | |
Chris Lattner | e87f7bb | 2010-04-28 19:58:07 +0000 | [diff] [blame] | 1488 | if (NumBits == 0) return; // 1-byte aligned: no need to emit alignment. |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1489 | |
Chris Lattner | dabf07c | 2009-08-18 06:15:16 +0000 | [diff] [blame] | 1490 | if (getCurrentSection()->getKind().isText()) |
Chris Lattner | 2cce371 | 2010-02-23 18:46:22 +0000 | [diff] [blame] | 1491 | OutStreamer.EmitCodeAlignment(1 << NumBits); |
| 1492 | else |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1493 | OutStreamer.EmitValueToAlignment(1 << NumBits); |
Chris Lattner | bfddc20 | 2004-08-17 19:14:29 +0000 | [diff] [blame] | 1494 | } |
David Greene | a5bb59f | 2009-08-05 21:00:52 +0000 | [diff] [blame] | 1495 | |
Chris Lattner | 44e0508 | 2010-04-20 06:20:21 +0000 | [diff] [blame] | 1496 | //===----------------------------------------------------------------------===// |
| 1497 | // Constant emission. |
| 1498 | //===----------------------------------------------------------------------===// |
| 1499 | |
Chad Rosier | c53ade2 | 2012-09-07 18:16:38 +0000 | [diff] [blame] | 1500 | /// lowerConstant - Lower the specified LLVM Constant to an MCExpr. |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1501 | /// |
Chad Rosier | c53ade2 | 2012-09-07 18:16:38 +0000 | [diff] [blame] | 1502 | static const MCExpr *lowerConstant(const Constant *CV, AsmPrinter &AP) { |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1503 | MCContext &Ctx = AP.OutContext; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1504 | |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1505 | if (CV->isNullValue() || isa<UndefValue>(CV)) |
| 1506 | return MCConstantExpr::Create(0, Ctx); |
Chris Lattner | fe0e7ed | 2010-01-13 04:29:19 +0000 | [diff] [blame] | 1507 | |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1508 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) |
| 1509 | return MCConstantExpr::Create(CI->getZExtValue(), Ctx); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1510 | |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1511 | if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) |
Rafael Espindola | ffc7dca | 2013-10-29 17:07:16 +0000 | [diff] [blame] | 1512 | return MCSymbolRefExpr::Create(AP.getSymbol(GV), Ctx); |
Bill Wendling | 3d7ff08 | 2010-08-18 18:41:13 +0000 | [diff] [blame] | 1513 | |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1514 | if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) |
| 1515 | return MCSymbolRefExpr::Create(AP.GetBlockAddressSymbol(BA), Ctx); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1516 | |
Chris Lattner | fe0e7ed | 2010-01-13 04:29:19 +0000 | [diff] [blame] | 1517 | const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1518 | if (!CE) { |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1519 | llvm_unreachable("Unknown constant value to lower!"); |
Chris Lattner | fe0e7ed | 2010-01-13 04:29:19 +0000 | [diff] [blame] | 1520 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1521 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1522 | if (const MCExpr *RelocExpr = |
| 1523 | AP.getObjFileLowering().getExecutableRelativeSymbol(CE, *AP.Mang, |
| 1524 | AP.TM)) |
| 1525 | return RelocExpr; |
| 1526 | |
Chris Lattner | fe0e7ed | 2010-01-13 04:29:19 +0000 | [diff] [blame] | 1527 | switch (CE->getOpcode()) { |
Dan Gohman | 618f177 | 2010-02-08 22:02:38 +0000 | [diff] [blame] | 1528 | default: |
| 1529 | // If the code isn't optimized, there may be outstanding folding |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 1530 | // opportunities. Attempt to fold the expression using DataLayout as a |
Dan Gohman | 618f177 | 2010-02-08 22:02:38 +0000 | [diff] [blame] | 1531 | // last resort before giving up. |
Dan Gohman | 54e72ec | 2010-02-08 22:19:11 +0000 | [diff] [blame] | 1532 | if (Constant *C = |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 1533 | ConstantFoldConstantExpression(CE, AP.TM.getDataLayout())) |
Dan Gohman | 54e72ec | 2010-02-08 22:19:11 +0000 | [diff] [blame] | 1534 | if (C != CE) |
Chad Rosier | c53ade2 | 2012-09-07 18:16:38 +0000 | [diff] [blame] | 1535 | return lowerConstant(C, AP); |
Dan Gohman | 9f6a6862 | 2010-08-04 18:51:09 +0000 | [diff] [blame] | 1536 | |
| 1537 | // Otherwise report the problem to the user. |
| 1538 | { |
| 1539 | std::string S; |
| 1540 | raw_string_ostream OS(S); |
| 1541 | OS << "Unsupported expression in static initializer: "; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1542 | CE->printAsOperand(OS, /*PrintType=*/false, |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1543 | !AP.MF ? nullptr : AP.MF->getFunction()->getParent()); |
Dan Gohman | 9f6a6862 | 2010-08-04 18:51:09 +0000 | [diff] [blame] | 1544 | report_fatal_error(OS.str()); |
| 1545 | } |
Chris Lattner | fe0e7ed | 2010-01-13 04:29:19 +0000 | [diff] [blame] | 1546 | case Instruction::GetElementPtr: { |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 1547 | const DataLayout &DL = *AP.TM.getDataLayout(); |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1548 | // Generate a symbolic expression for the byte address |
Matt Arsenault | ff71812 | 2013-10-21 20:03:54 +0000 | [diff] [blame] | 1549 | APInt OffsetAI(DL.getPointerTypeSizeInBits(CE->getType()), 0); |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 1550 | cast<GEPOperator>(CE)->accumulateConstantOffset(DL, OffsetAI); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1551 | |
Chad Rosier | c53ade2 | 2012-09-07 18:16:38 +0000 | [diff] [blame] | 1552 | const MCExpr *Base = lowerConstant(CE->getOperand(0), AP); |
Nuno Lopes | 98281a2 | 2012-12-30 16:25:48 +0000 | [diff] [blame] | 1553 | if (!OffsetAI) |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1554 | return Base; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1555 | |
Nuno Lopes | 98281a2 | 2012-12-30 16:25:48 +0000 | [diff] [blame] | 1556 | int64_t Offset = OffsetAI.getSExtValue(); |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1557 | return MCBinaryExpr::CreateAdd(Base, MCConstantExpr::Create(Offset, Ctx), |
| 1558 | Ctx); |
Chris Lattner | fe0e7ed | 2010-01-13 04:29:19 +0000 | [diff] [blame] | 1559 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1560 | |
Chris Lattner | fe0e7ed | 2010-01-13 04:29:19 +0000 | [diff] [blame] | 1561 | case Instruction::Trunc: |
| 1562 | // We emit the value and depend on the assembler to truncate the generated |
| 1563 | // expression properly. This is important for differences between |
| 1564 | // blockaddress labels. Since the two labels are in the same function, it |
| 1565 | // is reasonable to treat their delta as a 32-bit value. |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1566 | // FALL THROUGH. |
| 1567 | case Instruction::BitCast: |
Chad Rosier | c53ade2 | 2012-09-07 18:16:38 +0000 | [diff] [blame] | 1568 | return lowerConstant(CE->getOperand(0), AP); |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1569 | |
| 1570 | case Instruction::IntToPtr: { |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 1571 | const DataLayout &DL = *AP.TM.getDataLayout(); |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1572 | // Handle casts to pointers by changing them into casts to the appropriate |
| 1573 | // integer type. This promotes constant folding and simplifies this code. |
| 1574 | Constant *Op = CE->getOperand(0); |
Matt Arsenault | ff71812 | 2013-10-21 20:03:54 +0000 | [diff] [blame] | 1575 | Op = ConstantExpr::getIntegerCast(Op, DL.getIntPtrType(CV->getType()), |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1576 | false/*ZExt*/); |
Chad Rosier | c53ade2 | 2012-09-07 18:16:38 +0000 | [diff] [blame] | 1577 | return lowerConstant(Op, AP); |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1578 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1579 | |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1580 | case Instruction::PtrToInt: { |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 1581 | const DataLayout &DL = *AP.TM.getDataLayout(); |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1582 | // Support only foldable casts to/from pointers that can be eliminated by |
| 1583 | // changing the pointer to the appropriately sized integer type. |
| 1584 | Constant *Op = CE->getOperand(0); |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1585 | Type *Ty = CE->getType(); |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1586 | |
Chad Rosier | c53ade2 | 2012-09-07 18:16:38 +0000 | [diff] [blame] | 1587 | const MCExpr *OpExpr = lowerConstant(Op, AP); |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1588 | |
| 1589 | // We can emit the pointer value into this slot if the slot is an |
| 1590 | // integer slot equal to the size of the pointer. |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 1591 | if (DL.getTypeAllocSize(Ty) == DL.getTypeAllocSize(Op->getType())) |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1592 | return OpExpr; |
| 1593 | |
| 1594 | // Otherwise the pointer is smaller than the resultant integer, mask off |
| 1595 | // the high bits so we are sure to get a proper truncation if the input is |
| 1596 | // a constant expr. |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 1597 | unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType()); |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1598 | const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx); |
| 1599 | return MCBinaryExpr::CreateAnd(OpExpr, MaskExpr, Ctx); |
| 1600 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1601 | |
Dan Gohman | 5938a3e | 2010-02-09 00:02:37 +0000 | [diff] [blame] | 1602 | // The MC library also has a right-shift operator, but it isn't consistently |
| 1603 | // signed or unsigned between different targets. |
Chris Lattner | fe0e7ed | 2010-01-13 04:29:19 +0000 | [diff] [blame] | 1604 | case Instruction::Add: |
| 1605 | case Instruction::Sub: |
Dan Gohman | 5938a3e | 2010-02-09 00:02:37 +0000 | [diff] [blame] | 1606 | case Instruction::Mul: |
| 1607 | case Instruction::SDiv: |
| 1608 | case Instruction::SRem: |
| 1609 | case Instruction::Shl: |
Chris Lattner | fe0e7ed | 2010-01-13 04:29:19 +0000 | [diff] [blame] | 1610 | case Instruction::And: |
| 1611 | case Instruction::Or: |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1612 | case Instruction::Xor: { |
Chad Rosier | c53ade2 | 2012-09-07 18:16:38 +0000 | [diff] [blame] | 1613 | const MCExpr *LHS = lowerConstant(CE->getOperand(0), AP); |
| 1614 | const MCExpr *RHS = lowerConstant(CE->getOperand(1), AP); |
Chris Lattner | fe0e7ed | 2010-01-13 04:29:19 +0000 | [diff] [blame] | 1615 | switch (CE->getOpcode()) { |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1616 | default: llvm_unreachable("Unknown binary operator constant cast expr"); |
| 1617 | case Instruction::Add: return MCBinaryExpr::CreateAdd(LHS, RHS, Ctx); |
| 1618 | case Instruction::Sub: return MCBinaryExpr::CreateSub(LHS, RHS, Ctx); |
Dan Gohman | 5938a3e | 2010-02-09 00:02:37 +0000 | [diff] [blame] | 1619 | case Instruction::Mul: return MCBinaryExpr::CreateMul(LHS, RHS, Ctx); |
| 1620 | case Instruction::SDiv: return MCBinaryExpr::CreateDiv(LHS, RHS, Ctx); |
| 1621 | case Instruction::SRem: return MCBinaryExpr::CreateMod(LHS, RHS, Ctx); |
| 1622 | case Instruction::Shl: return MCBinaryExpr::CreateShl(LHS, RHS, Ctx); |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1623 | case Instruction::And: return MCBinaryExpr::CreateAnd(LHS, RHS, Ctx); |
| 1624 | case Instruction::Or: return MCBinaryExpr::CreateOr (LHS, RHS, Ctx); |
| 1625 | case Instruction::Xor: return MCBinaryExpr::CreateXor(LHS, RHS, Ctx); |
Chris Lattner | fe0e7ed | 2010-01-13 04:29:19 +0000 | [diff] [blame] | 1626 | } |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1627 | } |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 1628 | } |
| 1629 | } |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 1630 | |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1631 | static void emitGlobalConstantImpl(const Constant *C, AsmPrinter &AP); |
Chris Lattner | 44e0508 | 2010-04-20 06:20:21 +0000 | [diff] [blame] | 1632 | |
David Greene | d92e2e4 | 2011-08-31 17:30:56 +0000 | [diff] [blame] | 1633 | /// isRepeatedByteSequence - Determine whether the given value is |
| 1634 | /// composed of a repeated sequence of identical bytes and return the |
| 1635 | /// byte value. If it is not a repeated sequence, return -1. |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1636 | static int isRepeatedByteSequence(const ConstantDataSequential *V) { |
| 1637 | StringRef Data = V->getRawDataValues(); |
| 1638 | assert(!Data.empty() && "Empty aggregates should be CAZ node"); |
| 1639 | char C = Data[0]; |
| 1640 | for (unsigned i = 1, e = Data.size(); i != e; ++i) |
| 1641 | if (Data[i] != C) return -1; |
Chandler Carruth | beb0595 | 2012-01-30 23:47:44 +0000 | [diff] [blame] | 1642 | return static_cast<uint8_t>(C); // Ensure 255 is not returned as -1. |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1643 | } |
| 1644 | |
| 1645 | |
| 1646 | /// isRepeatedByteSequence - Determine whether the given value is |
| 1647 | /// composed of a repeated sequence of identical bytes and return the |
| 1648 | /// byte value. If it is not a repeated sequence, return -1. |
David Greene | d92e2e4 | 2011-08-31 17:30:56 +0000 | [diff] [blame] | 1649 | static int isRepeatedByteSequence(const Value *V, TargetMachine &TM) { |
| 1650 | |
| 1651 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) { |
| 1652 | if (CI->getBitWidth() > 64) return -1; |
| 1653 | |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 1654 | uint64_t Size = TM.getDataLayout()->getTypeAllocSize(V->getType()); |
David Greene | d92e2e4 | 2011-08-31 17:30:56 +0000 | [diff] [blame] | 1655 | uint64_t Value = CI->getZExtValue(); |
| 1656 | |
| 1657 | // Make sure the constant is at least 8 bits long and has a power |
| 1658 | // of 2 bit width. This guarantees the constant bit width is |
| 1659 | // always a multiple of 8 bits, avoiding issues with padding out |
| 1660 | // to Size and other such corner cases. |
| 1661 | if (CI->getBitWidth() < 8 || !isPowerOf2_64(CI->getBitWidth())) return -1; |
| 1662 | |
| 1663 | uint8_t Byte = static_cast<uint8_t>(Value); |
| 1664 | |
| 1665 | for (unsigned i = 1; i < Size; ++i) { |
| 1666 | Value >>= 8; |
| 1667 | if (static_cast<uint8_t>(Value) != Byte) return -1; |
| 1668 | } |
| 1669 | return Byte; |
| 1670 | } |
| 1671 | if (const ConstantArray *CA = dyn_cast<ConstantArray>(V)) { |
| 1672 | // Make sure all array elements are sequences of the same repeated |
| 1673 | // byte. |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1674 | assert(CA->getNumOperands() != 0 && "Should be a CAZ"); |
David Greene | d92e2e4 | 2011-08-31 17:30:56 +0000 | [diff] [blame] | 1675 | int Byte = isRepeatedByteSequence(CA->getOperand(0), TM); |
| 1676 | if (Byte == -1) return -1; |
| 1677 | |
| 1678 | for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) { |
| 1679 | int ThisByte = isRepeatedByteSequence(CA->getOperand(i), TM); |
| 1680 | if (ThisByte == -1) return -1; |
| 1681 | if (Byte != ThisByte) return -1; |
| 1682 | } |
| 1683 | return Byte; |
| 1684 | } |
Eric Christopher | dcc675a | 2012-11-20 20:34:44 +0000 | [diff] [blame] | 1685 | |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1686 | if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(V)) |
| 1687 | return isRepeatedByteSequence(CDS); |
David Greene | d92e2e4 | 2011-08-31 17:30:56 +0000 | [diff] [blame] | 1688 | |
| 1689 | return -1; |
| 1690 | } |
| 1691 | |
Chad Rosier | c53ade2 | 2012-09-07 18:16:38 +0000 | [diff] [blame] | 1692 | static void emitGlobalConstantDataSequential(const ConstantDataSequential *CDS, |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1693 | AsmPrinter &AP){ |
Eric Christopher | dcc675a | 2012-11-20 20:34:44 +0000 | [diff] [blame] | 1694 | |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1695 | // See if we can aggregate this into a .fill, if so, emit it as such. |
| 1696 | int Value = isRepeatedByteSequence(CDS, AP.TM); |
| 1697 | if (Value != -1) { |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 1698 | uint64_t Bytes = AP.TM.getDataLayout()->getTypeAllocSize(CDS->getType()); |
Chris Lattner | c63352f | 2012-01-31 03:39:24 +0000 | [diff] [blame] | 1699 | // Don't emit a 1-byte object as a .fill. |
| 1700 | if (Bytes > 1) |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1701 | return AP.OutStreamer.EmitFill(Bytes, Value); |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1702 | } |
Eric Christopher | dcc675a | 2012-11-20 20:34:44 +0000 | [diff] [blame] | 1703 | |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1704 | // If this can be emitted with .ascii/.asciz, emit it as such. |
| 1705 | if (CDS->isString()) |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1706 | return AP.OutStreamer.EmitBytes(CDS->getAsString()); |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1707 | |
| 1708 | // Otherwise, emit the values in successive locations. |
| 1709 | unsigned ElementByteSize = CDS->getElementByteSize(); |
| 1710 | if (isa<IntegerType>(CDS->getElementType())) { |
Chris Lattner | 0f193b8 | 2012-01-25 01:27:20 +0000 | [diff] [blame] | 1711 | for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { |
Chris Lattner | b66fb5a | 2012-01-30 05:55:11 +0000 | [diff] [blame] | 1712 | if (AP.isVerbose()) |
| 1713 | AP.OutStreamer.GetCommentOS() << format("0x%" PRIx64 "\n", |
| 1714 | CDS->getElementAsInteger(i)); |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1715 | AP.OutStreamer.EmitIntValue(CDS->getElementAsInteger(i), |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1716 | ElementByteSize); |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1717 | } |
Chris Lattner | 6e64c38 | 2012-01-30 05:49:43 +0000 | [diff] [blame] | 1718 | } else if (ElementByteSize == 4) { |
| 1719 | // FP Constants are printed as integer constants to avoid losing |
| 1720 | // precision. |
| 1721 | assert(CDS->getElementType()->isFloatTy()); |
Chris Lattner | 0f193b8 | 2012-01-25 01:27:20 +0000 | [diff] [blame] | 1722 | for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1723 | union { |
| 1724 | float F; |
| 1725 | uint32_t I; |
| 1726 | }; |
Eric Christopher | dcc675a | 2012-11-20 20:34:44 +0000 | [diff] [blame] | 1727 | |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1728 | F = CDS->getElementAsFloat(i); |
| 1729 | if (AP.isVerbose()) |
| 1730 | AP.OutStreamer.GetCommentOS() << "float " << F << '\n'; |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1731 | AP.OutStreamer.EmitIntValue(I, 4); |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1732 | } |
Chris Lattner | 6e64c38 | 2012-01-30 05:49:43 +0000 | [diff] [blame] | 1733 | } else { |
| 1734 | assert(CDS->getElementType()->isDoubleTy()); |
| 1735 | for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { |
| 1736 | union { |
| 1737 | double F; |
| 1738 | uint64_t I; |
| 1739 | }; |
Eric Christopher | dcc675a | 2012-11-20 20:34:44 +0000 | [diff] [blame] | 1740 | |
Chris Lattner | 6e64c38 | 2012-01-30 05:49:43 +0000 | [diff] [blame] | 1741 | F = CDS->getElementAsDouble(i); |
| 1742 | if (AP.isVerbose()) |
| 1743 | AP.OutStreamer.GetCommentOS() << "double " << F << '\n'; |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1744 | AP.OutStreamer.EmitIntValue(I, 8); |
Chris Lattner | 6e64c38 | 2012-01-30 05:49:43 +0000 | [diff] [blame] | 1745 | } |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1746 | } |
| 1747 | |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 1748 | const DataLayout &DL = *AP.TM.getDataLayout(); |
| 1749 | unsigned Size = DL.getTypeAllocSize(CDS->getType()); |
| 1750 | unsigned EmittedSize = DL.getTypeAllocSize(CDS->getType()->getElementType()) * |
Chris Lattner | 6e64c38 | 2012-01-30 05:49:43 +0000 | [diff] [blame] | 1751 | CDS->getNumElements(); |
| 1752 | if (unsigned Padding = Size - EmittedSize) |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1753 | AP.OutStreamer.EmitZeros(Padding); |
Chris Lattner | 6e64c38 | 2012-01-30 05:49:43 +0000 | [diff] [blame] | 1754 | |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1755 | } |
| 1756 | |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1757 | static void emitGlobalConstantArray(const ConstantArray *CA, AsmPrinter &AP) { |
Chris Lattner | 18c7f80 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 1758 | // See if we can aggregate some values. Make sure it can be |
| 1759 | // represented as a series of bytes of the constant value. |
| 1760 | int Value = isRepeatedByteSequence(CA, AP.TM); |
David Greene | d92e2e4 | 2011-08-31 17:30:56 +0000 | [diff] [blame] | 1761 | |
Chris Lattner | 18c7f80 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 1762 | if (Value != -1) { |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 1763 | uint64_t Bytes = AP.TM.getDataLayout()->getTypeAllocSize(CA->getType()); |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1764 | AP.OutStreamer.EmitFill(Bytes, Value); |
Dan Gohman | 00d448a | 2008-12-22 21:14:27 +0000 | [diff] [blame] | 1765 | } |
Chris Lattner | 18c7f80 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 1766 | else { |
| 1767 | for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i) |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1768 | emitGlobalConstantImpl(CA->getOperand(i), AP); |
Chris Lattner | 18c7f80 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 1769 | } |
Dan Gohman | 00d448a | 2008-12-22 21:14:27 +0000 | [diff] [blame] | 1770 | } |
| 1771 | |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1772 | static void emitGlobalConstantVector(const ConstantVector *CV, AsmPrinter &AP) { |
Chris Lattner | bcb83e5 | 2010-01-20 07:41:15 +0000 | [diff] [blame] | 1773 | for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i) |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1774 | emitGlobalConstantImpl(CV->getOperand(i), AP); |
Nick Lewycky | 5b7ac14 | 2011-06-22 18:55:03 +0000 | [diff] [blame] | 1775 | |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 1776 | const DataLayout &DL = *AP.TM.getDataLayout(); |
| 1777 | unsigned Size = DL.getTypeAllocSize(CV->getType()); |
| 1778 | unsigned EmittedSize = DL.getTypeAllocSize(CV->getType()->getElementType()) * |
Nick Lewycky | 5b7ac14 | 2011-06-22 18:55:03 +0000 | [diff] [blame] | 1779 | CV->getType()->getNumElements(); |
| 1780 | if (unsigned Padding = Size - EmittedSize) |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1781 | AP.OutStreamer.EmitZeros(Padding); |
Dan Gohman | 00d448a | 2008-12-22 21:14:27 +0000 | [diff] [blame] | 1782 | } |
| 1783 | |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1784 | static void emitGlobalConstantStruct(const ConstantStruct *CS, AsmPrinter &AP) { |
Dan Gohman | 00d448a | 2008-12-22 21:14:27 +0000 | [diff] [blame] | 1785 | // Print the fields in successive locations. Pad to align if needed! |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 1786 | const DataLayout *DL = AP.TM.getDataLayout(); |
| 1787 | unsigned Size = DL->getTypeAllocSize(CS->getType()); |
| 1788 | const StructLayout *Layout = DL->getStructLayout(CS->getType()); |
Chris Lattner | 91093ec | 2010-01-19 19:10:44 +0000 | [diff] [blame] | 1789 | uint64_t SizeSoFar = 0; |
| 1790 | for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i) { |
Chris Lattner | bcb83e5 | 2010-01-20 07:41:15 +0000 | [diff] [blame] | 1791 | const Constant *Field = CS->getOperand(i); |
Dan Gohman | 00d448a | 2008-12-22 21:14:27 +0000 | [diff] [blame] | 1792 | |
| 1793 | // Check if padding is needed and insert one or more 0s. |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 1794 | uint64_t FieldSize = DL->getTypeAllocSize(Field->getType()); |
Chris Lattner | 2dd245c | 2010-01-20 07:11:32 +0000 | [diff] [blame] | 1795 | uint64_t PadSize = ((i == e-1 ? Size : Layout->getElementOffset(i+1)) |
| 1796 | - Layout->getElementOffset(i)) - FieldSize; |
| 1797 | SizeSoFar += FieldSize + PadSize; |
Dan Gohman | 00d448a | 2008-12-22 21:14:27 +0000 | [diff] [blame] | 1798 | |
| 1799 | // Now print the actual field value. |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1800 | emitGlobalConstantImpl(Field, AP); |
Dan Gohman | 00d448a | 2008-12-22 21:14:27 +0000 | [diff] [blame] | 1801 | |
| 1802 | // Insert padding - this may include padding to increase the size of the |
| 1803 | // current field up to the ABI size (if the struct is not packed) as well |
| 1804 | // as padding to ensure that the next field starts at the right offset. |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1805 | AP.OutStreamer.EmitZeros(PadSize); |
Dan Gohman | 00d448a | 2008-12-22 21:14:27 +0000 | [diff] [blame] | 1806 | } |
Chris Lattner | 2dd245c | 2010-01-20 07:11:32 +0000 | [diff] [blame] | 1807 | assert(SizeSoFar == Layout->getSizeInBytes() && |
Dan Gohman | 00d448a | 2008-12-22 21:14:27 +0000 | [diff] [blame] | 1808 | "Layout of constant struct may be incorrect!"); |
| 1809 | } |
| 1810 | |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1811 | static void emitGlobalConstantFP(const ConstantFP *CFP, AsmPrinter &AP) { |
Chris Lattner | 09ce674 | 2010-01-19 22:16:33 +0000 | [diff] [blame] | 1812 | APInt API = CFP->getValueAPF().bitcastToAPInt(); |
Tim Northover | 5f2801b | 2013-01-11 10:36:13 +0000 | [diff] [blame] | 1813 | |
| 1814 | // First print a comment with what we think the original floating-point value |
| 1815 | // should have been. |
| 1816 | if (AP.isVerbose()) { |
| 1817 | SmallString<8> StrVal; |
| 1818 | CFP->getValueAPF().toString(StrVal); |
| 1819 | |
| 1820 | CFP->getType()->print(AP.OutStreamer.GetCommentOS()); |
| 1821 | AP.OutStreamer.GetCommentOS() << ' ' << StrVal << '\n'; |
Chris Lattner | 09ce674 | 2010-01-19 22:16:33 +0000 | [diff] [blame] | 1822 | } |
Tim Northover | 5f2801b | 2013-01-11 10:36:13 +0000 | [diff] [blame] | 1823 | |
| 1824 | // Now iterate through the APInt chunks, emitting them in endian-correct |
| 1825 | // order, possibly with a smaller chunk at beginning/end (e.g. for x87 80-bit |
| 1826 | // floats). |
| 1827 | unsigned NumBytes = API.getBitWidth() / 8; |
| 1828 | unsigned TrailingBytes = NumBytes % sizeof(uint64_t); |
| 1829 | const uint64_t *p = API.getRawData(); |
| 1830 | |
| 1831 | // PPC's long double has odd notions of endianness compared to how LLVM |
| 1832 | // handles it: p[0] goes first for *big* endian on PPC. |
| 1833 | if (AP.TM.getDataLayout()->isBigEndian() != CFP->getType()->isPPC_FP128Ty()) { |
| 1834 | int Chunk = API.getNumWords() - 1; |
| 1835 | |
| 1836 | if (TrailingBytes) |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1837 | AP.OutStreamer.EmitIntValue(p[Chunk--], TrailingBytes); |
Tim Northover | 5f2801b | 2013-01-11 10:36:13 +0000 | [diff] [blame] | 1838 | |
| 1839 | for (; Chunk >= 0; --Chunk) |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1840 | AP.OutStreamer.EmitIntValue(p[Chunk], sizeof(uint64_t)); |
Tim Northover | 5f2801b | 2013-01-11 10:36:13 +0000 | [diff] [blame] | 1841 | } else { |
| 1842 | unsigned Chunk; |
| 1843 | for (Chunk = 0; Chunk < NumBytes / sizeof(uint64_t); ++Chunk) |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1844 | AP.OutStreamer.EmitIntValue(p[Chunk], sizeof(uint64_t)); |
Tim Northover | 5f2801b | 2013-01-11 10:36:13 +0000 | [diff] [blame] | 1845 | |
| 1846 | if (TrailingBytes) |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1847 | AP.OutStreamer.EmitIntValue(p[Chunk], TrailingBytes); |
Tim Northover | 5f2801b | 2013-01-11 10:36:13 +0000 | [diff] [blame] | 1848 | } |
| 1849 | |
| 1850 | // Emit the tail padding for the long double. |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 1851 | const DataLayout &DL = *AP.TM.getDataLayout(); |
| 1852 | AP.OutStreamer.EmitZeros(DL.getTypeAllocSize(CFP->getType()) - |
| 1853 | DL.getTypeStoreSize(CFP->getType())); |
Dan Gohman | 00d448a | 2008-12-22 21:14:27 +0000 | [diff] [blame] | 1854 | } |
| 1855 | |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1856 | static void emitGlobalConstantLargeInt(const ConstantInt *CI, AsmPrinter &AP) { |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 1857 | const DataLayout *DL = AP.TM.getDataLayout(); |
Dan Gohman | 00d448a | 2008-12-22 21:14:27 +0000 | [diff] [blame] | 1858 | unsigned BitWidth = CI->getBitWidth(); |
Quentin Colombet | fcca6c6 | 2013-06-07 18:36:03 +0000 | [diff] [blame] | 1859 | |
| 1860 | // Copy the value as we may massage the layout for constants whose bit width |
| 1861 | // is not a multiple of 64-bits. |
| 1862 | APInt Realigned(CI->getValue()); |
| 1863 | uint64_t ExtraBits = 0; |
| 1864 | unsigned ExtraBitsSize = BitWidth & 63; |
| 1865 | |
| 1866 | if (ExtraBitsSize) { |
| 1867 | // The bit width of the data is not a multiple of 64-bits. |
| 1868 | // The extra bits are expected to be at the end of the chunk of the memory. |
| 1869 | // Little endian: |
| 1870 | // * Nothing to be done, just record the extra bits to emit. |
| 1871 | // Big endian: |
| 1872 | // * Record the extra bits to emit. |
| 1873 | // * Realign the raw data to emit the chunks of 64-bits. |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 1874 | if (DL->isBigEndian()) { |
Quentin Colombet | fcca6c6 | 2013-06-07 18:36:03 +0000 | [diff] [blame] | 1875 | // Basically the structure of the raw data is a chunk of 64-bits cells: |
| 1876 | // 0 1 BitWidth / 64 |
| 1877 | // [chunk1][chunk2] ... [chunkN]. |
| 1878 | // The most significant chunk is chunkN and it should be emitted first. |
| 1879 | // However, due to the alignment issue chunkN contains useless bits. |
| 1880 | // Realign the chunks so that they contain only useless information: |
| 1881 | // ExtraBits 0 1 (BitWidth / 64) - 1 |
| 1882 | // chu[nk1 chu][nk2 chu] ... [nkN-1 chunkN] |
| 1883 | ExtraBits = Realigned.getRawData()[0] & |
| 1884 | (((uint64_t)-1) >> (64 - ExtraBitsSize)); |
| 1885 | Realigned = Realigned.lshr(ExtraBitsSize); |
| 1886 | } else |
| 1887 | ExtraBits = Realigned.getRawData()[BitWidth / 64]; |
| 1888 | } |
Dan Gohman | 00d448a | 2008-12-22 21:14:27 +0000 | [diff] [blame] | 1889 | |
| 1890 | // We don't expect assemblers to support integer data directives |
| 1891 | // for more than 64 bits, so we emit the data in at most 64-bit |
| 1892 | // quantities at a time. |
Quentin Colombet | fcca6c6 | 2013-06-07 18:36:03 +0000 | [diff] [blame] | 1893 | const uint64_t *RawData = Realigned.getRawData(); |
Dan Gohman | 00d448a | 2008-12-22 21:14:27 +0000 | [diff] [blame] | 1894 | for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) { |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 1895 | uint64_t Val = DL->isBigEndian() ? RawData[e - i - 1] : RawData[i]; |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1896 | AP.OutStreamer.EmitIntValue(Val, 8); |
Dan Gohman | 00d448a | 2008-12-22 21:14:27 +0000 | [diff] [blame] | 1897 | } |
Quentin Colombet | fcca6c6 | 2013-06-07 18:36:03 +0000 | [diff] [blame] | 1898 | |
| 1899 | if (ExtraBitsSize) { |
| 1900 | // Emit the extra bits after the 64-bits chunks. |
| 1901 | |
| 1902 | // Emit a directive that fills the expected size. |
| 1903 | uint64_t Size = AP.TM.getDataLayout()->getTypeAllocSize(CI->getType()); |
| 1904 | Size -= (BitWidth / 64) * 8; |
| 1905 | assert(Size && Size * 8 >= ExtraBitsSize && |
| 1906 | (ExtraBits & (((uint64_t)-1) >> (64 - ExtraBitsSize))) |
| 1907 | == ExtraBits && "Directive too small for extra bits."); |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1908 | AP.OutStreamer.EmitIntValue(ExtraBits, Size); |
Quentin Colombet | fcca6c6 | 2013-06-07 18:36:03 +0000 | [diff] [blame] | 1909 | } |
Dan Gohman | 00d448a | 2008-12-22 21:14:27 +0000 | [diff] [blame] | 1910 | } |
| 1911 | |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1912 | static void emitGlobalConstantImpl(const Constant *CV, AsmPrinter &AP) { |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 1913 | const DataLayout *DL = AP.TM.getDataLayout(); |
| 1914 | uint64_t Size = DL->getTypeAllocSize(CV->getType()); |
Bill Wendling | 21e42d0 | 2012-03-20 08:56:43 +0000 | [diff] [blame] | 1915 | if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV)) |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1916 | return AP.OutStreamer.EmitZeros(Size); |
Chris Lattner | 2dd245c | 2010-01-20 07:11:32 +0000 | [diff] [blame] | 1917 | |
| 1918 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { |
Chris Lattner | 2dd245c | 2010-01-20 07:11:32 +0000 | [diff] [blame] | 1919 | switch (Size) { |
| 1920 | case 1: |
| 1921 | case 2: |
| 1922 | case 4: |
| 1923 | case 8: |
Chris Lattner | 44e0508 | 2010-04-20 06:20:21 +0000 | [diff] [blame] | 1924 | if (AP.isVerbose()) |
Benjamin Kramer | 41a9649 | 2011-11-05 08:57:40 +0000 | [diff] [blame] | 1925 | AP.OutStreamer.GetCommentOS() << format("0x%" PRIx64 "\n", |
| 1926 | CI->getZExtValue()); |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1927 | AP.OutStreamer.EmitIntValue(CI->getZExtValue(), Size); |
Chris Lattner | 2dd245c | 2010-01-20 07:11:32 +0000 | [diff] [blame] | 1928 | return; |
| 1929 | default: |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1930 | emitGlobalConstantLargeInt(CI, AP); |
Chris Lattner | 2dd245c | 2010-01-20 07:11:32 +0000 | [diff] [blame] | 1931 | return; |
| 1932 | } |
| 1933 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1934 | |
Chris Lattner | 91093ec | 2010-01-19 19:10:44 +0000 | [diff] [blame] | 1935 | if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1936 | return emitGlobalConstantFP(CFP, AP); |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 1937 | |
Chris Lattner | b0bedd6 | 2010-01-20 17:57:50 +0000 | [diff] [blame] | 1938 | if (isa<ConstantPointerNull>(CV)) { |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1939 | AP.OutStreamer.EmitIntValue(0, Size); |
Chris Lattner | b0bedd6 | 2010-01-20 17:57:50 +0000 | [diff] [blame] | 1940 | return; |
| 1941 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1942 | |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1943 | if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(CV)) |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1944 | return emitGlobalConstantDataSequential(CDS, AP); |
Eric Christopher | dcc675a | 2012-11-20 20:34:44 +0000 | [diff] [blame] | 1945 | |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1946 | if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1947 | return emitGlobalConstantArray(CVA, AP); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 1948 | |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1949 | if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1950 | return emitGlobalConstantStruct(CVS, AP); |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1951 | |
Bill Wendling | 21e42d0 | 2012-03-20 08:56:43 +0000 | [diff] [blame] | 1952 | if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) { |
| 1953 | // Look through bitcasts, which might not be able to be MCExpr'ized (e.g. of |
| 1954 | // vectors). |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1955 | if (CE->getOpcode() == Instruction::BitCast) |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1956 | return emitGlobalConstantImpl(CE->getOperand(0), AP); |
Bill Wendling | 21e42d0 | 2012-03-20 08:56:43 +0000 | [diff] [blame] | 1957 | |
| 1958 | if (Size > 8) { |
| 1959 | // If the constant expression's size is greater than 64-bits, then we have |
| 1960 | // to emit the value in chunks. Try to constant fold the value and emit it |
| 1961 | // that way. |
Matt Arsenault | cee51c4 | 2013-10-03 19:50:01 +0000 | [diff] [blame] | 1962 | Constant *New = ConstantFoldConstantExpression(CE, DL); |
Bill Wendling | 21e42d0 | 2012-03-20 08:56:43 +0000 | [diff] [blame] | 1963 | if (New && New != CE) |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1964 | return emitGlobalConstantImpl(New, AP); |
Bill Wendling | 21e42d0 | 2012-03-20 08:56:43 +0000 | [diff] [blame] | 1965 | } |
| 1966 | } |
Eric Christopher | dcc675a | 2012-11-20 20:34:44 +0000 | [diff] [blame] | 1967 | |
Chris Lattner | 9e631da | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 1968 | if (const ConstantVector *V = dyn_cast<ConstantVector>(CV)) |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1969 | return emitGlobalConstantVector(V, AP); |
Eric Christopher | dcc675a | 2012-11-20 20:34:44 +0000 | [diff] [blame] | 1970 | |
Chris Lattner | 52492ac | 2010-01-23 06:17:14 +0000 | [diff] [blame] | 1971 | // Otherwise, it must be a ConstantExpr. Lower it to an MCExpr, then emit it |
| 1972 | // thread the streamer with EmitValue. |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1973 | AP.OutStreamer.EmitValue(lowerConstant(CV, AP), Size); |
Chris Lattner | 44e0508 | 2010-04-20 06:20:21 +0000 | [diff] [blame] | 1974 | } |
| 1975 | |
| 1976 | /// EmitGlobalConstant - Print a general LLVM constant to the .s file. |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1977 | void AsmPrinter::EmitGlobalConstant(const Constant *CV) { |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 1978 | uint64_t Size = TM.getDataLayout()->getTypeAllocSize(CV->getType()); |
Chris Lattner | 44e0508 | 2010-04-20 06:20:21 +0000 | [diff] [blame] | 1979 | if (Size) |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1980 | emitGlobalConstantImpl(CV, *this); |
Chris Lattner | 44e0508 | 2010-04-20 06:20:21 +0000 | [diff] [blame] | 1981 | else if (MAI->hasSubsectionsViaSymbols()) { |
| 1982 | // If the global has zero size, emit a single byte so that two labels don't |
| 1983 | // look like they are at the same location. |
Rafael Espindola | a3863ea | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 1984 | OutStreamer.EmitIntValue(0, 1); |
Chris Lattner | 44e0508 | 2010-04-20 06:20:21 +0000 | [diff] [blame] | 1985 | } |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 1986 | } |
Chris Lattner | 0264d1a | 2006-01-27 02:10:10 +0000 | [diff] [blame] | 1987 | |
Chris Lattner | fad86b0 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1988 | void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) { |
Evan Cheng | d6594ae | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 1989 | // Target doesn't support this yet! |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1990 | llvm_unreachable("Target does not support EmitMachineConstantPoolValue"); |
Evan Cheng | d6594ae | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 1991 | } |
| 1992 | |
Chris Lattner | dfa107e | 2010-04-04 18:16:38 +0000 | [diff] [blame] | 1993 | void AsmPrinter::printOffset(int64_t Offset, raw_ostream &OS) const { |
| 1994 | if (Offset > 0) |
| 1995 | OS << '+' << Offset; |
| 1996 | else if (Offset < 0) |
| 1997 | OS << Offset; |
| 1998 | } |
| 1999 | |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 2000 | //===----------------------------------------------------------------------===// |
| 2001 | // Symbol Lowering Routines. |
| 2002 | //===----------------------------------------------------------------------===// |
| 2003 | |
| 2004 | /// GetTempSymbol - Return the MCSymbol corresponding to the assembler |
| 2005 | /// temporary label with the specified stem and unique ID. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2006 | MCSymbol *AsmPrinter::GetTempSymbol(Twine Name, unsigned ID) const { |
| 2007 | const DataLayout *DL = TM.getDataLayout(); |
| 2008 | return OutContext.GetOrCreateSymbol(Twine(DL->getPrivateGlobalPrefix()) + |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 2009 | Name + Twine(ID)); |
| 2010 | } |
| 2011 | |
| 2012 | /// GetTempSymbol - Return an assembler temporary label with the specified |
| 2013 | /// stem. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2014 | MCSymbol *AsmPrinter::GetTempSymbol(Twine Name) const { |
| 2015 | const DataLayout *DL = TM.getDataLayout(); |
| 2016 | return OutContext.GetOrCreateSymbol(Twine(DL->getPrivateGlobalPrefix())+ |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 2017 | Name); |
| 2018 | } |
| 2019 | |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 2020 | |
Chris Lattner | 9517554 | 2010-02-08 23:10:08 +0000 | [diff] [blame] | 2021 | MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BlockAddress *BA) const { |
Chris Lattner | 3b9d621 | 2010-03-14 17:53:23 +0000 | [diff] [blame] | 2022 | return MMI->getAddrLabelSymbol(BA->getBasicBlock()); |
Dan Gohman | 8c2b525 | 2009-10-30 01:27:03 +0000 | [diff] [blame] | 2023 | } |
| 2024 | |
Chris Lattner | 3b9d621 | 2010-03-14 17:53:23 +0000 | [diff] [blame] | 2025 | MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BasicBlock *BB) const { |
| 2026 | return MMI->getAddrLabelSymbol(BB); |
Dan Gohman | 8c2b525 | 2009-10-30 01:27:03 +0000 | [diff] [blame] | 2027 | } |
| 2028 | |
Chris Lattner | 3924868 | 2010-01-23 05:19:23 +0000 | [diff] [blame] | 2029 | /// GetCPISymbol - Return the symbol for the specified constant pool entry. |
| 2030 | MCSymbol *AsmPrinter::GetCPISymbol(unsigned CPID) const { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2031 | const DataLayout *DL = TM.getDataLayout(); |
Chris Lattner | 9b97a73 | 2010-03-30 18:10:53 +0000 | [diff] [blame] | 2032 | return OutContext.GetOrCreateSymbol |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2033 | (Twine(DL->getPrivateGlobalPrefix()) + "CPI" + Twine(getFunctionNumber()) |
Chris Lattner | 98cdab5 | 2010-03-10 02:25:11 +0000 | [diff] [blame] | 2034 | + "_" + Twine(CPID)); |
Chris Lattner | 3924868 | 2010-01-23 05:19:23 +0000 | [diff] [blame] | 2035 | } |
| 2036 | |
| 2037 | /// GetJTISymbol - Return the symbol for the specified jump table entry. |
Bill Wendling | 07d3177 | 2010-06-29 22:34:52 +0000 | [diff] [blame] | 2038 | MCSymbol *AsmPrinter::GetJTISymbol(unsigned JTID, bool isLinkerPrivate) const { |
| 2039 | return MF->getJTISymbol(JTID, OutContext, isLinkerPrivate); |
Chris Lattner | 7cb384d | 2009-09-12 23:02:08 +0000 | [diff] [blame] | 2040 | } |
| 2041 | |
Chris Lattner | 798d125 | 2010-01-25 21:17:10 +0000 | [diff] [blame] | 2042 | /// GetJTSetSymbol - Return the symbol for the specified jump table .set |
| 2043 | /// FIXME: privatize to AsmPrinter. |
| 2044 | MCSymbol *AsmPrinter::GetJTSetSymbol(unsigned UID, unsigned MBBID) const { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2045 | const DataLayout *DL = TM.getDataLayout(); |
Chris Lattner | 9b97a73 | 2010-03-30 18:10:53 +0000 | [diff] [blame] | 2046 | return OutContext.GetOrCreateSymbol |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2047 | (Twine(DL->getPrivateGlobalPrefix()) + Twine(getFunctionNumber()) + "_" + |
Chris Lattner | 98cdab5 | 2010-03-10 02:25:11 +0000 | [diff] [blame] | 2048 | Twine(UID) + "_set_" + Twine(MBBID)); |
Chris Lattner | 798d125 | 2010-01-25 21:17:10 +0000 | [diff] [blame] | 2049 | } |
| 2050 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2051 | MCSymbol *AsmPrinter::getSymbolWithGlobalValueBase(const GlobalValue *GV, |
| 2052 | StringRef Suffix) const { |
| 2053 | return getObjFileLowering().getSymbolWithGlobalValueBase(GV, Suffix, *Mang, |
| 2054 | TM); |
Chris Lattner | d588b97 | 2010-01-15 23:25:11 +0000 | [diff] [blame] | 2055 | } |
| 2056 | |
Chris Lattner | 6b04ede | 2010-01-15 23:18:17 +0000 | [diff] [blame] | 2057 | /// GetExternalSymbolSymbol - Return the MCSymbol for the specified |
| 2058 | /// ExternalSymbol. |
| 2059 | MCSymbol *AsmPrinter::GetExternalSymbolSymbol(StringRef Sym) const { |
| 2060 | SmallString<60> NameStr; |
| 2061 | Mang->getNameWithPrefix(NameStr, Sym); |
| 2062 | return OutContext.GetOrCreateSymbol(NameStr.str()); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 2063 | } |
Chris Lattner | 6b04ede | 2010-01-15 23:18:17 +0000 | [diff] [blame] | 2064 | |
Chris Lattner | 7cb384d | 2009-09-12 23:02:08 +0000 | [diff] [blame] | 2065 | |
Chris Lattner | 523a508 | 2010-01-22 21:50:41 +0000 | [diff] [blame] | 2066 | |
| 2067 | /// PrintParentLoopComment - Print comments about parent loops of this one. |
| 2068 | static void PrintParentLoopComment(raw_ostream &OS, const MachineLoop *Loop, |
| 2069 | unsigned FunctionNumber) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2070 | if (!Loop) return; |
Chris Lattner | 523a508 | 2010-01-22 21:50:41 +0000 | [diff] [blame] | 2071 | PrintParentLoopComment(OS, Loop->getParentLoop(), FunctionNumber); |
| 2072 | OS.indent(Loop->getLoopDepth()*2) |
| 2073 | << "Parent Loop BB" << FunctionNumber << "_" |
| 2074 | << Loop->getHeader()->getNumber() |
| 2075 | << " Depth=" << Loop->getLoopDepth() << '\n'; |
| 2076 | } |
| 2077 | |
| 2078 | |
| 2079 | /// PrintChildLoopComment - Print comments about child loops within |
| 2080 | /// the loop for this basic block, with nesting. |
| 2081 | static void PrintChildLoopComment(raw_ostream &OS, const MachineLoop *Loop, |
| 2082 | unsigned FunctionNumber) { |
| 2083 | // Add child loop information |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2084 | for (const MachineLoop *CL : *Loop) { |
| 2085 | OS.indent(CL->getLoopDepth()*2) |
Chris Lattner | 523a508 | 2010-01-22 21:50:41 +0000 | [diff] [blame] | 2086 | << "Child Loop BB" << FunctionNumber << "_" |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2087 | << CL->getHeader()->getNumber() << " Depth " << CL->getLoopDepth() |
Chris Lattner | 523a508 | 2010-01-22 21:50:41 +0000 | [diff] [blame] | 2088 | << '\n'; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2089 | PrintChildLoopComment(OS, CL, FunctionNumber); |
Chris Lattner | 523a508 | 2010-01-22 21:50:41 +0000 | [diff] [blame] | 2090 | } |
| 2091 | } |
| 2092 | |
Chad Rosier | c53ade2 | 2012-09-07 18:16:38 +0000 | [diff] [blame] | 2093 | /// emitBasicBlockLoopComments - Pretty-print comments for basic blocks. |
| 2094 | static void emitBasicBlockLoopComments(const MachineBasicBlock &MBB, |
Chris Lattner | dfa107e | 2010-04-04 18:16:38 +0000 | [diff] [blame] | 2095 | const MachineLoopInfo *LI, |
| 2096 | const AsmPrinter &AP) { |
Chris Lattner | 523a508 | 2010-01-22 21:50:41 +0000 | [diff] [blame] | 2097 | // Add loop depth information |
| 2098 | const MachineLoop *Loop = LI->getLoopFor(&MBB); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2099 | if (!Loop) return; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 2100 | |
Chris Lattner | 523a508 | 2010-01-22 21:50:41 +0000 | [diff] [blame] | 2101 | MachineBasicBlock *Header = Loop->getHeader(); |
| 2102 | assert(Header && "No header for loop"); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 2103 | |
Chris Lattner | 523a508 | 2010-01-22 21:50:41 +0000 | [diff] [blame] | 2104 | // If this block is not a loop header, just print out what is the loop header |
| 2105 | // and return. |
| 2106 | if (Header != &MBB) { |
| 2107 | AP.OutStreamer.AddComment(" in Loop: Header=BB" + |
| 2108 | Twine(AP.getFunctionNumber())+"_" + |
| 2109 | Twine(Loop->getHeader()->getNumber())+ |
| 2110 | " Depth="+Twine(Loop->getLoopDepth())); |
| 2111 | return; |
| 2112 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 2113 | |
Chris Lattner | 523a508 | 2010-01-22 21:50:41 +0000 | [diff] [blame] | 2114 | // Otherwise, it is a loop header. Print out information about child and |
| 2115 | // parent loops. |
| 2116 | raw_ostream &OS = AP.OutStreamer.GetCommentOS(); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 2117 | |
| 2118 | PrintParentLoopComment(OS, Loop->getParentLoop(), AP.getFunctionNumber()); |
| 2119 | |
Chris Lattner | 523a508 | 2010-01-22 21:50:41 +0000 | [diff] [blame] | 2120 | OS << "=>"; |
| 2121 | OS.indent(Loop->getLoopDepth()*2-2); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 2122 | |
Chris Lattner | 523a508 | 2010-01-22 21:50:41 +0000 | [diff] [blame] | 2123 | OS << "This "; |
| 2124 | if (Loop->empty()) |
| 2125 | OS << "Inner "; |
| 2126 | OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n'; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 2127 | |
Chris Lattner | 523a508 | 2010-01-22 21:50:41 +0000 | [diff] [blame] | 2128 | PrintChildLoopComment(OS, Loop, AP.getFunctionNumber()); |
| 2129 | } |
| 2130 | |
| 2131 | |
Chris Lattner | 70a54c0 | 2009-09-13 18:25:37 +0000 | [diff] [blame] | 2132 | /// EmitBasicBlockStart - This method prints the label for the specified |
| 2133 | /// MachineBasicBlock, an alignment (if present) and a comment describing |
| 2134 | /// it if appropriate. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2135 | void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock &MBB) const { |
Dan Gohman | b1cac33 | 2009-10-30 01:34:35 +0000 | [diff] [blame] | 2136 | // Emit an alignment directive for this block, if needed. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2137 | if (unsigned Align = MBB.getAlignment()) |
Jakob Stoklund Olesen | 8c741b8 | 2011-12-06 01:26:19 +0000 | [diff] [blame] | 2138 | EmitAlignment(Align); |
Evan Cheng | fb8075d | 2008-02-28 00:43:03 +0000 | [diff] [blame] | 2139 | |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 2140 | // If the block has its address taken, emit any labels that were used to |
| 2141 | // reference the block. It is possible that there is more than one label |
| 2142 | // here, because multiple LLVM BB's may have been RAUW'd to this block after |
| 2143 | // the references were generated. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2144 | if (MBB.hasAddressTaken()) { |
| 2145 | const BasicBlock *BB = MBB.getBasicBlock(); |
Chris Lattner | 3f53c83 | 2010-04-04 18:52:31 +0000 | [diff] [blame] | 2146 | if (isVerbose()) |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 2147 | OutStreamer.AddComment("Block address taken"); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 2148 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2149 | std::vector<MCSymbol*> Symbols = MMI->getAddrLabelSymbolToEmit(BB); |
| 2150 | for (auto *Sym : Symbols) |
| 2151 | OutStreamer.EmitLabel(Sym); |
Dan Gohman | 8c2b525 | 2009-10-30 01:27:03 +0000 | [diff] [blame] | 2152 | } |
| 2153 | |
Jakob Stoklund Olesen | c511c28 | 2012-03-06 22:27:13 +0000 | [diff] [blame] | 2154 | // Print some verbose block comments. |
| 2155 | if (isVerbose()) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2156 | if (const BasicBlock *BB = MBB.getBasicBlock()) |
Jakob Stoklund Olesen | c511c28 | 2012-03-06 22:27:13 +0000 | [diff] [blame] | 2157 | if (BB->hasName()) |
| 2158 | OutStreamer.AddComment("%" + BB->getName()); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2159 | emitBasicBlockLoopComments(MBB, LI, *this); |
Jakob Stoklund Olesen | c511c28 | 2012-03-06 22:27:13 +0000 | [diff] [blame] | 2160 | } |
| 2161 | |
Dan Gohman | b1cac33 | 2009-10-30 01:34:35 +0000 | [diff] [blame] | 2162 | // Print the main label for the block. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2163 | if (MBB.pred_empty() || isBlockOnlyReachableByFallthrough(&MBB)) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2164 | if (isVerbose()) { |
Chris Lattner | 58bc4dd | 2010-04-03 22:12:35 +0000 | [diff] [blame] | 2165 | // NOTE: Want this comment at start of line, don't emit with AddComment. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2166 | OutStreamer.emitRawComment(" BB#" + Twine(MBB.getNumber()) + ":", false); |
Chris Lattner | 0fd90fd | 2010-01-22 19:52:01 +0000 | [diff] [blame] | 2167 | } |
Dan Gohman | e3cc3f3 | 2009-10-06 17:38:38 +0000 | [diff] [blame] | 2168 | } else { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2169 | OutStreamer.EmitLabel(MBB.getSymbol()); |
Dan Gohman | e3cc3f3 | 2009-10-06 17:38:38 +0000 | [diff] [blame] | 2170 | } |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 2171 | } |
Nate Begeman | 52a51e38 | 2006-08-12 21:29:52 +0000 | [diff] [blame] | 2172 | |
Stuart Hastings | 5129bde | 2011-02-23 02:27:05 +0000 | [diff] [blame] | 2173 | void AsmPrinter::EmitVisibility(MCSymbol *Sym, unsigned Visibility, |
| 2174 | bool IsDefinition) const { |
Chris Lattner | 152a29b | 2010-01-23 06:53:23 +0000 | [diff] [blame] | 2175 | MCSymbolAttr Attr = MCSA_Invalid; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 2176 | |
Chris Lattner | 152a29b | 2010-01-23 06:53:23 +0000 | [diff] [blame] | 2177 | switch (Visibility) { |
| 2178 | default: break; |
| 2179 | case GlobalValue::HiddenVisibility: |
Stuart Hastings | 5129bde | 2011-02-23 02:27:05 +0000 | [diff] [blame] | 2180 | if (IsDefinition) |
| 2181 | Attr = MAI->getHiddenVisibilityAttr(); |
| 2182 | else |
| 2183 | Attr = MAI->getHiddenDeclarationVisibilityAttr(); |
Chris Lattner | 152a29b | 2010-01-23 06:53:23 +0000 | [diff] [blame] | 2184 | break; |
| 2185 | case GlobalValue::ProtectedVisibility: |
| 2186 | Attr = MAI->getProtectedVisibilityAttr(); |
| 2187 | break; |
Chris Lattner | 53d4d78 | 2010-01-15 23:38:51 +0000 | [diff] [blame] | 2188 | } |
Chris Lattner | 152a29b | 2010-01-23 06:53:23 +0000 | [diff] [blame] | 2189 | |
| 2190 | if (Attr != MCSA_Invalid) |
| 2191 | OutStreamer.EmitSymbolAttribute(Sym, Attr); |
Chris Lattner | 53d4d78 | 2010-01-15 23:38:51 +0000 | [diff] [blame] | 2192 | } |
| 2193 | |
Chris Lattner | 0a3f399 | 2010-02-17 18:52:56 +0000 | [diff] [blame] | 2194 | /// isBlockOnlyReachableByFallthough - Return true if the basic block has |
| 2195 | /// exactly one predecessor and the control transfer mechanism between |
| 2196 | /// the predecessor and this block is a fall-through. |
Chris Lattner | e00b59f | 2010-04-04 17:57:56 +0000 | [diff] [blame] | 2197 | bool AsmPrinter:: |
| 2198 | isBlockOnlyReachableByFallthrough(const MachineBasicBlock *MBB) const { |
Chris Lattner | 0a3f399 | 2010-02-17 18:52:56 +0000 | [diff] [blame] | 2199 | // If this is a landing pad, it isn't a fall through. If it has no preds, |
| 2200 | // then nothing falls through to it. |
| 2201 | if (MBB->isLandingPad() || MBB->pred_empty()) |
| 2202 | return false; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 2203 | |
Chris Lattner | 0a3f399 | 2010-02-17 18:52:56 +0000 | [diff] [blame] | 2204 | // If there isn't exactly one predecessor, it can't be a fall through. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2205 | if (MBB->pred_size() > 1) |
Chris Lattner | 0a3f399 | 2010-02-17 18:52:56 +0000 | [diff] [blame] | 2206 | return false; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 2207 | |
Chris Lattner | 0a3f399 | 2010-02-17 18:52:56 +0000 | [diff] [blame] | 2208 | // The predecessor has to be immediately before this block. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2209 | MachineBasicBlock *Pred = *MBB->pred_begin(); |
Chris Lattner | 0a3f399 | 2010-02-17 18:52:56 +0000 | [diff] [blame] | 2210 | if (!Pred->isLayoutSuccessor(MBB)) |
| 2211 | return false; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 2212 | |
Chris Lattner | 0a3f399 | 2010-02-17 18:52:56 +0000 | [diff] [blame] | 2213 | // If the block is completely empty, then it definitely does fall through. |
| 2214 | if (Pred->empty()) |
| 2215 | return true; |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 2216 | |
Eli Friedman | 0fc3015 | 2011-06-14 19:30:33 +0000 | [diff] [blame] | 2217 | // Check the terminators in the previous blocks |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2218 | for (const auto &MI : Pred->terminators()) { |
Eli Friedman | 0fc3015 | 2011-06-14 19:30:33 +0000 | [diff] [blame] | 2219 | // If it is not a simple branch, we are in a table somewhere. |
Evan Cheng | 5a96b3d | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 2220 | if (!MI.isBranch() || MI.isIndirectBranch()) |
Eli Friedman | 0fc3015 | 2011-06-14 19:30:33 +0000 | [diff] [blame] | 2221 | return false; |
| 2222 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2223 | // If we are the operands of one of the branches, this is not a fall |
| 2224 | // through. Note that targets with delay slots will usually bundle |
| 2225 | // terminators with the delay slot instruction. |
| 2226 | for (ConstMIBundleOperands OP(&MI); OP.isValid(); ++OP) { |
| 2227 | if (OP->isJTI()) |
Rafael Espindola | aeb6da4 | 2011-06-15 21:00:28 +0000 | [diff] [blame] | 2228 | return false; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2229 | if (OP->isMBB() && OP->getMBB() == MBB) |
Eli Friedman | 0fc3015 | 2011-06-14 19:30:33 +0000 | [diff] [blame] | 2230 | return false; |
| 2231 | } |
| 2232 | } |
| 2233 | |
| 2234 | return true; |
Chris Lattner | 0a3f399 | 2010-02-17 18:52:56 +0000 | [diff] [blame] | 2235 | } |
| 2236 | |
| 2237 | |
| 2238 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2239 | GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy &S) { |
| 2240 | if (!S.usesMetadata()) |
| 2241 | return nullptr; |
Chris Lattner | e00b59f | 2010-04-04 17:57:56 +0000 | [diff] [blame] | 2242 | |
| 2243 | gcp_map_type &GCMap = getGCMap(GCMetadataPrinters); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2244 | gcp_map_type::iterator GCPI = GCMap.find(&S); |
Chris Lattner | e00b59f | 2010-04-04 17:57:56 +0000 | [diff] [blame] | 2245 | if (GCPI != GCMap.end()) |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2246 | return GCPI->second.get(); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 2247 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2248 | const char *Name = S.getName().c_str(); |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 2249 | |
Gordon Henriksen | c317a60 | 2008-08-17 12:08:44 +0000 | [diff] [blame] | 2250 | for (GCMetadataPrinterRegistry::iterator |
| 2251 | I = GCMetadataPrinterRegistry::begin(), |
| 2252 | E = GCMetadataPrinterRegistry::end(); I != E; ++I) |
| 2253 | if (strcmp(Name, I->getName()) == 0) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2254 | std::unique_ptr<GCMetadataPrinter> GMP = I->instantiate(); |
| 2255 | GMP->S = &S; |
| 2256 | auto IterBool = GCMap.insert(std::make_pair(&S, std::move(GMP))); |
| 2257 | return IterBool.first->second.get(); |
Gordon Henriksen | c317a60 | 2008-08-17 12:08:44 +0000 | [diff] [blame] | 2258 | } |
Jim Grosbach | 83d8083 | 2011-03-29 23:20:22 +0000 | [diff] [blame] | 2259 | |
Chris Lattner | 75361b6 | 2010-04-07 22:58:41 +0000 | [diff] [blame] | 2260 | report_fatal_error("no GCMetadataPrinter registered for GC: " + Twine(Name)); |
Gordon Henriksen | c317a60 | 2008-08-17 12:08:44 +0000 | [diff] [blame] | 2261 | } |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2262 | |
| 2263 | /// Pin vtable to this file. |
| 2264 | AsmPrinterHandler::~AsmPrinterHandler() {} |