Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 1 | //===-- AsmPrinter.cpp - Common AsmPrinter code ---------------------------===// |
| 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" |
Evan Cheng | 246ae0d | 2006-03-01 22:18:09 +0000 | [diff] [blame] | 15 | #include "llvm/Assembly/Writer.h" |
Nate Begeman | 8cfa57b | 2005-12-06 06:18:55 +0000 | [diff] [blame] | 16 | #include "llvm/DerivedTypes.h" |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 17 | #include "llvm/Constants.h" |
Chris Lattner | 450de39 | 2005-11-10 18:36:17 +0000 | [diff] [blame] | 18 | #include "llvm/Module.h" |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/GCMetadataPrinter.h" |
Chris Lattner | 3b4fd32 | 2005-11-21 08:25:09 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/MachineConstantPool.h" |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 23 | #include "llvm/Support/Mangler.h" |
Owen Anderson | cb37188 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 24 | #include "llvm/Support/raw_ostream.h" |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 25 | #include "llvm/Target/TargetAsmInfo.h" |
Owen Anderson | 07000c6 | 2006-05-12 06:33:49 +0000 | [diff] [blame] | 26 | #include "llvm/Target/TargetData.h" |
Chris Lattner | 0336fdb | 2006-10-06 22:50:56 +0000 | [diff] [blame] | 27 | #include "llvm/Target/TargetLowering.h" |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 28 | #include "llvm/Target/TargetMachine.h" |
Evan Cheng | 6547e40 | 2008-07-01 23:18:29 +0000 | [diff] [blame] | 29 | #include "llvm/Target/TargetOptions.h" |
Evan Cheng | da47e6e | 2008-03-15 00:03:38 +0000 | [diff] [blame] | 30 | #include "llvm/Target/TargetRegisterInfo.h" |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 31 | #include "llvm/ADT/SmallPtrSet.h" |
Chris Lattner | fad86b0 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 32 | #include "llvm/ADT/SmallString.h" |
Owen Anderson | cb37188 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/StringExtras.h" |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 34 | #include <cerrno> |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 35 | using namespace llvm; |
| 36 | |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 37 | char AsmPrinter::ID = 0; |
Owen Anderson | cb37188 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 38 | AsmPrinter::AsmPrinter(raw_ostream &o, TargetMachine &tm, |
Jim Laskey | a0f3d17 | 2006-09-07 22:06:40 +0000 | [diff] [blame] | 39 | const TargetAsmInfo *T) |
Dan Gohman | ae73dc1 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 40 | : MachineFunctionPass(&ID), FunctionNumber(0), O(o), |
Evan Cheng | da47e6e | 2008-03-15 00:03:38 +0000 | [diff] [blame] | 41 | TM(tm), TAI(T), TRI(tm.getRegisterInfo()), |
Evan Cheng | fb8075d | 2008-02-28 00:43:03 +0000 | [diff] [blame] | 42 | IsInTextSection(false) |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 43 | {} |
Chris Lattner | ed13893 | 2005-12-13 06:32:10 +0000 | [diff] [blame] | 44 | |
Gordon Henriksen | c317a60 | 2008-08-17 12:08:44 +0000 | [diff] [blame] | 45 | AsmPrinter::~AsmPrinter() { |
| 46 | for (gcp_iterator I = GCMetadataPrinters.begin(), |
| 47 | E = GCMetadataPrinters.end(); I != E; ++I) |
| 48 | delete I->second; |
| 49 | } |
Chris Lattner | ed13893 | 2005-12-13 06:32:10 +0000 | [diff] [blame] | 50 | |
Chris Lattner | 4632d7a | 2006-05-09 04:59:56 +0000 | [diff] [blame] | 51 | /// SwitchToTextSection - Switch to the specified text section of the executable |
| 52 | /// if we are not already in it! |
Chris Lattner | ac28fbd | 2005-11-21 07:06:27 +0000 | [diff] [blame] | 53 | /// |
Chris Lattner | 4632d7a | 2006-05-09 04:59:56 +0000 | [diff] [blame] | 54 | void AsmPrinter::SwitchToTextSection(const char *NewSection, |
| 55 | const GlobalValue *GV) { |
Chris Lattner | ac28fbd | 2005-11-21 07:06:27 +0000 | [diff] [blame] | 56 | std::string NS; |
Chris Lattner | a7090ae | 2006-05-09 05:24:50 +0000 | [diff] [blame] | 57 | if (GV && GV->hasSection()) |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 58 | NS = TAI->getSwitchToSectionDirective() + GV->getSection(); |
Chris Lattner | a7090ae | 2006-05-09 05:24:50 +0000 | [diff] [blame] | 59 | else |
| 60 | NS = NewSection; |
| 61 | |
| 62 | // If we're already in this section, we're done. |
| 63 | if (CurrentSection == NS) return; |
Jeff Cohen | 51b776d | 2006-05-02 03:58:45 +0000 | [diff] [blame] | 64 | |
Chris Lattner | 7faec9b | 2006-05-09 05:33:48 +0000 | [diff] [blame] | 65 | // Close the current section, if applicable. |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 66 | if (TAI->getSectionEndDirectiveSuffix() && !CurrentSection.empty()) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 67 | O << CurrentSection << TAI->getSectionEndDirectiveSuffix() << '\n'; |
Jeff Cohen | 51b776d | 2006-05-02 03:58:45 +0000 | [diff] [blame] | 68 | |
Chris Lattner | 7faec9b | 2006-05-09 05:33:48 +0000 | [diff] [blame] | 69 | CurrentSection = NS; |
| 70 | |
| 71 | if (!CurrentSection.empty()) |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 72 | O << CurrentSection << TAI->getTextSectionStartSuffix() << '\n'; |
Evan Cheng | fb8075d | 2008-02-28 00:43:03 +0000 | [diff] [blame] | 73 | |
| 74 | IsInTextSection = true; |
Chris Lattner | ac28fbd | 2005-11-21 07:06:27 +0000 | [diff] [blame] | 75 | } |
| 76 | |
Nate Begeman | 2f1ae88 | 2006-07-27 01:13:04 +0000 | [diff] [blame] | 77 | /// SwitchToDataSection - Switch to the specified data section of the executable |
Chris Lattner | 4632d7a | 2006-05-09 04:59:56 +0000 | [diff] [blame] | 78 | /// if we are not already in it! |
| 79 | /// |
| 80 | void AsmPrinter::SwitchToDataSection(const char *NewSection, |
| 81 | const GlobalValue *GV) { |
| 82 | std::string NS; |
Chris Lattner | b81cb61 | 2006-05-09 05:23:12 +0000 | [diff] [blame] | 83 | if (GV && GV->hasSection()) |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 84 | NS = TAI->getSwitchToSectionDirective() + GV->getSection(); |
Chris Lattner | b81cb61 | 2006-05-09 05:23:12 +0000 | [diff] [blame] | 85 | else |
| 86 | NS = NewSection; |
Chris Lattner | 4632d7a | 2006-05-09 04:59:56 +0000 | [diff] [blame] | 87 | |
Chris Lattner | b81cb61 | 2006-05-09 05:23:12 +0000 | [diff] [blame] | 88 | // If we're already in this section, we're done. |
| 89 | if (CurrentSection == NS) return; |
| 90 | |
Chris Lattner | 7faec9b | 2006-05-09 05:33:48 +0000 | [diff] [blame] | 91 | // Close the current section, if applicable. |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 92 | if (TAI->getSectionEndDirectiveSuffix() && !CurrentSection.empty()) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 93 | O << CurrentSection << TAI->getSectionEndDirectiveSuffix() << '\n'; |
Chris Lattner | 7faec9b | 2006-05-09 05:33:48 +0000 | [diff] [blame] | 94 | |
| 95 | CurrentSection = NS; |
Chris Lattner | 4632d7a | 2006-05-09 04:59:56 +0000 | [diff] [blame] | 96 | |
Chris Lattner | 7faec9b | 2006-05-09 05:33:48 +0000 | [diff] [blame] | 97 | if (!CurrentSection.empty()) |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 98 | O << CurrentSection << TAI->getDataSectionStartSuffix() << '\n'; |
Evan Cheng | fb8075d | 2008-02-28 00:43:03 +0000 | [diff] [blame] | 99 | |
| 100 | IsInTextSection = false; |
Chris Lattner | 4632d7a | 2006-05-09 04:59:56 +0000 | [diff] [blame] | 101 | } |
| 102 | |
Anton Korobeynikov | b5a32e2 | 2008-09-24 22:12:10 +0000 | [diff] [blame] | 103 | /// SwitchToSection - Switch to the specified section of the executable if we |
| 104 | /// are not already in it! |
| 105 | void AsmPrinter::SwitchToSection(const Section* NS) { |
| 106 | const std::string& NewSection = NS->getName(); |
| 107 | |
| 108 | // If we're already in this section, we're done. |
| 109 | if (CurrentSection == NewSection) return; |
| 110 | |
| 111 | // Close the current section, if applicable. |
| 112 | if (TAI->getSectionEndDirectiveSuffix() && !CurrentSection.empty()) |
| 113 | O << CurrentSection << TAI->getSectionEndDirectiveSuffix() << '\n'; |
| 114 | |
| 115 | // FIXME: Make CurrentSection a Section* in the future |
| 116 | CurrentSection = NewSection; |
Anton Korobeynikov | d7ca416 | 2008-09-24 22:15:21 +0000 | [diff] [blame] | 117 | CurrentSection_ = NS; |
Anton Korobeynikov | b5a32e2 | 2008-09-24 22:12:10 +0000 | [diff] [blame] | 118 | |
Anton Korobeynikov | c25e1ea | 2008-09-24 22:14:23 +0000 | [diff] [blame] | 119 | if (!CurrentSection.empty()) { |
| 120 | // If section is named we need to switch into it via special '.section' |
| 121 | // directive and also append funky flags. Otherwise - section name is just |
| 122 | // some magic assembler directive. |
| 123 | if (NS->isNamed()) |
| 124 | O << TAI->getSwitchToSectionDirective() |
| 125 | << CurrentSection |
| 126 | << TAI->getSectionFlags(NS->getFlags()); |
| 127 | else |
| 128 | O << CurrentSection; |
| 129 | O << TAI->getDataSectionStartSuffix() << '\n'; |
| 130 | } |
Anton Korobeynikov | b5a32e2 | 2008-09-24 22:12:10 +0000 | [diff] [blame] | 131 | |
| 132 | IsInTextSection = (NS->getFlags() & SectionFlags::Code); |
| 133 | } |
Chris Lattner | 4632d7a | 2006-05-09 04:59:56 +0000 | [diff] [blame] | 134 | |
Gordon Henriksen | ce22477 | 2008-01-07 01:30:38 +0000 | [diff] [blame] | 135 | void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const { |
| 136 | MachineFunctionPass::getAnalysisUsage(AU); |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 137 | AU.addRequired<GCModuleInfo>(); |
Gordon Henriksen | ce22477 | 2008-01-07 01:30:38 +0000 | [diff] [blame] | 138 | } |
| 139 | |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 140 | bool AsmPrinter::doInitialization(Module &M) { |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 141 | Mang = new Mangler(M, TAI->getGlobalPrefix()); |
Chris Lattner | 2c1b159 | 2006-01-23 23:47:53 +0000 | [diff] [blame] | 142 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 143 | GCModuleInfo *MI = getAnalysisToUpdate<GCModuleInfo>(); |
| 144 | assert(MI && "AsmPrinter didn't require GCModuleInfo?"); |
| 145 | for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I) |
| 146 | if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I)) |
| 147 | MP->beginAssembly(O, *this, *TAI); |
Gordon Henriksen | ce22477 | 2008-01-07 01:30:38 +0000 | [diff] [blame] | 148 | |
Chris Lattner | 3e2fa7a | 2006-01-24 04:16:34 +0000 | [diff] [blame] | 149 | if (!M.getModuleInlineAsm().empty()) |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 150 | O << TAI->getCommentString() << " Start of file scope inline assembly\n" |
Chris Lattner | 3e2fa7a | 2006-01-24 04:16:34 +0000 | [diff] [blame] | 151 | << M.getModuleInlineAsm() |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 152 | << '\n' << TAI->getCommentString() |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 153 | << " End of file scope inline assembly\n"; |
Chris Lattner | 2c1b159 | 2006-01-23 23:47:53 +0000 | [diff] [blame] | 154 | |
Anton Korobeynikov | ab4022f | 2006-10-31 08:31:24 +0000 | [diff] [blame] | 155 | SwitchToDataSection(""); // Reset back to no section. |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 156 | |
Evan Cheng | 4e3f5a4 | 2008-02-04 23:06:48 +0000 | [diff] [blame] | 157 | MMI = getAnalysisToUpdate<MachineModuleInfo>(); |
| 158 | if (MMI) MMI->AnalyzeModule(M); |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 159 | |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 160 | return false; |
| 161 | } |
| 162 | |
| 163 | bool AsmPrinter::doFinalization(Module &M) { |
Rafael Espindola | 15404d0 | 2006-12-18 03:37:18 +0000 | [diff] [blame] | 164 | if (TAI->getWeakRefDirective()) { |
Anton Korobeynikov | 8b0a8c8 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 165 | if (!ExtWeakSymbols.empty()) |
Rafael Espindola | 15404d0 | 2006-12-18 03:37:18 +0000 | [diff] [blame] | 166 | SwitchToDataSection(""); |
| 167 | |
| 168 | for (std::set<const GlobalValue*>::iterator i = ExtWeakSymbols.begin(), |
| 169 | e = ExtWeakSymbols.end(); i != e; ++i) { |
| 170 | const GlobalValue *GV = *i; |
| 171 | std::string Name = Mang->getValueName(GV); |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 172 | O << TAI->getWeakRefDirective() << Name << '\n'; |
Rafael Espindola | 15404d0 | 2006-12-18 03:37:18 +0000 | [diff] [blame] | 173 | } |
| 174 | } |
| 175 | |
Anton Korobeynikov | 8b0a8c8 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 176 | if (TAI->getSetDirective()) { |
Anton Korobeynikov | a80e118 | 2007-04-28 13:45:00 +0000 | [diff] [blame] | 177 | if (!M.alias_empty()) |
Anton Korobeynikov | d7ca416 | 2008-09-24 22:15:21 +0000 | [diff] [blame] | 178 | SwitchToSection(TAI->getTextSection()); |
Anton Korobeynikov | 8b0a8c8 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 179 | |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 180 | O << '\n'; |
Anton Korobeynikov | 8b0a8c8 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 181 | for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end(); |
| 182 | I!=E; ++I) { |
Anton Korobeynikov | a80e118 | 2007-04-28 13:45:00 +0000 | [diff] [blame] | 183 | std::string Name = Mang->getValueName(I); |
| 184 | std::string Target; |
Anton Korobeynikov | 325be7c | 2007-09-06 17:21:48 +0000 | [diff] [blame] | 185 | |
| 186 | const GlobalValue *GV = cast<GlobalValue>(I->getAliasedGlobal()); |
| 187 | Target = Mang->getValueName(GV); |
Anton Korobeynikov | 541af7f | 2008-09-24 22:21:04 +0000 | [diff] [blame] | 188 | |
Anton Korobeynikov | 325be7c | 2007-09-06 17:21:48 +0000 | [diff] [blame] | 189 | if (I->hasExternalLinkage() || !TAI->getWeakRefDirective()) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 190 | O << "\t.globl\t" << Name << '\n'; |
Anton Korobeynikov | 8b0a8c8 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 191 | else if (I->hasWeakLinkage()) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 192 | O << TAI->getWeakRefDirective() << Name << '\n'; |
Anton Korobeynikov | 8b0a8c8 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 193 | else if (!I->hasInternalLinkage()) |
| 194 | assert(0 && "Invalid alias linkage"); |
Anton Korobeynikov | 22c9e65 | 2008-03-11 21:41:14 +0000 | [diff] [blame] | 195 | |
Anton Korobeynikov | 541af7f | 2008-09-24 22:21:04 +0000 | [diff] [blame] | 196 | printVisibility(Name, I->getVisibility()); |
Anton Korobeynikov | 22c9e65 | 2008-03-11 21:41:14 +0000 | [diff] [blame] | 197 | |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 198 | O << TAI->getSetDirective() << ' ' << Name << ", " << Target << '\n'; |
Anton Korobeynikov | 325be7c | 2007-09-06 17:21:48 +0000 | [diff] [blame] | 199 | |
| 200 | // If the aliasee has external weak linkage it can be referenced only by |
| 201 | // alias itself. In this case it can be not in ExtWeakSymbols list. Emit |
| 202 | // weak reference in such case. |
Anton Korobeynikov | 4c71dfe | 2008-02-20 11:10:28 +0000 | [diff] [blame] | 203 | if (GV->hasExternalWeakLinkage()) { |
Anton Korobeynikov | 325be7c | 2007-09-06 17:21:48 +0000 | [diff] [blame] | 204 | if (TAI->getWeakRefDirective()) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 205 | O << TAI->getWeakRefDirective() << Target << '\n'; |
Anton Korobeynikov | 325be7c | 2007-09-06 17:21:48 +0000 | [diff] [blame] | 206 | else |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 207 | O << "\t.globl\t" << Target << '\n'; |
Anton Korobeynikov | 4c71dfe | 2008-02-20 11:10:28 +0000 | [diff] [blame] | 208 | } |
Anton Korobeynikov | 8b0a8c8 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 209 | } |
| 210 | } |
| 211 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 212 | GCModuleInfo *MI = getAnalysisToUpdate<GCModuleInfo>(); |
| 213 | assert(MI && "AsmPrinter didn't require GCModuleInfo?"); |
| 214 | for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; ) |
| 215 | if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*--I)) |
| 216 | MP->finishAssembly(O, *this, *TAI); |
Gordon Henriksen | ce22477 | 2008-01-07 01:30:38 +0000 | [diff] [blame] | 217 | |
Dan Gohman | a779a98 | 2008-05-05 00:28:39 +0000 | [diff] [blame] | 218 | // If we don't have any trampolines, then we don't require stack memory |
| 219 | // to be executable. Some targets have a directive to declare this. |
| 220 | Function* InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline"); |
| 221 | if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty()) |
| 222 | if (TAI->getNonexecutableStackDirective()) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 223 | O << TAI->getNonexecutableStackDirective() << '\n'; |
Dan Gohman | a779a98 | 2008-05-05 00:28:39 +0000 | [diff] [blame] | 224 | |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 225 | delete Mang; Mang = 0; |
| 226 | return false; |
| 227 | } |
| 228 | |
Bill Wendling | ce61328 | 2007-09-18 09:10:16 +0000 | [diff] [blame] | 229 | std::string AsmPrinter::getCurrentFunctionEHName(const MachineFunction *MF) { |
Bill Wendling | 6e19896 | 2007-09-18 01:47:22 +0000 | [diff] [blame] | 230 | assert(MF && "No machine function?"); |
Dale Johannesen | dedf502 | 2008-04-02 20:10:52 +0000 | [diff] [blame] | 231 | std::string Name = MF->getFunction()->getName(); |
| 232 | if (Name.empty()) |
| 233 | Name = Mang->getValueName(MF->getFunction()); |
| 234 | return Mang->makeNameProper(Name + ".eh", TAI->getGlobalPrefix()); |
Bill Wendling | 6e19896 | 2007-09-18 01:47:22 +0000 | [diff] [blame] | 235 | } |
| 236 | |
Chris Lattner | 25045bd | 2005-11-21 07:51:36 +0000 | [diff] [blame] | 237 | void AsmPrinter::SetupMachineFunction(MachineFunction &MF) { |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 238 | // What's my mangled name? |
Chris Lattner | 450de39 | 2005-11-10 18:36:17 +0000 | [diff] [blame] | 239 | CurrentFnName = Mang->getValueName(MF.getFunction()); |
Evan Cheng | 347d39f | 2007-10-14 05:57:21 +0000 | [diff] [blame] | 240 | IncrementFunctionNumber(); |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 241 | } |
| 242 | |
Chris Lattner | 3b4fd32 | 2005-11-21 08:25:09 +0000 | [diff] [blame] | 243 | /// EmitConstantPool - Print to the current output stream assembly |
| 244 | /// representations of the constants in the constant pool MCP. This is |
| 245 | /// used to print out constants which have been "spilled to memory" by |
| 246 | /// the code generator. |
| 247 | /// |
| 248 | void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) { |
Chris Lattner | fa77d43 | 2006-02-09 04:22:52 +0000 | [diff] [blame] | 249 | const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants(); |
Chris Lattner | 3b4fd32 | 2005-11-21 08:25:09 +0000 | [diff] [blame] | 250 | if (CP.empty()) return; |
Evan Cheng | 2d2cec1 | 2006-06-29 00:26:09 +0000 | [diff] [blame] | 251 | |
Anton Korobeynikov | 088ae83 | 2008-09-24 22:17:59 +0000 | [diff] [blame] | 252 | // Calculate sections for constant pool entries. We collect entries to go into |
| 253 | // the same section together to reduce amount of section switch statements. |
| 254 | typedef |
| 255 | std::multimap<const Section*, |
| 256 | std::pair<MachineConstantPoolEntry, unsigned> > CPMap; |
| 257 | CPMap CPs; |
Anton Korobeynikov | 4cad98a | 2008-09-24 22:20:46 +0000 | [diff] [blame] | 258 | SmallPtrSet<const Section*, 5> Sections; |
Anton Korobeynikov | 088ae83 | 2008-09-24 22:17:59 +0000 | [diff] [blame] | 259 | |
Chris Lattner | 3b4fd32 | 2005-11-21 08:25:09 +0000 | [diff] [blame] | 260 | for (unsigned i = 0, e = CP.size(); i != e; ++i) { |
Evan Cheng | 2d2cec1 | 2006-06-29 00:26:09 +0000 | [diff] [blame] | 261 | MachineConstantPoolEntry CPE = CP[i]; |
Anton Korobeynikov | 088ae83 | 2008-09-24 22:17:59 +0000 | [diff] [blame] | 262 | const Section* S = TAI->SelectSectionForMachineConst(CPE.getType()); |
| 263 | CPs.insert(std::make_pair(S, std::make_pair(CPE, i))); |
| 264 | Sections.insert(S); |
Evan Cheng | 2d2cec1 | 2006-06-29 00:26:09 +0000 | [diff] [blame] | 265 | } |
| 266 | |
Anton Korobeynikov | 088ae83 | 2008-09-24 22:17:59 +0000 | [diff] [blame] | 267 | // Now print stuff into the calculated sections. |
Anton Korobeynikov | 4cad98a | 2008-09-24 22:20:46 +0000 | [diff] [blame] | 268 | for (SmallPtrSet<const Section*, 5>::iterator IS = Sections.begin(), |
Anton Korobeynikov | 088ae83 | 2008-09-24 22:17:59 +0000 | [diff] [blame] | 269 | ES = Sections.end(); IS != ES; ++IS) { |
| 270 | SwitchToSection(*IS); |
| 271 | EmitAlignment(MCP->getConstantPoolAlignment()); |
Evan Cheng | 2d2cec1 | 2006-06-29 00:26:09 +0000 | [diff] [blame] | 272 | |
Anton Korobeynikov | 088ae83 | 2008-09-24 22:17:59 +0000 | [diff] [blame] | 273 | std::pair<CPMap::iterator, CPMap::iterator> II = CPs.equal_range(*IS); |
| 274 | for (CPMap::iterator I = II.first, E = II.second; I != E; ++I) { |
| 275 | CPMap::iterator J = next(I); |
| 276 | MachineConstantPoolEntry Entry = I->second.first; |
| 277 | unsigned index = I->second.second; |
Evan Cheng | 2d2cec1 | 2006-06-29 00:26:09 +0000 | [diff] [blame] | 278 | |
Anton Korobeynikov | 088ae83 | 2008-09-24 22:17:59 +0000 | [diff] [blame] | 279 | O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << '_' |
| 280 | << index << ":\t\t\t\t\t"; |
Owen Anderson | cb37188 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 281 | // O << TAI->getCommentString() << ' ' << |
| 282 | // WriteTypeSymbolic(O, CP[i].first.getType(), 0); |
Anton Korobeynikov | 088ae83 | 2008-09-24 22:17:59 +0000 | [diff] [blame] | 283 | O << '\n'; |
| 284 | if (Entry.isMachineConstantPoolEntry()) |
| 285 | EmitMachineConstantPoolValue(Entry.Val.MachineCPVal); |
| 286 | else |
| 287 | EmitGlobalConstant(Entry.Val.ConstVal); |
| 288 | |
Chris Lattner | 3029f92 | 2006-02-09 04:46:04 +0000 | [diff] [blame] | 289 | // Emit inter-object padding for alignment. |
Anton Korobeynikov | 088ae83 | 2008-09-24 22:17:59 +0000 | [diff] [blame] | 290 | if (J != E) { |
| 291 | const Type *Ty = Entry.getType(); |
| 292 | unsigned EntSize = TM.getTargetData()->getABITypeSize(Ty); |
| 293 | unsigned ValEnd = Entry.getOffset() + EntSize; |
| 294 | EmitZeros(J->second.first.getOffset()-ValEnd); |
| 295 | } |
Chris Lattner | 3029f92 | 2006-02-09 04:46:04 +0000 | [diff] [blame] | 296 | } |
Chris Lattner | 3b4fd32 | 2005-11-21 08:25:09 +0000 | [diff] [blame] | 297 | } |
| 298 | } |
| 299 | |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 300 | /// EmitJumpTableInfo - Print assembly representations of the jump tables used |
| 301 | /// by the current function to the current output stream. |
| 302 | /// |
Chris Lattner | 1da31ee | 2006-10-05 03:01:21 +0000 | [diff] [blame] | 303 | void AsmPrinter::EmitJumpTableInfo(MachineJumpTableInfo *MJTI, |
| 304 | MachineFunction &MF) { |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 305 | const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables(); |
| 306 | if (JT.empty()) return; |
Anton Korobeynikov | 9de1934 | 2007-11-14 09:18:41 +0000 | [diff] [blame] | 307 | |
Jim Laskey | acd80ac | 2006-12-14 19:17:33 +0000 | [diff] [blame] | 308 | bool IsPic = TM.getRelocationModel() == Reloc::PIC_; |
Nate Begeman | 4d9bbdc | 2006-07-27 16:46:58 +0000 | [diff] [blame] | 309 | |
Nate Begeman | 2f1ae88 | 2006-07-27 01:13:04 +0000 | [diff] [blame] | 310 | // Pick the directive to use to print the jump table entries, and switch to |
| 311 | // the appropriate section. |
Jim Laskey | acd80ac | 2006-12-14 19:17:33 +0000 | [diff] [blame] | 312 | TargetLowering *LoweringInfo = TM.getTargetLowering(); |
Anton Korobeynikov | 24287dd | 2006-12-19 21:04:20 +0000 | [diff] [blame] | 313 | |
Anton Korobeynikov | e87f52d | 2008-07-09 13:27:16 +0000 | [diff] [blame] | 314 | const char* JumpTableDataSection = TAI->getJumpTableDataSection(); |
| 315 | const Function *F = MF.getFunction(); |
| 316 | unsigned SectionFlags = TAI->SectionFlagsForGlobal(F); |
Anton Korobeynikov | 24287dd | 2006-12-19 21:04:20 +0000 | [diff] [blame] | 317 | if ((IsPic && !(LoweringInfo && LoweringInfo->usesGlobalOffsetTable())) || |
Anton Korobeynikov | e87f52d | 2008-07-09 13:27:16 +0000 | [diff] [blame] | 318 | !JumpTableDataSection || |
| 319 | SectionFlags & SectionFlags::Linkonce) { |
Jim Laskey | acd80ac | 2006-12-14 19:17:33 +0000 | [diff] [blame] | 320 | // In PIC mode, we need to emit the jump table to the same section as the |
| 321 | // function body itself, otherwise the label differences won't make sense. |
Anton Korobeynikov | e87f52d | 2008-07-09 13:27:16 +0000 | [diff] [blame] | 322 | // We should also do if the section name is NULL or function is declared in |
| 323 | // discardable section. |
Anton Korobeynikov | c25e1ea | 2008-09-24 22:14:23 +0000 | [diff] [blame] | 324 | SwitchToSection(TAI->SectionForGlobal(F)); |
Nate Begeman | 2f1ae88 | 2006-07-27 01:13:04 +0000 | [diff] [blame] | 325 | } else { |
Anton Korobeynikov | 24287dd | 2006-12-19 21:04:20 +0000 | [diff] [blame] | 326 | SwitchToDataSection(JumpTableDataSection); |
Nate Begeman | 2f1ae88 | 2006-07-27 01:13:04 +0000 | [diff] [blame] | 327 | } |
Jim Laskey | acd80ac | 2006-12-14 19:17:33 +0000 | [diff] [blame] | 328 | |
| 329 | EmitAlignment(Log2_32(MJTI->getAlignment())); |
Chris Lattner | 0c4e678 | 2006-07-15 01:34:12 +0000 | [diff] [blame] | 330 | |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 331 | for (unsigned i = 0, e = JT.size(); i != e; ++i) { |
Nate Begeman | 52a51e38 | 2006-08-12 21:29:52 +0000 | [diff] [blame] | 332 | const std::vector<MachineBasicBlock*> &JTBBs = JT[i].MBBs; |
Chris Lattner | 0737188 | 2006-10-28 18:10:06 +0000 | [diff] [blame] | 333 | |
| 334 | // If this jump table was deleted, ignore it. |
| 335 | if (JTBBs.empty()) continue; |
Nate Begeman | 52a51e38 | 2006-08-12 21:29:52 +0000 | [diff] [blame] | 336 | |
| 337 | // For PIC codegen, if possible we want to use the SetDirective to reduce |
| 338 | // the number of relocations the assembler will generate for the jump table. |
| 339 | // Set directives are all printed before the jump table itself. |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 340 | SmallPtrSet<MachineBasicBlock*, 16> EmittedSets; |
Jim Laskey | acd80ac | 2006-12-14 19:17:33 +0000 | [diff] [blame] | 341 | if (TAI->getSetDirective() && IsPic) |
Nate Begeman | 52a51e38 | 2006-08-12 21:29:52 +0000 | [diff] [blame] | 342 | for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 343 | if (EmittedSets.insert(JTBBs[ii])) |
| 344 | printPICJumpTableSetLabel(i, JTBBs[ii]); |
Nate Begeman | 52a51e38 | 2006-08-12 21:29:52 +0000 | [diff] [blame] | 345 | |
Chris Lattner | 393a8ee | 2007-01-18 01:12:56 +0000 | [diff] [blame] | 346 | // On some targets (e.g. darwin) we want to emit two consequtive labels |
| 347 | // before each jump table. The first label is never referenced, but tells |
| 348 | // the assembler and linker the extents of the jump table object. The |
| 349 | // second label is actually referenced by the code. |
| 350 | if (const char *JTLabelPrefix = TAI->getJumpTableSpecialLabelPrefix()) |
Evan Cheng | 347d39f | 2007-10-14 05:57:21 +0000 | [diff] [blame] | 351 | O << JTLabelPrefix << "JTI" << getFunctionNumber() << '_' << i << ":\n"; |
Chris Lattner | 393a8ee | 2007-01-18 01:12:56 +0000 | [diff] [blame] | 352 | |
Evan Cheng | 347d39f | 2007-10-14 05:57:21 +0000 | [diff] [blame] | 353 | O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() |
| 354 | << '_' << i << ":\n"; |
Nate Begeman | 52a51e38 | 2006-08-12 21:29:52 +0000 | [diff] [blame] | 355 | |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 356 | for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) { |
Anton Korobeynikov | 9de1934 | 2007-11-14 09:18:41 +0000 | [diff] [blame] | 357 | printPICJumpTableEntry(MJTI, JTBBs[ii], i); |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 358 | O << '\n'; |
| 359 | } |
| 360 | } |
| 361 | } |
| 362 | |
Anton Korobeynikov | 9de1934 | 2007-11-14 09:18:41 +0000 | [diff] [blame] | 363 | void AsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI, |
| 364 | const MachineBasicBlock *MBB, |
| 365 | unsigned uid) const { |
| 366 | bool IsPic = TM.getRelocationModel() == Reloc::PIC_; |
| 367 | |
| 368 | // Use JumpTableDirective otherwise honor the entry size from the jump table |
| 369 | // info. |
| 370 | const char *JTEntryDirective = TAI->getJumpTableDirective(); |
| 371 | bool HadJTEntryDirective = JTEntryDirective != NULL; |
| 372 | if (!HadJTEntryDirective) { |
| 373 | JTEntryDirective = MJTI->getEntrySize() == 4 ? |
| 374 | TAI->getData32bitsDirective() : TAI->getData64bitsDirective(); |
| 375 | } |
| 376 | |
| 377 | O << JTEntryDirective << ' '; |
| 378 | |
| 379 | // If we have emitted set directives for the jump table entries, print |
| 380 | // them rather than the entries themselves. If we're emitting PIC, then |
| 381 | // emit the table entries as differences between two text section labels. |
| 382 | // If we're emitting non-PIC code, then emit the entries as direct |
| 383 | // references to the target basic blocks. |
| 384 | if (IsPic) { |
| 385 | if (TAI->getSetDirective()) { |
| 386 | O << TAI->getPrivateGlobalPrefix() << getFunctionNumber() |
| 387 | << '_' << uid << "_set_" << MBB->getNumber(); |
| 388 | } else { |
Evan Cheng | fb8075d | 2008-02-28 00:43:03 +0000 | [diff] [blame] | 389 | printBasicBlockLabel(MBB, false, false, false); |
Anton Korobeynikov | 9de1934 | 2007-11-14 09:18:41 +0000 | [diff] [blame] | 390 | // If the arch uses custom Jump Table directives, don't calc relative to |
| 391 | // JT |
| 392 | if (!HadJTEntryDirective) |
| 393 | O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" |
| 394 | << getFunctionNumber() << '_' << uid; |
| 395 | } |
| 396 | } else { |
Evan Cheng | fb8075d | 2008-02-28 00:43:03 +0000 | [diff] [blame] | 397 | printBasicBlockLabel(MBB, false, false, false); |
Anton Korobeynikov | 9de1934 | 2007-11-14 09:18:41 +0000 | [diff] [blame] | 398 | } |
| 399 | } |
| 400 | |
| 401 | |
Chris Lattner | ed13893 | 2005-12-13 06:32:10 +0000 | [diff] [blame] | 402 | /// EmitSpecialLLVMGlobal - Check to see if the specified global is a |
| 403 | /// special global used by LLVM. If so, emit it and return true, otherwise |
| 404 | /// do nothing and return false. |
| 405 | bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) { |
Andrew Lenharth | b753a9b | 2007-08-22 19:33:11 +0000 | [diff] [blame] | 406 | if (GV->getName() == "llvm.used") { |
| 407 | if (TAI->getUsedDirective() != 0) // No need to emit this at all. |
| 408 | EmitLLVMUsedList(GV->getInitializer()); |
| 409 | return true; |
| 410 | } |
| 411 | |
Jim Laskey | 7809811 | 2006-03-07 22:00:35 +0000 | [diff] [blame] | 412 | // Ignore debug and non-emitted data. |
| 413 | if (GV->getSection() == "llvm.metadata") return true; |
| 414 | |
| 415 | if (!GV->hasAppendingLinkage()) return false; |
| 416 | |
| 417 | assert(GV->hasInitializer() && "Not a special LLVM global!"); |
Chris Lattner | ed13893 | 2005-12-13 06:32:10 +0000 | [diff] [blame] | 418 | |
Evan Cheng | 916d07c | 2007-06-04 20:39:18 +0000 | [diff] [blame] | 419 | const TargetData *TD = TM.getTargetData(); |
| 420 | unsigned Align = Log2_32(TD->getPointerPrefAlignment()); |
Chris Lattner | 5166b82 | 2006-01-12 19:17:23 +0000 | [diff] [blame] | 421 | if (GV->getName() == "llvm.global_ctors" && GV->use_empty()) { |
Anton Korobeynikov | ab4022f | 2006-10-31 08:31:24 +0000 | [diff] [blame] | 422 | SwitchToDataSection(TAI->getStaticCtorsSection()); |
Evan Cheng | 916d07c | 2007-06-04 20:39:18 +0000 | [diff] [blame] | 423 | EmitAlignment(Align, 0); |
Chris Lattner | ed13893 | 2005-12-13 06:32:10 +0000 | [diff] [blame] | 424 | EmitXXStructorList(GV->getInitializer()); |
| 425 | return true; |
| 426 | } |
| 427 | |
Chris Lattner | 5166b82 | 2006-01-12 19:17:23 +0000 | [diff] [blame] | 428 | if (GV->getName() == "llvm.global_dtors" && GV->use_empty()) { |
Anton Korobeynikov | ab4022f | 2006-10-31 08:31:24 +0000 | [diff] [blame] | 429 | SwitchToDataSection(TAI->getStaticDtorsSection()); |
Evan Cheng | 916d07c | 2007-06-04 20:39:18 +0000 | [diff] [blame] | 430 | EmitAlignment(Align, 0); |
Chris Lattner | ed13893 | 2005-12-13 06:32:10 +0000 | [diff] [blame] | 431 | EmitXXStructorList(GV->getInitializer()); |
| 432 | return true; |
| 433 | } |
| 434 | |
| 435 | return false; |
| 436 | } |
| 437 | |
Dale Johannesen | 61e6093 | 2008-09-03 20:34:58 +0000 | [diff] [blame] | 438 | /// findGlobalValue - if CV is an expression equivalent to a single |
| 439 | /// global value, return that value. |
| 440 | const GlobalValue * AsmPrinter::findGlobalValue(const Constant *CV) { |
| 441 | if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) |
| 442 | return GV; |
| 443 | else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) { |
| 444 | const TargetData *TD = TM.getTargetData(); |
| 445 | unsigned Opcode = CE->getOpcode(); |
| 446 | switch (Opcode) { |
| 447 | case Instruction::GetElementPtr: { |
| 448 | const Constant *ptrVal = CE->getOperand(0); |
| 449 | SmallVector<Value*, 8> idxVec(CE->op_begin()+1, CE->op_end()); |
| 450 | if (TD->getIndexedOffset(ptrVal->getType(), &idxVec[0], idxVec.size())) |
| 451 | return 0; |
| 452 | return findGlobalValue(ptrVal); |
| 453 | } |
| 454 | case Instruction::BitCast: |
| 455 | return findGlobalValue(CE->getOperand(0)); |
| 456 | default: |
| 457 | return 0; |
| 458 | } |
| 459 | } |
| 460 | return 0; |
| 461 | } |
| 462 | |
Chris Lattner | cb05af8 | 2006-09-26 03:38:18 +0000 | [diff] [blame] | 463 | /// EmitLLVMUsedList - For targets that define a TAI::UsedDirective, mark each |
Dale Johannesen | d2e51af | 2008-09-09 22:29:13 +0000 | [diff] [blame] | 464 | /// global in the specified llvm.used list for which emitUsedDirectiveFor |
| 465 | /// is true, as being used with this directive. |
| 466 | |
Chris Lattner | cb05af8 | 2006-09-26 03:38:18 +0000 | [diff] [blame] | 467 | void AsmPrinter::EmitLLVMUsedList(Constant *List) { |
| 468 | const char *Directive = TAI->getUsedDirective(); |
| 469 | |
| 470 | // Should be an array of 'sbyte*'. |
| 471 | ConstantArray *InitList = dyn_cast<ConstantArray>(List); |
| 472 | if (InitList == 0) return; |
| 473 | |
| 474 | for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) { |
Dale Johannesen | 61e6093 | 2008-09-03 20:34:58 +0000 | [diff] [blame] | 475 | const GlobalValue *GV = findGlobalValue(InitList->getOperand(i)); |
Dale Johannesen | d2e51af | 2008-09-09 22:29:13 +0000 | [diff] [blame] | 476 | if (TAI->emitUsedDirectiveFor(GV, Mang)) { |
Dale Johannesen | 61e6093 | 2008-09-03 20:34:58 +0000 | [diff] [blame] | 477 | O << Directive; |
| 478 | EmitConstantValueOnly(InitList->getOperand(i)); |
| 479 | O << '\n'; |
| 480 | } |
Chris Lattner | cb05af8 | 2006-09-26 03:38:18 +0000 | [diff] [blame] | 481 | } |
| 482 | } |
| 483 | |
Chris Lattner | ed13893 | 2005-12-13 06:32:10 +0000 | [diff] [blame] | 484 | /// EmitXXStructorList - Emit the ctor or dtor list. This just prints out the |
| 485 | /// function pointers, ignoring the init priority. |
| 486 | void AsmPrinter::EmitXXStructorList(Constant *List) { |
| 487 | // Should be an array of '{ int, void ()* }' structs. The first value is the |
| 488 | // init priority, which we ignore. |
| 489 | if (!isa<ConstantArray>(List)) return; |
| 490 | ConstantArray *InitList = cast<ConstantArray>(List); |
| 491 | for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) |
| 492 | if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){ |
| 493 | if (CS->getNumOperands() != 2) return; // Not array of 2-element structs. |
Chris Lattner | 8de324b | 2005-12-21 01:17:37 +0000 | [diff] [blame] | 494 | |
| 495 | if (CS->getOperand(1)->isNullValue()) |
| 496 | return; // Found a null terminator, exit printing. |
| 497 | // Emit the function pointer. |
Chris Lattner | ed13893 | 2005-12-13 06:32:10 +0000 | [diff] [blame] | 498 | EmitGlobalConstant(CS->getOperand(1)); |
| 499 | } |
| 500 | } |
Chris Lattner | 3b4fd32 | 2005-11-21 08:25:09 +0000 | [diff] [blame] | 501 | |
Jim Laskey | a1a19f8 | 2006-10-17 13:41:07 +0000 | [diff] [blame] | 502 | /// getGlobalLinkName - Returns the asm/link name of of the specified |
| 503 | /// global variable. Should be overridden by each target asm printer to |
| 504 | /// generate the appropriate value. |
Jim Laskey | 99e41ee | 2006-10-17 17:17:24 +0000 | [diff] [blame] | 505 | const std::string AsmPrinter::getGlobalLinkName(const GlobalVariable *GV) const{ |
| 506 | std::string LinkName; |
Jim Laskey | 0374248 | 2006-11-20 20:29:06 +0000 | [diff] [blame] | 507 | |
| 508 | if (isa<Function>(GV)) { |
| 509 | LinkName += TAI->getFunctionAddrPrefix(); |
| 510 | LinkName += Mang->getValueName(GV); |
| 511 | LinkName += TAI->getFunctionAddrSuffix(); |
| 512 | } else { |
| 513 | LinkName += TAI->getGlobalVarAddrPrefix(); |
| 514 | LinkName += Mang->getValueName(GV); |
| 515 | LinkName += TAI->getGlobalVarAddrSuffix(); |
| 516 | } |
| 517 | |
Jim Laskey | 99e41ee | 2006-10-17 17:17:24 +0000 | [diff] [blame] | 518 | return LinkName; |
Jim Laskey | a1a19f8 | 2006-10-17 13:41:07 +0000 | [diff] [blame] | 519 | } |
| 520 | |
Jim Laskey | bda9b0e | 2007-02-21 22:47:38 +0000 | [diff] [blame] | 521 | /// EmitExternalGlobal - Emit the external reference to a global variable. |
| 522 | /// Should be overridden if an indirect reference should be used. |
| 523 | void AsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) { |
| 524 | O << getGlobalLinkName(GV); |
| 525 | } |
| 526 | |
| 527 | |
| 528 | |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 529 | //===----------------------------------------------------------------------===// |
| 530 | /// LEB 128 number encoding. |
| 531 | |
| 532 | /// PrintULEB128 - Print a series of hexidecimal values (separated by commas) |
| 533 | /// representing an unsigned leb128 value. |
| 534 | void AsmPrinter::PrintULEB128(unsigned Value) const { |
| 535 | do { |
| 536 | unsigned Byte = Value & 0x7f; |
| 537 | Value >>= 7; |
| 538 | if (Value) Byte |= 0x80; |
Owen Anderson | cb37188 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 539 | O << "0x" << utohexstr(Byte); |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 540 | if (Value) O << ", "; |
| 541 | } while (Value); |
| 542 | } |
| 543 | |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 544 | /// PrintSLEB128 - Print a series of hexidecimal values (separated by commas) |
| 545 | /// representing a signed leb128 value. |
| 546 | void AsmPrinter::PrintSLEB128(int Value) const { |
| 547 | int Sign = Value >> (8 * sizeof(Value) - 1); |
| 548 | bool IsMore; |
Anton Korobeynikov | ffe31d7 | 2008-08-16 12:57:46 +0000 | [diff] [blame] | 549 | |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 550 | do { |
| 551 | unsigned Byte = Value & 0x7f; |
| 552 | Value >>= 7; |
| 553 | IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0; |
| 554 | if (IsMore) Byte |= 0x80; |
Owen Anderson | cb37188 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 555 | O << "0x" << utohexstr(Byte); |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 556 | if (IsMore) O << ", "; |
| 557 | } while (IsMore); |
| 558 | } |
| 559 | |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 560 | //===--------------------------------------------------------------------===// |
| 561 | // Emission and print routines |
| 562 | // |
| 563 | |
| 564 | /// PrintHex - Print a value as a hexidecimal value. |
| 565 | /// |
| 566 | void AsmPrinter::PrintHex(int Value) const { |
Owen Anderson | cb37188 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 567 | O << "0x" << utohexstr(static_cast<unsigned>(Value)); |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 568 | } |
| 569 | |
| 570 | /// EOL - Print a newline character to asm stream. If a comment is present |
| 571 | /// then it will be printed first. Comments should not contain '\n'. |
Jim Laskey | bda9b0e | 2007-02-21 22:47:38 +0000 | [diff] [blame] | 572 | void AsmPrinter::EOL() const { |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 573 | O << '\n'; |
Jim Laskey | bda9b0e | 2007-02-21 22:47:38 +0000 | [diff] [blame] | 574 | } |
Owen Anderson | 2599509 | 2008-07-01 21:16:27 +0000 | [diff] [blame] | 575 | |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 576 | void AsmPrinter::EOL(const std::string &Comment) const { |
Evan Cheng | 6547e40 | 2008-07-01 23:18:29 +0000 | [diff] [blame] | 577 | if (VerboseAsm && !Comment.empty()) { |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 578 | O << '\t' |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 579 | << TAI->getCommentString() |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 580 | << ' ' |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 581 | << Comment; |
| 582 | } |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 583 | O << '\n'; |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 584 | } |
| 585 | |
Owen Anderson | 2599509 | 2008-07-01 21:16:27 +0000 | [diff] [blame] | 586 | void AsmPrinter::EOL(const char* Comment) const { |
Evan Cheng | 6547e40 | 2008-07-01 23:18:29 +0000 | [diff] [blame] | 587 | if (VerboseAsm && *Comment) { |
Owen Anderson | 2599509 | 2008-07-01 21:16:27 +0000 | [diff] [blame] | 588 | O << '\t' |
| 589 | << TAI->getCommentString() |
| 590 | << ' ' |
| 591 | << Comment; |
| 592 | } |
| 593 | O << '\n'; |
| 594 | } |
| 595 | |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 596 | /// EmitULEB128Bytes - Emit an assembler byte data directive to compose an |
| 597 | /// unsigned leb128 value. |
| 598 | void AsmPrinter::EmitULEB128Bytes(unsigned Value) const { |
| 599 | if (TAI->hasLEB128()) { |
| 600 | O << "\t.uleb128\t" |
| 601 | << Value; |
| 602 | } else { |
| 603 | O << TAI->getData8bitsDirective(); |
| 604 | PrintULEB128(Value); |
| 605 | } |
| 606 | } |
| 607 | |
| 608 | /// EmitSLEB128Bytes - print an assembler byte data directive to compose a |
| 609 | /// signed leb128 value. |
| 610 | void AsmPrinter::EmitSLEB128Bytes(int Value) const { |
| 611 | if (TAI->hasLEB128()) { |
| 612 | O << "\t.sleb128\t" |
| 613 | << Value; |
| 614 | } else { |
| 615 | O << TAI->getData8bitsDirective(); |
| 616 | PrintSLEB128(Value); |
| 617 | } |
| 618 | } |
| 619 | |
| 620 | /// EmitInt8 - Emit a byte directive and value. |
| 621 | /// |
| 622 | void AsmPrinter::EmitInt8(int Value) const { |
| 623 | O << TAI->getData8bitsDirective(); |
| 624 | PrintHex(Value & 0xFF); |
| 625 | } |
| 626 | |
| 627 | /// EmitInt16 - Emit a short directive and value. |
| 628 | /// |
| 629 | void AsmPrinter::EmitInt16(int Value) const { |
| 630 | O << TAI->getData16bitsDirective(); |
| 631 | PrintHex(Value & 0xFFFF); |
| 632 | } |
| 633 | |
| 634 | /// EmitInt32 - Emit a long directive and value. |
| 635 | /// |
| 636 | void AsmPrinter::EmitInt32(int Value) const { |
| 637 | O << TAI->getData32bitsDirective(); |
| 638 | PrintHex(Value); |
| 639 | } |
| 640 | |
| 641 | /// EmitInt64 - Emit a long long directive and value. |
| 642 | /// |
| 643 | void AsmPrinter::EmitInt64(uint64_t Value) const { |
| 644 | if (TAI->getData64bitsDirective()) { |
| 645 | O << TAI->getData64bitsDirective(); |
| 646 | PrintHex(Value); |
| 647 | } else { |
| 648 | if (TM.getTargetData()->isBigEndian()) { |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 649 | EmitInt32(unsigned(Value >> 32)); O << '\n'; |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 650 | EmitInt32(unsigned(Value)); |
| 651 | } else { |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 652 | EmitInt32(unsigned(Value)); O << '\n'; |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 653 | EmitInt32(unsigned(Value >> 32)); |
| 654 | } |
| 655 | } |
| 656 | } |
| 657 | |
| 658 | /// toOctal - Convert the low order bits of X into an octal digit. |
| 659 | /// |
| 660 | static inline char toOctal(int X) { |
| 661 | return (X&7)+'0'; |
| 662 | } |
| 663 | |
| 664 | /// printStringChar - Print a char, escaped if necessary. |
| 665 | /// |
Owen Anderson | cb37188 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 666 | static void printStringChar(raw_ostream &O, char C) { |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 667 | if (C == '"') { |
| 668 | O << "\\\""; |
| 669 | } else if (C == '\\') { |
| 670 | O << "\\\\"; |
| 671 | } else if (isprint(C)) { |
| 672 | O << C; |
| 673 | } else { |
| 674 | switch(C) { |
| 675 | case '\b': O << "\\b"; break; |
| 676 | case '\f': O << "\\f"; break; |
| 677 | case '\n': O << "\\n"; break; |
| 678 | case '\r': O << "\\r"; break; |
| 679 | case '\t': O << "\\t"; break; |
| 680 | default: |
| 681 | O << '\\'; |
| 682 | O << toOctal(C >> 6); |
| 683 | O << toOctal(C >> 3); |
| 684 | O << toOctal(C >> 0); |
| 685 | break; |
| 686 | } |
| 687 | } |
| 688 | } |
| 689 | |
| 690 | /// EmitString - Emit a string with quotes and a null terminator. |
| 691 | /// Special characters are emitted properly. |
| 692 | /// \literal (Eg. '\t') \endliteral |
| 693 | void AsmPrinter::EmitString(const std::string &String) const { |
Anton Korobeynikov | fb269cf | 2007-03-06 19:25:02 +0000 | [diff] [blame] | 694 | const char* AscizDirective = TAI->getAscizDirective(); |
| 695 | if (AscizDirective) |
| 696 | O << AscizDirective; |
| 697 | else |
| 698 | O << TAI->getAsciiDirective(); |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 699 | O << '\"'; |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 700 | for (unsigned i = 0, N = String.size(); i < N; ++i) { |
| 701 | unsigned char C = String[i]; |
| 702 | printStringChar(O, C); |
| 703 | } |
Anton Korobeynikov | fb269cf | 2007-03-06 19:25:02 +0000 | [diff] [blame] | 704 | if (AscizDirective) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 705 | O << '\"'; |
Anton Korobeynikov | fb269cf | 2007-03-06 19:25:02 +0000 | [diff] [blame] | 706 | else |
| 707 | O << "\\0\""; |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 708 | } |
| 709 | |
| 710 | |
Dan Gohman | 189f80d | 2007-09-24 20:58:13 +0000 | [diff] [blame] | 711 | /// EmitFile - Emit a .file directive. |
| 712 | void AsmPrinter::EmitFile(unsigned Number, const std::string &Name) const { |
| 713 | O << "\t.file\t" << Number << " \""; |
| 714 | for (unsigned i = 0, N = Name.size(); i < N; ++i) { |
| 715 | unsigned char C = Name[i]; |
| 716 | printStringChar(O, C); |
| 717 | } |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 718 | O << '\"'; |
Dan Gohman | 189f80d | 2007-09-24 20:58:13 +0000 | [diff] [blame] | 719 | } |
| 720 | |
| 721 | |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 722 | //===----------------------------------------------------------------------===// |
| 723 | |
Chris Lattner | 3a42053 | 2007-05-31 18:57:45 +0000 | [diff] [blame] | 724 | // EmitAlignment - Emit an alignment directive to the specified power of |
| 725 | // two boundary. For example, if you pass in 3 here, you will get an 8 |
| 726 | // byte alignment. If a global value is specified, and if that global has |
| 727 | // an explicit alignment requested, it will unconditionally override the |
| 728 | // alignment request. However, if ForcedAlignBits is specified, this value |
| 729 | // has final say: the ultimate alignment will be the max of ForcedAlignBits |
| 730 | // and the alignment computed with NumBits and the global. |
| 731 | // |
| 732 | // The algorithm is: |
| 733 | // Align = NumBits; |
| 734 | // if (GV && GV->hasalignment) Align = GV->getalignment(); |
| 735 | // Align = std::max(Align, ForcedAlignBits); |
| 736 | // |
| 737 | void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV, |
Evan Cheng | 05548eb | 2008-02-29 19:36:59 +0000 | [diff] [blame] | 738 | unsigned ForcedAlignBits, |
| 739 | bool UseFillExpr) const { |
Dale Johannesen | 00d56b9 | 2007-04-23 23:33:31 +0000 | [diff] [blame] | 740 | if (GV && GV->getAlignment()) |
Chris Lattner | 3a42053 | 2007-05-31 18:57:45 +0000 | [diff] [blame] | 741 | NumBits = Log2_32(GV->getAlignment()); |
| 742 | NumBits = std::max(NumBits, ForcedAlignBits); |
| 743 | |
Chris Lattner | 2a21c6e | 2005-11-10 18:09:27 +0000 | [diff] [blame] | 744 | if (NumBits == 0) return; // No need to emit alignment. |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 745 | if (TAI->getAlignmentIsInBytes()) NumBits = 1 << NumBits; |
Evan Cheng | 73a259a | 2007-07-25 23:35:07 +0000 | [diff] [blame] | 746 | O << TAI->getAlignDirective() << NumBits; |
Evan Cheng | fb8075d | 2008-02-28 00:43:03 +0000 | [diff] [blame] | 747 | |
| 748 | unsigned FillValue = TAI->getTextAlignFillValue(); |
Evan Cheng | 05548eb | 2008-02-29 19:36:59 +0000 | [diff] [blame] | 749 | UseFillExpr &= IsInTextSection && FillValue; |
Owen Anderson | cb37188 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 750 | if (UseFillExpr) O << ",0x" << utohexstr(FillValue); |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 751 | O << '\n'; |
Chris Lattner | bfddc20 | 2004-08-17 19:14:29 +0000 | [diff] [blame] | 752 | } |
| 753 | |
Jim Laskey | bda9b0e | 2007-02-21 22:47:38 +0000 | [diff] [blame] | 754 | |
Chris Lattner | 25045bd | 2005-11-21 07:51:36 +0000 | [diff] [blame] | 755 | /// EmitZeros - Emit a block of zeros. |
Chris Lattner | 7d057a3 | 2004-08-17 21:38:40 +0000 | [diff] [blame] | 756 | /// |
Chris Lattner | 25045bd | 2005-11-21 07:51:36 +0000 | [diff] [blame] | 757 | void AsmPrinter::EmitZeros(uint64_t NumZeros) const { |
Chris Lattner | 7d057a3 | 2004-08-17 21:38:40 +0000 | [diff] [blame] | 758 | if (NumZeros) { |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 759 | if (TAI->getZeroDirective()) { |
| 760 | O << TAI->getZeroDirective() << NumZeros; |
| 761 | if (TAI->getZeroDirectiveSuffix()) |
| 762 | O << TAI->getZeroDirectiveSuffix(); |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 763 | O << '\n'; |
Jeff Cohen | c6a057b | 2006-05-02 03:46:13 +0000 | [diff] [blame] | 764 | } else { |
Chris Lattner | 7d057a3 | 2004-08-17 21:38:40 +0000 | [diff] [blame] | 765 | for (; NumZeros; --NumZeros) |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 766 | O << TAI->getData8bitsDirective() << "0\n"; |
Chris Lattner | 7d057a3 | 2004-08-17 21:38:40 +0000 | [diff] [blame] | 767 | } |
| 768 | } |
| 769 | } |
| 770 | |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 771 | // Print out the specified constant, without a storage class. Only the |
| 772 | // constants valid in constant expressions can occur here. |
Chris Lattner | 25045bd | 2005-11-21 07:51:36 +0000 | [diff] [blame] | 773 | void AsmPrinter::EmitConstantValueOnly(const Constant *CV) { |
Chris Lattner | bd1d382 | 2004-10-16 18:19:26 +0000 | [diff] [blame] | 774 | if (CV->isNullValue() || isa<UndefValue>(CV)) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 775 | O << '0'; |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 776 | else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { |
Scott Michel | 4315eee | 2008-06-03 06:18:19 +0000 | [diff] [blame] | 777 | O << CI->getZExtValue(); |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 778 | } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) { |
Duraid Madina | 855a519 | 2005-04-02 12:21:51 +0000 | [diff] [blame] | 779 | // This is a constant address for a global variable or function. Use the |
| 780 | // name of the variable or function as the address value, possibly |
| 781 | // decorating it with GlobalVarAddrPrefix/Suffix or |
| 782 | // FunctionAddrPrefix/Suffix (these all default to "" ) |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 783 | if (isa<Function>(GV)) { |
| 784 | O << TAI->getFunctionAddrPrefix() |
| 785 | << Mang->getValueName(GV) |
| 786 | << TAI->getFunctionAddrSuffix(); |
| 787 | } else { |
| 788 | O << TAI->getGlobalVarAddrPrefix() |
| 789 | << Mang->getValueName(GV) |
| 790 | << TAI->getGlobalVarAddrSuffix(); |
| 791 | } |
Duraid Madina | 855a519 | 2005-04-02 12:21:51 +0000 | [diff] [blame] | 792 | } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) { |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 793 | const TargetData *TD = TM.getTargetData(); |
Anton Korobeynikov | 13b7d3d | 2007-02-04 23:27:42 +0000 | [diff] [blame] | 794 | unsigned Opcode = CE->getOpcode(); |
| 795 | switch (Opcode) { |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 796 | case Instruction::GetElementPtr: { |
| 797 | // generate a symbolic expression for the byte address |
| 798 | const Constant *ptrVal = CE->getOperand(0); |
Chris Lattner | 7f6b9d2 | 2007-02-10 20:31:59 +0000 | [diff] [blame] | 799 | SmallVector<Value*, 8> idxVec(CE->op_begin()+1, CE->op_end()); |
| 800 | if (int64_t Offset = TD->getIndexedOffset(ptrVal->getType(), &idxVec[0], |
| 801 | idxVec.size())) { |
Chris Lattner | 27e1921 | 2005-02-14 21:40:26 +0000 | [diff] [blame] | 802 | if (Offset) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 803 | O << '('; |
Chris Lattner | 25045bd | 2005-11-21 07:51:36 +0000 | [diff] [blame] | 804 | EmitConstantValueOnly(ptrVal); |
Chris Lattner | 27e1921 | 2005-02-14 21:40:26 +0000 | [diff] [blame] | 805 | if (Offset > 0) |
| 806 | O << ") + " << Offset; |
| 807 | else if (Offset < 0) |
| 808 | O << ") - " << -Offset; |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 809 | } else { |
Chris Lattner | 25045bd | 2005-11-21 07:51:36 +0000 | [diff] [blame] | 810 | EmitConstantValueOnly(ptrVal); |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 811 | } |
| 812 | break; |
| 813 | } |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 814 | case Instruction::Trunc: |
| 815 | case Instruction::ZExt: |
| 816 | case Instruction::SExt: |
| 817 | case Instruction::FPTrunc: |
| 818 | case Instruction::FPExt: |
| 819 | case Instruction::UIToFP: |
| 820 | case Instruction::SIToFP: |
| 821 | case Instruction::FPToUI: |
| 822 | case Instruction::FPToSI: |
| 823 | assert(0 && "FIXME: Don't yet support this kind of constant cast expr"); |
| 824 | break; |
Chris Lattner | cb0a681 | 2006-12-12 05:14:13 +0000 | [diff] [blame] | 825 | case Instruction::BitCast: |
| 826 | return EmitConstantValueOnly(CE->getOperand(0)); |
| 827 | |
Chris Lattner | ddc9401 | 2006-12-12 05:18:19 +0000 | [diff] [blame] | 828 | case Instruction::IntToPtr: { |
| 829 | // Handle casts to pointers by changing them into casts to the appropriate |
| 830 | // integer type. This promotes constant folding and simplifies this code. |
| 831 | Constant *Op = CE->getOperand(0); |
| 832 | Op = ConstantExpr::getIntegerCast(Op, TD->getIntPtrType(), false/*ZExt*/); |
| 833 | return EmitConstantValueOnly(Op); |
| 834 | } |
| 835 | |
| 836 | |
| 837 | case Instruction::PtrToInt: { |
Chris Lattner | 4a6bd33 | 2006-07-29 01:57:19 +0000 | [diff] [blame] | 838 | // Support only foldable casts to/from pointers that can be eliminated by |
| 839 | // changing the pointer to the appropriately sized integer type. |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 840 | Constant *Op = CE->getOperand(0); |
Chris Lattner | ddc9401 | 2006-12-12 05:18:19 +0000 | [diff] [blame] | 841 | const Type *Ty = CE->getType(); |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 842 | |
Chris Lattner | ddc9401 | 2006-12-12 05:18:19 +0000 | [diff] [blame] | 843 | // We can emit the pointer value into this slot if the slot is an |
| 844 | // integer slot greater or equal to the size of the pointer. |
Nick Lewycky | d622738 | 2008-08-08 06:34:07 +0000 | [diff] [blame] | 845 | if (TD->getABITypeSize(Ty) >= TD->getABITypeSize(Op->getType())) |
Chris Lattner | 4a6bd33 | 2006-07-29 01:57:19 +0000 | [diff] [blame] | 846 | return EmitConstantValueOnly(Op); |
Nick Lewycky | d622738 | 2008-08-08 06:34:07 +0000 | [diff] [blame] | 847 | |
| 848 | O << "(("; |
Chris Lattner | 25045bd | 2005-11-21 07:51:36 +0000 | [diff] [blame] | 849 | EmitConstantValueOnly(Op); |
Nick Lewycky | d622738 | 2008-08-08 06:34:07 +0000 | [diff] [blame] | 850 | APInt ptrMask = APInt::getAllOnesValue(TD->getABITypeSizeInBits(Ty)); |
Chris Lattner | fad86b0 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 851 | |
| 852 | SmallString<40> S; |
| 853 | ptrMask.toStringUnsigned(S); |
| 854 | O << ") & " << S.c_str() << ')'; |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 855 | break; |
| 856 | } |
| 857 | case Instruction::Add: |
Anton Korobeynikov | 13b7d3d | 2007-02-04 23:27:42 +0000 | [diff] [blame] | 858 | case Instruction::Sub: |
Anton Korobeynikov | feb8893 | 2007-12-18 20:53:41 +0000 | [diff] [blame] | 859 | case Instruction::And: |
| 860 | case Instruction::Or: |
| 861 | case Instruction::Xor: |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 862 | O << '('; |
Chris Lattner | 25045bd | 2005-11-21 07:51:36 +0000 | [diff] [blame] | 863 | EmitConstantValueOnly(CE->getOperand(0)); |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 864 | O << ')'; |
Anton Korobeynikov | feb8893 | 2007-12-18 20:53:41 +0000 | [diff] [blame] | 865 | switch (Opcode) { |
| 866 | case Instruction::Add: |
| 867 | O << " + "; |
| 868 | break; |
| 869 | case Instruction::Sub: |
| 870 | O << " - "; |
| 871 | break; |
| 872 | case Instruction::And: |
| 873 | O << " & "; |
| 874 | break; |
| 875 | case Instruction::Or: |
| 876 | O << " | "; |
| 877 | break; |
| 878 | case Instruction::Xor: |
| 879 | O << " ^ "; |
| 880 | break; |
| 881 | default: |
| 882 | break; |
| 883 | } |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 884 | O << '('; |
Chris Lattner | 25045bd | 2005-11-21 07:51:36 +0000 | [diff] [blame] | 885 | EmitConstantValueOnly(CE->getOperand(1)); |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 886 | O << ')'; |
Chris Lattner | a80ba71 | 2004-08-16 23:15:22 +0000 | [diff] [blame] | 887 | break; |
| 888 | default: |
| 889 | assert(0 && "Unsupported operator!"); |
| 890 | } |
| 891 | } else { |
| 892 | assert(0 && "Unknown constant value!"); |
| 893 | } |
| 894 | } |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 895 | |
Chris Lattner | 2980cef | 2005-11-10 18:06:33 +0000 | [diff] [blame] | 896 | /// printAsCString - Print the specified array as a C compatible string, only if |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 897 | /// the predicate isString is true. |
| 898 | /// |
Owen Anderson | cb37188 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 899 | static void printAsCString(raw_ostream &O, const ConstantArray *CVA, |
Chris Lattner | 2980cef | 2005-11-10 18:06:33 +0000 | [diff] [blame] | 900 | unsigned LastElt) { |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 901 | assert(CVA->isString() && "Array is not string compatible!"); |
| 902 | |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 903 | O << '\"'; |
Chris Lattner | 2980cef | 2005-11-10 18:06:33 +0000 | [diff] [blame] | 904 | for (unsigned i = 0; i != LastElt; ++i) { |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 905 | unsigned char C = |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 906 | (unsigned char)cast<ConstantInt>(CVA->getOperand(i))->getZExtValue(); |
Jim Laskey | f1cdea1 | 2007-01-25 15:12:02 +0000 | [diff] [blame] | 907 | printStringChar(O, C); |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 908 | } |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 909 | O << '\"'; |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 910 | } |
| 911 | |
Jeff Cohen | c884db4 | 2006-05-02 01:16:28 +0000 | [diff] [blame] | 912 | /// EmitString - Emit a zero-byte-terminated string constant. |
| 913 | /// |
| 914 | void AsmPrinter::EmitString(const ConstantArray *CVA) const { |
| 915 | unsigned NumElts = CVA->getNumOperands(); |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 916 | if (TAI->getAscizDirective() && NumElts && |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 917 | cast<ConstantInt>(CVA->getOperand(NumElts-1))->getZExtValue() == 0) { |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 918 | O << TAI->getAscizDirective(); |
Jeff Cohen | c884db4 | 2006-05-02 01:16:28 +0000 | [diff] [blame] | 919 | printAsCString(O, CVA, NumElts-1); |
| 920 | } else { |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 921 | O << TAI->getAsciiDirective(); |
Jeff Cohen | c884db4 | 2006-05-02 01:16:28 +0000 | [diff] [blame] | 922 | printAsCString(O, CVA, NumElts); |
| 923 | } |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 924 | O << '\n'; |
Jeff Cohen | c884db4 | 2006-05-02 01:16:28 +0000 | [diff] [blame] | 925 | } |
| 926 | |
Chris Lattner | 25045bd | 2005-11-21 07:51:36 +0000 | [diff] [blame] | 927 | /// EmitGlobalConstant - Print a general LLVM constant to the .s file. |
Duncan Sands | a0fcc08 | 2008-06-04 08:21:45 +0000 | [diff] [blame] | 928 | void AsmPrinter::EmitGlobalConstant(const Constant *CV) { |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 929 | const TargetData *TD = TM.getTargetData(); |
Duncan Sands | a0fcc08 | 2008-06-04 08:21:45 +0000 | [diff] [blame] | 930 | unsigned Size = TD->getABITypeSize(CV->getType()); |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 931 | |
Chris Lattner | bd1d382 | 2004-10-16 18:19:26 +0000 | [diff] [blame] | 932 | if (CV->isNullValue() || isa<UndefValue>(CV)) { |
Duncan Sands | ca0ed74 | 2007-11-05 00:04:43 +0000 | [diff] [blame] | 933 | EmitZeros(Size); |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 934 | return; |
| 935 | } else if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) { |
| 936 | if (CVA->isString()) { |
Jeff Cohen | c884db4 | 2006-05-02 01:16:28 +0000 | [diff] [blame] | 937 | EmitString(CVA); |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 938 | } else { // Not a string. Print the values in successive locations |
Duncan Sands | ca0ed74 | 2007-11-05 00:04:43 +0000 | [diff] [blame] | 939 | for (unsigned i = 0, e = CVA->getNumOperands(); i != e; ++i) |
Duncan Sands | a0fcc08 | 2008-06-04 08:21:45 +0000 | [diff] [blame] | 940 | EmitGlobalConstant(CVA->getOperand(i)); |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 941 | } |
| 942 | return; |
| 943 | } else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) { |
| 944 | // Print the fields in successive locations. Pad to align if needed! |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 945 | const StructLayout *cvsLayout = TD->getStructLayout(CVS->getType()); |
Chris Lattner | dea18b6 | 2005-01-08 19:59:10 +0000 | [diff] [blame] | 946 | uint64_t sizeSoFar = 0; |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 947 | for (unsigned i = 0, e = CVS->getNumOperands(); i != e; ++i) { |
| 948 | const Constant* field = CVS->getOperand(i); |
| 949 | |
| 950 | // Check if padding is needed and insert one or more 0s. |
Duncan Sands | a0fcc08 | 2008-06-04 08:21:45 +0000 | [diff] [blame] | 951 | uint64_t fieldSize = TD->getABITypeSize(field->getType()); |
Duncan Sands | 0c8a13b | 2007-11-05 18:03:02 +0000 | [diff] [blame] | 952 | uint64_t padSize = ((i == e-1 ? Size : cvsLayout->getElementOffset(i+1)) |
Chris Lattner | b1919e2 | 2007-02-10 19:55:17 +0000 | [diff] [blame] | 953 | - cvsLayout->getElementOffset(i)) - fieldSize; |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 954 | sizeSoFar += fieldSize + padSize; |
| 955 | |
Duncan Sands | a0fcc08 | 2008-06-04 08:21:45 +0000 | [diff] [blame] | 956 | // Now print the actual field value. |
| 957 | EmitGlobalConstant(field); |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 958 | |
Duncan Sands | 0c8a13b | 2007-11-05 18:03:02 +0000 | [diff] [blame] | 959 | // Insert padding - this may include padding to increase the size of the |
| 960 | // current field up to the ABI size (if the struct is not packed) as well |
| 961 | // as padding to ensure that the next field starts at the right offset. |
Chris Lattner | 25045bd | 2005-11-21 07:51:36 +0000 | [diff] [blame] | 962 | EmitZeros(padSize); |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 963 | } |
Chris Lattner | b0c39a3 | 2007-02-10 19:59:22 +0000 | [diff] [blame] | 964 | assert(sizeSoFar == cvsLayout->getSizeInBytes() && |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 965 | "Layout of constant struct may be incorrect!"); |
| 966 | return; |
| 967 | } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) { |
| 968 | // FP Constants are printed as integer constants to avoid losing |
| 969 | // precision... |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 970 | if (CFP->getType() == Type::DoubleTy) { |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 971 | double Val = CFP->getValueAPF().convertToDouble(); // for comment only |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 972 | uint64_t i = CFP->getValueAPF().bitcastToAPInt().getZExtValue(); |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 973 | if (TAI->getData64bitsDirective()) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 974 | O << TAI->getData64bitsDirective() << i << '\t' |
| 975 | << TAI->getCommentString() << " double value: " << Val << '\n'; |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 976 | else if (TD->isBigEndian()) { |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 977 | O << TAI->getData32bitsDirective() << unsigned(i >> 32) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 978 | << '\t' << TAI->getCommentString() |
| 979 | << " double most significant word " << Val << '\n'; |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 980 | O << TAI->getData32bitsDirective() << unsigned(i) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 981 | << '\t' << TAI->getCommentString() |
| 982 | << " double least significant word " << Val << '\n'; |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 983 | } else { |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 984 | O << TAI->getData32bitsDirective() << unsigned(i) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 985 | << '\t' << TAI->getCommentString() |
| 986 | << " double least significant word " << Val << '\n'; |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 987 | O << TAI->getData32bitsDirective() << unsigned(i >> 32) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 988 | << '\t' << TAI->getCommentString() |
| 989 | << " double most significant word " << Val << '\n'; |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 990 | } |
| 991 | return; |
Dale Johannesen | 9d5f456 | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 992 | } else if (CFP->getType() == Type::FloatTy) { |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 993 | float Val = CFP->getValueAPF().convertToFloat(); // for comment only |
| 994 | O << TAI->getData32bitsDirective() |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 995 | << CFP->getValueAPF().bitcastToAPInt().getZExtValue() |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 996 | << '\t' << TAI->getCommentString() << " float " << Val << '\n'; |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 997 | return; |
Dale Johannesen | 9d5f456 | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 998 | } else if (CFP->getType() == Type::X86_FP80Ty) { |
| 999 | // all long double variants are printed as hex |
Dale Johannesen | 693717f | 2007-09-26 23:20:33 +0000 | [diff] [blame] | 1000 | // api needed to prevent premature destruction |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 1001 | APInt api = CFP->getValueAPF().bitcastToAPInt(); |
Dale Johannesen | 693717f | 2007-09-26 23:20:33 +0000 | [diff] [blame] | 1002 | const uint64_t *p = api.getRawData(); |
Dale Johannesen | 23a9855 | 2008-10-09 23:00:39 +0000 | [diff] [blame^] | 1003 | // Convert to double so we can print the approximate val as a comment. |
Chris Lattner | 553c116 | 2008-01-27 06:09:28 +0000 | [diff] [blame] | 1004 | APFloat DoubleVal = CFP->getValueAPF(); |
Dale Johannesen | 23a9855 | 2008-10-09 23:00:39 +0000 | [diff] [blame^] | 1005 | bool ignored; |
| 1006 | DoubleVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, |
| 1007 | &ignored); |
Dale Johannesen | 9d5f456 | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 1008 | if (TD->isBigEndian()) { |
| 1009 | O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 48) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1010 | << '\t' << TAI->getCommentString() |
Chris Lattner | 553c116 | 2008-01-27 06:09:28 +0000 | [diff] [blame] | 1011 | << " long double most significant halfword of ~" |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1012 | << DoubleVal.convertToDouble() << '\n'; |
Dale Johannesen | 9d5f456 | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 1013 | O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 32) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1014 | << '\t' << TAI->getCommentString() |
Dale Johannesen | 9d5f456 | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 1015 | << " long double next halfword\n"; |
| 1016 | O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 16) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1017 | << '\t' << TAI->getCommentString() |
Dale Johannesen | 9d5f456 | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 1018 | << " long double next halfword\n"; |
| 1019 | O << TAI->getData16bitsDirective() << uint16_t(p[0]) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1020 | << '\t' << TAI->getCommentString() |
Dale Johannesen | 9d5f456 | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 1021 | << " long double next halfword\n"; |
| 1022 | O << TAI->getData16bitsDirective() << uint16_t(p[1]) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1023 | << '\t' << TAI->getCommentString() |
Dale Johannesen | 9d5f456 | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 1024 | << " long double least significant halfword\n"; |
| 1025 | } else { |
| 1026 | O << TAI->getData16bitsDirective() << uint16_t(p[1]) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1027 | << '\t' << TAI->getCommentString() |
Chris Lattner | 553c116 | 2008-01-27 06:09:28 +0000 | [diff] [blame] | 1028 | << " long double least significant halfword of ~" |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1029 | << DoubleVal.convertToDouble() << '\n'; |
Dale Johannesen | 9d5f456 | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 1030 | O << TAI->getData16bitsDirective() << uint16_t(p[0]) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1031 | << '\t' << TAI->getCommentString() |
Dale Johannesen | 9d5f456 | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 1032 | << " long double next halfword\n"; |
| 1033 | O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 16) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1034 | << '\t' << TAI->getCommentString() |
Dale Johannesen | 9d5f456 | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 1035 | << " long double next halfword\n"; |
| 1036 | O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 32) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1037 | << '\t' << TAI->getCommentString() |
Dale Johannesen | 9d5f456 | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 1038 | << " long double next halfword\n"; |
| 1039 | O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 48) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1040 | << '\t' << TAI->getCommentString() |
Dale Johannesen | 9d5f456 | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 1041 | << " long double most significant halfword\n"; |
| 1042 | } |
Duncan Sands | ca0ed74 | 2007-11-05 00:04:43 +0000 | [diff] [blame] | 1043 | EmitZeros(Size - TD->getTypeStoreSize(Type::X86_FP80Ty)); |
Dale Johannesen | 9d5f456 | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 1044 | return; |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 1045 | } else if (CFP->getType() == Type::PPC_FP128Ty) { |
| 1046 | // all long double variants are printed as hex |
| 1047 | // api needed to prevent premature destruction |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 1048 | APInt api = CFP->getValueAPF().bitcastToAPInt(); |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 1049 | const uint64_t *p = api.getRawData(); |
| 1050 | if (TD->isBigEndian()) { |
| 1051 | O << TAI->getData32bitsDirective() << uint32_t(p[0] >> 32) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1052 | << '\t' << TAI->getCommentString() |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 1053 | << " long double most significant word\n"; |
| 1054 | O << TAI->getData32bitsDirective() << uint32_t(p[0]) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1055 | << '\t' << TAI->getCommentString() |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 1056 | << " long double next word\n"; |
| 1057 | O << TAI->getData32bitsDirective() << uint32_t(p[1] >> 32) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1058 | << '\t' << TAI->getCommentString() |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 1059 | << " long double next word\n"; |
| 1060 | O << TAI->getData32bitsDirective() << uint32_t(p[1]) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1061 | << '\t' << TAI->getCommentString() |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 1062 | << " long double least significant word\n"; |
| 1063 | } else { |
| 1064 | O << TAI->getData32bitsDirective() << uint32_t(p[1]) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1065 | << '\t' << TAI->getCommentString() |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 1066 | << " long double least significant word\n"; |
| 1067 | O << TAI->getData32bitsDirective() << uint32_t(p[1] >> 32) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1068 | << '\t' << TAI->getCommentString() |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 1069 | << " long double next word\n"; |
| 1070 | O << TAI->getData32bitsDirective() << uint32_t(p[0]) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1071 | << '\t' << TAI->getCommentString() |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 1072 | << " long double next word\n"; |
| 1073 | O << TAI->getData32bitsDirective() << uint32_t(p[0] >> 32) |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1074 | << '\t' << TAI->getCommentString() |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 1075 | << " long double most significant word\n"; |
| 1076 | } |
| 1077 | return; |
Dale Johannesen | 9d5f456 | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 1078 | } else assert(0 && "Floating point constant type not handled"); |
Dan Gohman | 82f94f1 | 2008-09-08 16:40:13 +0000 | [diff] [blame] | 1079 | } else if (CV->getType()->isInteger() && |
| 1080 | cast<IntegerType>(CV->getType())->getBitWidth() >= 64) { |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 1081 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { |
Dan Gohman | 82f94f1 | 2008-09-08 16:40:13 +0000 | [diff] [blame] | 1082 | unsigned BitWidth = CI->getBitWidth(); |
| 1083 | assert(isPowerOf2_32(BitWidth) && |
| 1084 | "Non-power-of-2-sized integers not handled!"); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 1085 | |
Dan Gohman | 82f94f1 | 2008-09-08 16:40:13 +0000 | [diff] [blame] | 1086 | // We don't expect assemblers to support integer data directives |
| 1087 | // for more than 64 bits, so we emit the data in at most 64-bit |
| 1088 | // quantities at a time. |
| 1089 | const uint64_t *RawData = CI->getValue().getRawData(); |
| 1090 | for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) { |
| 1091 | uint64_t Val; |
| 1092 | if (TD->isBigEndian()) |
| 1093 | Val = RawData[e - i - 1]; |
| 1094 | else |
| 1095 | Val = RawData[i]; |
| 1096 | |
| 1097 | if (TAI->getData64bitsDirective()) |
| 1098 | O << TAI->getData64bitsDirective() << Val << '\n'; |
| 1099 | else if (TD->isBigEndian()) { |
| 1100 | O << TAI->getData32bitsDirective() << unsigned(Val >> 32) |
| 1101 | << '\t' << TAI->getCommentString() |
| 1102 | << " Double-word most significant word " << Val << '\n'; |
| 1103 | O << TAI->getData32bitsDirective() << unsigned(Val) |
| 1104 | << '\t' << TAI->getCommentString() |
| 1105 | << " Double-word least significant word " << Val << '\n'; |
| 1106 | } else { |
| 1107 | O << TAI->getData32bitsDirective() << unsigned(Val) |
| 1108 | << '\t' << TAI->getCommentString() |
| 1109 | << " Double-word least significant word " << Val << '\n'; |
| 1110 | O << TAI->getData32bitsDirective() << unsigned(Val >> 32) |
| 1111 | << '\t' << TAI->getCommentString() |
| 1112 | << " Double-word most significant word " << Val << '\n'; |
| 1113 | } |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 1114 | } |
| 1115 | return; |
| 1116 | } |
Reid Spencer | 9d6565a | 2007-02-15 02:26:10 +0000 | [diff] [blame] | 1117 | } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) { |
| 1118 | const VectorType *PTy = CP->getType(); |
Nate Begeman | 8cfa57b | 2005-12-06 06:18:55 +0000 | [diff] [blame] | 1119 | |
| 1120 | for (unsigned I = 0, E = PTy->getNumElements(); I < E; ++I) |
Duncan Sands | a0fcc08 | 2008-06-04 08:21:45 +0000 | [diff] [blame] | 1121 | EmitGlobalConstant(CP->getOperand(I)); |
Nate Begeman | 8cfa57b | 2005-12-06 06:18:55 +0000 | [diff] [blame] | 1122 | |
| 1123 | return; |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 1124 | } |
| 1125 | |
| 1126 | const Type *type = CV->getType(); |
Evan Cheng | d6594ae | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 1127 | printDataDirective(type); |
Chris Lattner | 25045bd | 2005-11-21 07:51:36 +0000 | [diff] [blame] | 1128 | EmitConstantValueOnly(CV); |
Scott Michel | eefc845 | 2008-06-03 15:39:51 +0000 | [diff] [blame] | 1129 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { |
Chris Lattner | fad86b0 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1130 | SmallString<40> S; |
| 1131 | CI->getValue().toStringUnsigned(S, 16); |
| 1132 | O << "\t\t\t" << TAI->getCommentString() << " 0x" << S.c_str(); |
Scott Michel | eefc845 | 2008-06-03 15:39:51 +0000 | [diff] [blame] | 1133 | } |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1134 | O << '\n'; |
Chris Lattner | 1b7e235 | 2004-08-17 06:36:49 +0000 | [diff] [blame] | 1135 | } |
Chris Lattner | 0264d1a | 2006-01-27 02:10:10 +0000 | [diff] [blame] | 1136 | |
Chris Lattner | fad86b0 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1137 | void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) { |
Evan Cheng | d6594ae | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 1138 | // Target doesn't support this yet! |
| 1139 | abort(); |
| 1140 | } |
| 1141 | |
Chris Lattner | 3ce9b67 | 2006-09-26 23:59:50 +0000 | [diff] [blame] | 1142 | /// PrintSpecial - Print information related to the specified machine instr |
| 1143 | /// that is independent of the operand, and may be independent of the instr |
| 1144 | /// itself. This can be useful for portably encoding the comment character |
| 1145 | /// or other bits of target-specific knowledge into the asmstrings. The |
| 1146 | /// syntax used is ${:comment}. Targets can override this to add support |
| 1147 | /// for their own strange codes. |
| 1148 | void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) { |
Chris Lattner | bae02cf | 2006-09-27 00:06:07 +0000 | [diff] [blame] | 1149 | if (!strcmp(Code, "private")) { |
| 1150 | O << TAI->getPrivateGlobalPrefix(); |
| 1151 | } else if (!strcmp(Code, "comment")) { |
Chris Lattner | 3ce9b67 | 2006-09-26 23:59:50 +0000 | [diff] [blame] | 1152 | O << TAI->getCommentString(); |
| 1153 | } else if (!strcmp(Code, "uid")) { |
| 1154 | // Assign a unique ID to this machine instruction. |
| 1155 | static const MachineInstr *LastMI = 0; |
Chris Lattner | b6a24bf | 2007-02-05 21:23:52 +0000 | [diff] [blame] | 1156 | static const Function *F = 0; |
Chris Lattner | 3ce9b67 | 2006-09-26 23:59:50 +0000 | [diff] [blame] | 1157 | static unsigned Counter = 0U-1; |
Chris Lattner | b6a24bf | 2007-02-05 21:23:52 +0000 | [diff] [blame] | 1158 | |
| 1159 | // Comparing the address of MI isn't sufficient, because machineinstrs may |
| 1160 | // be allocated to the same address across functions. |
| 1161 | const Function *ThisF = MI->getParent()->getParent()->getFunction(); |
| 1162 | |
Chris Lattner | 3ce9b67 | 2006-09-26 23:59:50 +0000 | [diff] [blame] | 1163 | // If this is a new machine instruction, bump the counter. |
Chris Lattner | b6a24bf | 2007-02-05 21:23:52 +0000 | [diff] [blame] | 1164 | if (LastMI != MI || F != ThisF) { |
| 1165 | ++Counter; |
| 1166 | LastMI = MI; |
Chris Lattner | 4b09252 | 2007-02-06 01:56:31 +0000 | [diff] [blame] | 1167 | F = ThisF; |
Chris Lattner | b6a24bf | 2007-02-05 21:23:52 +0000 | [diff] [blame] | 1168 | } |
Chris Lattner | 3ce9b67 | 2006-09-26 23:59:50 +0000 | [diff] [blame] | 1169 | O << Counter; |
| 1170 | } else { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 1171 | cerr << "Unknown special formatter '" << Code |
| 1172 | << "' for machine instr: " << *MI; |
Chris Lattner | 3ce9b67 | 2006-09-26 23:59:50 +0000 | [diff] [blame] | 1173 | exit(1); |
| 1174 | } |
| 1175 | } |
| 1176 | |
| 1177 | |
Chris Lattner | 0264d1a | 2006-01-27 02:10:10 +0000 | [diff] [blame] | 1178 | /// printInlineAsm - This method formats and prints the specified machine |
| 1179 | /// instruction that is an inline asm. |
| 1180 | void AsmPrinter::printInlineAsm(const MachineInstr *MI) const { |
Chris Lattner | f2b67cf | 2006-01-30 23:00:08 +0000 | [diff] [blame] | 1181 | unsigned NumOperands = MI->getNumOperands(); |
| 1182 | |
| 1183 | // Count the number of register definitions. |
| 1184 | unsigned NumDefs = 0; |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 1185 | for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef(); |
Chris Lattner | 67942f5 | 2006-09-05 20:02:51 +0000 | [diff] [blame] | 1186 | ++NumDefs) |
Chris Lattner | f2b67cf | 2006-01-30 23:00:08 +0000 | [diff] [blame] | 1187 | assert(NumDefs != NumOperands-1 && "No asm string?"); |
| 1188 | |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 1189 | assert(MI->getOperand(NumDefs).isSymbol() && "No asm string?"); |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1190 | |
| 1191 | // Disassemble the AsmStr, printing out the literal pieces, the operands, etc. |
Chris Lattner | f2b67cf | 2006-01-30 23:00:08 +0000 | [diff] [blame] | 1192 | const char *AsmStr = MI->getOperand(NumDefs).getSymbolName(); |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1193 | |
Dale Johannesen | ba2a0b9 | 2008-01-29 02:21:21 +0000 | [diff] [blame] | 1194 | // If this asmstr is empty, just print the #APP/#NOAPP markers. |
| 1195 | // These are useful to see where empty asm's wound up. |
Chris Lattner | f26f5dd | 2006-07-28 00:17:20 +0000 | [diff] [blame] | 1196 | if (AsmStr[0] == 0) { |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1197 | O << TAI->getInlineAsmStart() << "\n\t" << TAI->getInlineAsmEnd() << '\n'; |
Chris Lattner | f26f5dd | 2006-07-28 00:17:20 +0000 | [diff] [blame] | 1198 | return; |
| 1199 | } |
| 1200 | |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 1201 | O << TAI->getInlineAsmStart() << "\n\t"; |
Chris Lattner | f26f5dd | 2006-07-28 00:17:20 +0000 | [diff] [blame] | 1202 | |
Bill Wendling | eb9a42c | 2007-01-16 03:42:04 +0000 | [diff] [blame] | 1203 | // The variant of the current asmprinter. |
| 1204 | int AsmPrinterVariant = TAI->getAssemblerDialect(); |
| 1205 | |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1206 | int CurVariant = -1; // The number of the {.|.|.} region we are in. |
| 1207 | const char *LastEmitted = AsmStr; // One past the last character emitted. |
Chris Lattner | 2cc2f66 | 2006-02-01 01:28:23 +0000 | [diff] [blame] | 1208 | |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1209 | while (*LastEmitted) { |
| 1210 | switch (*LastEmitted) { |
| 1211 | default: { |
| 1212 | // Not a special case, emit the string section literally. |
| 1213 | const char *LiteralEnd = LastEmitted+1; |
| 1214 | while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' && |
Chris Lattner | 1c05997 | 2006-05-05 21:47:05 +0000 | [diff] [blame] | 1215 | *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n') |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1216 | ++LiteralEnd; |
| 1217 | if (CurVariant == -1 || CurVariant == AsmPrinterVariant) |
| 1218 | O.write(LastEmitted, LiteralEnd-LastEmitted); |
| 1219 | LastEmitted = LiteralEnd; |
| 1220 | break; |
| 1221 | } |
Chris Lattner | 1c05997 | 2006-05-05 21:47:05 +0000 | [diff] [blame] | 1222 | case '\n': |
| 1223 | ++LastEmitted; // Consume newline character. |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1224 | O << '\n'; // Indent code with newline. |
Chris Lattner | 1c05997 | 2006-05-05 21:47:05 +0000 | [diff] [blame] | 1225 | break; |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1226 | case '$': { |
| 1227 | ++LastEmitted; // Consume '$' character. |
Chris Lattner | faf1dae | 2006-10-03 23:27:09 +0000 | [diff] [blame] | 1228 | bool Done = true; |
| 1229 | |
| 1230 | // Handle escapes. |
| 1231 | switch (*LastEmitted) { |
| 1232 | default: Done = false; break; |
| 1233 | case '$': // $$ -> $ |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1234 | if (CurVariant == -1 || CurVariant == AsmPrinterVariant) |
| 1235 | O << '$'; |
| 1236 | ++LastEmitted; // Consume second '$' character. |
| 1237 | break; |
Chris Lattner | faf1dae | 2006-10-03 23:27:09 +0000 | [diff] [blame] | 1238 | case '(': // $( -> same as GCC's { character. |
| 1239 | ++LastEmitted; // Consume '(' character. |
| 1240 | if (CurVariant != -1) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 1241 | cerr << "Nested variants found in inline asm string: '" |
| 1242 | << AsmStr << "'\n"; |
Chris Lattner | faf1dae | 2006-10-03 23:27:09 +0000 | [diff] [blame] | 1243 | exit(1); |
| 1244 | } |
| 1245 | CurVariant = 0; // We're in the first variant now. |
| 1246 | break; |
| 1247 | case '|': |
| 1248 | ++LastEmitted; // consume '|' character. |
| 1249 | if (CurVariant == -1) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 1250 | cerr << "Found '|' character outside of variant in inline asm " |
| 1251 | << "string: '" << AsmStr << "'\n"; |
Chris Lattner | faf1dae | 2006-10-03 23:27:09 +0000 | [diff] [blame] | 1252 | exit(1); |
| 1253 | } |
| 1254 | ++CurVariant; // We're in the next variant. |
| 1255 | break; |
| 1256 | case ')': // $) -> same as GCC's } char. |
| 1257 | ++LastEmitted; // consume ')' character. |
| 1258 | if (CurVariant == -1) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 1259 | cerr << "Found '}' character outside of variant in inline asm " |
| 1260 | << "string: '" << AsmStr << "'\n"; |
Chris Lattner | faf1dae | 2006-10-03 23:27:09 +0000 | [diff] [blame] | 1261 | exit(1); |
| 1262 | } |
| 1263 | CurVariant = -1; |
| 1264 | break; |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1265 | } |
Chris Lattner | faf1dae | 2006-10-03 23:27:09 +0000 | [diff] [blame] | 1266 | if (Done) break; |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1267 | |
| 1268 | bool HasCurlyBraces = false; |
| 1269 | if (*LastEmitted == '{') { // ${variable} |
| 1270 | ++LastEmitted; // Consume '{' character. |
| 1271 | HasCurlyBraces = true; |
| 1272 | } |
| 1273 | |
| 1274 | const char *IDStart = LastEmitted; |
| 1275 | char *IDEnd; |
Chris Lattner | fad2912 | 2007-01-23 00:36:17 +0000 | [diff] [blame] | 1276 | errno = 0; |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1277 | long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs. |
| 1278 | if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 1279 | cerr << "Bad $ operand number in inline asm string: '" |
| 1280 | << AsmStr << "'\n"; |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1281 | exit(1); |
| 1282 | } |
| 1283 | LastEmitted = IDEnd; |
| 1284 | |
Chris Lattner | a36cb0a | 2006-02-06 22:17:23 +0000 | [diff] [blame] | 1285 | char Modifier[2] = { 0, 0 }; |
| 1286 | |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1287 | if (HasCurlyBraces) { |
Chris Lattner | a36cb0a | 2006-02-06 22:17:23 +0000 | [diff] [blame] | 1288 | // If we have curly braces, check for a modifier character. This |
| 1289 | // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm. |
| 1290 | if (*LastEmitted == ':') { |
| 1291 | ++LastEmitted; // Consume ':' character. |
| 1292 | if (*LastEmitted == 0) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 1293 | cerr << "Bad ${:} expression in inline asm string: '" |
| 1294 | << AsmStr << "'\n"; |
Chris Lattner | a36cb0a | 2006-02-06 22:17:23 +0000 | [diff] [blame] | 1295 | exit(1); |
| 1296 | } |
| 1297 | |
| 1298 | Modifier[0] = *LastEmitted; |
| 1299 | ++LastEmitted; // Consume modifier character. |
| 1300 | } |
| 1301 | |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1302 | if (*LastEmitted != '}') { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 1303 | cerr << "Bad ${} expression in inline asm string: '" |
| 1304 | << AsmStr << "'\n"; |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1305 | exit(1); |
| 1306 | } |
| 1307 | ++LastEmitted; // Consume '}' character. |
| 1308 | } |
| 1309 | |
| 1310 | if ((unsigned)Val >= NumOperands-1) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 1311 | cerr << "Invalid $ operand number in inline asm string: '" |
| 1312 | << AsmStr << "'\n"; |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1313 | exit(1); |
| 1314 | } |
| 1315 | |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 1316 | // Okay, we finally have a value number. Ask the target to print this |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1317 | // operand! |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 1318 | if (CurVariant == -1 || CurVariant == AsmPrinterVariant) { |
| 1319 | unsigned OpNo = 1; |
Chris Lattner | fd561cd | 2006-06-08 18:00:47 +0000 | [diff] [blame] | 1320 | |
| 1321 | bool Error = false; |
| 1322 | |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 1323 | // Scan to find the machine operand number for the operand. |
Chris Lattner | daf6bc6 | 2006-02-24 19:50:58 +0000 | [diff] [blame] | 1324 | for (; Val; --Val) { |
Chris Lattner | fd561cd | 2006-06-08 18:00:47 +0000 | [diff] [blame] | 1325 | if (OpNo >= MI->getNumOperands()) break; |
Chris Lattner | 9e33049 | 2007-12-30 20:50:28 +0000 | [diff] [blame] | 1326 | unsigned OpFlags = MI->getOperand(OpNo).getImm(); |
Chris Lattner | daf6bc6 | 2006-02-24 19:50:58 +0000 | [diff] [blame] | 1327 | OpNo += (OpFlags >> 3) + 1; |
| 1328 | } |
Chris Lattner | dd26033 | 2006-02-24 20:21:58 +0000 | [diff] [blame] | 1329 | |
Chris Lattner | fd561cd | 2006-06-08 18:00:47 +0000 | [diff] [blame] | 1330 | if (OpNo >= MI->getNumOperands()) { |
| 1331 | Error = true; |
Chris Lattner | dd26033 | 2006-02-24 20:21:58 +0000 | [diff] [blame] | 1332 | } else { |
Chris Lattner | 9e33049 | 2007-12-30 20:50:28 +0000 | [diff] [blame] | 1333 | unsigned OpFlags = MI->getOperand(OpNo).getImm(); |
Chris Lattner | fd561cd | 2006-06-08 18:00:47 +0000 | [diff] [blame] | 1334 | ++OpNo; // Skip over the ID number. |
| 1335 | |
Dale Johannesen | eb57ea7 | 2007-11-05 21:20:28 +0000 | [diff] [blame] | 1336 | if (Modifier[0]=='l') // labels are target independent |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 1337 | printBasicBlockLabel(MI->getOperand(OpNo).getMBB(), |
Evan Cheng | fb8075d | 2008-02-28 00:43:03 +0000 | [diff] [blame] | 1338 | false, false, false); |
Dale Johannesen | eb57ea7 | 2007-11-05 21:20:28 +0000 | [diff] [blame] | 1339 | else { |
| 1340 | AsmPrinter *AP = const_cast<AsmPrinter*>(this); |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 1341 | if ((OpFlags & 7) == 4) { |
Dale Johannesen | eb57ea7 | 2007-11-05 21:20:28 +0000 | [diff] [blame] | 1342 | Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant, |
| 1343 | Modifier[0] ? Modifier : 0); |
| 1344 | } else { |
| 1345 | Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant, |
| 1346 | Modifier[0] ? Modifier : 0); |
| 1347 | } |
Chris Lattner | fd561cd | 2006-06-08 18:00:47 +0000 | [diff] [blame] | 1348 | } |
Chris Lattner | dd26033 | 2006-02-24 20:21:58 +0000 | [diff] [blame] | 1349 | } |
| 1350 | if (Error) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 1351 | cerr << "Invalid operand found in inline asm: '" |
| 1352 | << AsmStr << "'\n"; |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1353 | MI->dump(); |
| 1354 | exit(1); |
| 1355 | } |
Chris Lattner | c3a9f8d | 2006-02-23 19:21:04 +0000 | [diff] [blame] | 1356 | } |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1357 | break; |
| 1358 | } |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1359 | } |
| 1360 | } |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1361 | O << "\n\t" << TAI->getInlineAsmEnd() << '\n'; |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1362 | } |
| 1363 | |
Evan Cheng | da47e6e | 2008-03-15 00:03:38 +0000 | [diff] [blame] | 1364 | /// printImplicitDef - This method prints the specified machine instruction |
| 1365 | /// that is an implicit def. |
| 1366 | void AsmPrinter::printImplicitDef(const MachineInstr *MI) const { |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1367 | O << '\t' << TAI->getCommentString() << " implicit-def: " |
| 1368 | << TRI->getAsmName(MI->getOperand(0).getReg()) << '\n'; |
Evan Cheng | da47e6e | 2008-03-15 00:03:38 +0000 | [diff] [blame] | 1369 | } |
| 1370 | |
Jim Laskey | 1ee2925 | 2007-01-26 14:34:52 +0000 | [diff] [blame] | 1371 | /// printLabel - This method prints a local label used by debug and |
| 1372 | /// exception handling tables. |
| 1373 | void AsmPrinter::printLabel(const MachineInstr *MI) const { |
Dan Gohman | 528bc02 | 2008-07-01 00:16:26 +0000 | [diff] [blame] | 1374 | printLabel(MI->getOperand(0).getImm()); |
Jim Laskey | 1ee2925 | 2007-01-26 14:34:52 +0000 | [diff] [blame] | 1375 | } |
| 1376 | |
Evan Cheng | 1b08bbc | 2008-02-01 09:10:45 +0000 | [diff] [blame] | 1377 | void AsmPrinter::printLabel(unsigned Id) const { |
Evan Cheng | 4eecdeb | 2008-02-02 08:39:46 +0000 | [diff] [blame] | 1378 | O << TAI->getPrivateGlobalPrefix() << "label" << Id << ":\n"; |
Evan Cheng | 1b08bbc | 2008-02-01 09:10:45 +0000 | [diff] [blame] | 1379 | } |
| 1380 | |
Evan Cheng | a844bde | 2008-02-02 04:07:54 +0000 | [diff] [blame] | 1381 | /// printDeclare - This method prints a local variable declaration used by |
| 1382 | /// debug tables. |
Evan Cheng | 4e3f5a4 | 2008-02-04 23:06:48 +0000 | [diff] [blame] | 1383 | /// FIXME: It doesn't really print anything rather it inserts a DebugVariable |
| 1384 | /// entry into dwarf table. |
Evan Cheng | a844bde | 2008-02-02 04:07:54 +0000 | [diff] [blame] | 1385 | void AsmPrinter::printDeclare(const MachineInstr *MI) const { |
Evan Cheng | 4e3f5a4 | 2008-02-04 23:06:48 +0000 | [diff] [blame] | 1386 | int FI = MI->getOperand(0).getIndex(); |
| 1387 | GlobalValue *GV = MI->getOperand(1).getGlobal(); |
| 1388 | MMI->RecordVariable(GV, FI); |
Evan Cheng | a844bde | 2008-02-02 04:07:54 +0000 | [diff] [blame] | 1389 | } |
| 1390 | |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1391 | /// PrintAsmOperand - Print the specified operand of MI, an INLINEASM |
| 1392 | /// instruction, using the specified assembler variant. Targets should |
| 1393 | /// overried this to format as appropriate. |
| 1394 | bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo, |
Chris Lattner | a36cb0a | 2006-02-06 22:17:23 +0000 | [diff] [blame] | 1395 | unsigned AsmVariant, const char *ExtraCode) { |
Chris Lattner | 6609913 | 2006-02-01 22:41:11 +0000 | [diff] [blame] | 1396 | // Target doesn't support this yet! |
| 1397 | return true; |
Chris Lattner | 0264d1a | 2006-01-27 02:10:10 +0000 | [diff] [blame] | 1398 | } |
Chris Lattner | dd26033 | 2006-02-24 20:21:58 +0000 | [diff] [blame] | 1399 | |
| 1400 | bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo, |
| 1401 | unsigned AsmVariant, |
| 1402 | const char *ExtraCode) { |
| 1403 | // Target doesn't support this yet! |
| 1404 | return true; |
| 1405 | } |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1406 | |
| 1407 | /// printBasicBlockLabel - This method prints the label for the specified |
| 1408 | /// MachineBasicBlock |
Nate Begeman | cdf38c4 | 2006-05-02 05:37:32 +0000 | [diff] [blame] | 1409 | void AsmPrinter::printBasicBlockLabel(const MachineBasicBlock *MBB, |
Evan Cheng | fb8075d | 2008-02-28 00:43:03 +0000 | [diff] [blame] | 1410 | bool printAlign, |
Nate Begeman | cdf38c4 | 2006-05-02 05:37:32 +0000 | [diff] [blame] | 1411 | bool printColon, |
| 1412 | bool printComment) const { |
Evan Cheng | fb8075d | 2008-02-28 00:43:03 +0000 | [diff] [blame] | 1413 | if (printAlign) { |
| 1414 | unsigned Align = MBB->getAlignment(); |
| 1415 | if (Align) |
| 1416 | EmitAlignment(Log2_32(Align)); |
| 1417 | } |
| 1418 | |
Dan Gohman | d19a53b | 2008-06-30 22:03:41 +0000 | [diff] [blame] | 1419 | O << TAI->getPrivateGlobalPrefix() << "BB" << getFunctionNumber() << '_' |
Evan Cheng | 347d39f | 2007-10-14 05:57:21 +0000 | [diff] [blame] | 1420 | << MBB->getNumber(); |
Nate Begeman | cdf38c4 | 2006-05-02 05:37:32 +0000 | [diff] [blame] | 1421 | if (printColon) |
| 1422 | O << ':'; |
Chris Lattner | 9c78ecb | 2006-10-05 21:40:14 +0000 | [diff] [blame] | 1423 | if (printComment && MBB->getBasicBlock()) |
Dan Gohman | 286d569 | 2007-07-30 15:06:25 +0000 | [diff] [blame] | 1424 | O << '\t' << TAI->getCommentString() << ' ' |
Evan Cheng | 77c8f76 | 2008-07-08 00:55:58 +0000 | [diff] [blame] | 1425 | << MBB->getBasicBlock()->getNameStart(); |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1426 | } |
Nate Begeman | 52a51e38 | 2006-08-12 21:29:52 +0000 | [diff] [blame] | 1427 | |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 1428 | /// printPICJumpTableSetLabel - This method prints a set label for the |
| 1429 | /// specified MachineBasicBlock for a jumptable entry. |
| 1430 | void AsmPrinter::printPICJumpTableSetLabel(unsigned uid, |
| 1431 | const MachineBasicBlock *MBB) const { |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 1432 | if (!TAI->getSetDirective()) |
Nate Begeman | 52a51e38 | 2006-08-12 21:29:52 +0000 | [diff] [blame] | 1433 | return; |
| 1434 | |
Jim Laskey | 563321a | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 1435 | O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix() |
Evan Cheng | 347d39f | 2007-10-14 05:57:21 +0000 | [diff] [blame] | 1436 | << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ','; |
Evan Cheng | fb8075d | 2008-02-28 00:43:03 +0000 | [diff] [blame] | 1437 | printBasicBlockLabel(MBB, false, false, false); |
Evan Cheng | 347d39f | 2007-10-14 05:57:21 +0000 | [diff] [blame] | 1438 | O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() |
| 1439 | << '_' << uid << '\n'; |
Nate Begeman | 52a51e38 | 2006-08-12 21:29:52 +0000 | [diff] [blame] | 1440 | } |
Evan Cheng | d6594ae | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 1441 | |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 1442 | void AsmPrinter::printPICJumpTableSetLabel(unsigned uid, unsigned uid2, |
| 1443 | const MachineBasicBlock *MBB) const { |
Evan Cheng | 41349c1 | 2006-11-01 09:23:08 +0000 | [diff] [blame] | 1444 | if (!TAI->getSetDirective()) |
| 1445 | return; |
| 1446 | |
| 1447 | O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix() |
Evan Cheng | 347d39f | 2007-10-14 05:57:21 +0000 | [diff] [blame] | 1448 | << getFunctionNumber() << '_' << uid << '_' << uid2 |
| 1449 | << "_set_" << MBB->getNumber() << ','; |
Evan Cheng | fb8075d | 2008-02-28 00:43:03 +0000 | [diff] [blame] | 1450 | printBasicBlockLabel(MBB, false, false, false); |
Evan Cheng | 347d39f | 2007-10-14 05:57:21 +0000 | [diff] [blame] | 1451 | O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() |
| 1452 | << '_' << uid << '_' << uid2 << '\n'; |
Evan Cheng | 41349c1 | 2006-11-01 09:23:08 +0000 | [diff] [blame] | 1453 | } |
| 1454 | |
Evan Cheng | d6594ae | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 1455 | /// printDataDirective - This method prints the asm directive for the |
| 1456 | /// specified type. |
| 1457 | void AsmPrinter::printDataDirective(const Type *type) { |
| 1458 | const TargetData *TD = TM.getTargetData(); |
| 1459 | switch (type->getTypeID()) { |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1460 | case Type::IntegerTyID: { |
| 1461 | unsigned BitWidth = cast<IntegerType>(type)->getBitWidth(); |
| 1462 | if (BitWidth <= 8) |
| 1463 | O << TAI->getData8bitsDirective(); |
| 1464 | else if (BitWidth <= 16) |
| 1465 | O << TAI->getData16bitsDirective(); |
| 1466 | else if (BitWidth <= 32) |
| 1467 | O << TAI->getData32bitsDirective(); |
| 1468 | else if (BitWidth <= 64) { |
| 1469 | assert(TAI->getData64bitsDirective() && |
| 1470 | "Target cannot handle 64-bit constant exprs!"); |
| 1471 | O << TAI->getData64bitsDirective(); |
Dan Gohman | 82f94f1 | 2008-09-08 16:40:13 +0000 | [diff] [blame] | 1472 | } else { |
| 1473 | assert(0 && "Target cannot handle given data directive width!"); |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1474 | } |
Evan Cheng | d6594ae | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 1475 | break; |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1476 | } |
Evan Cheng | d6594ae | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 1477 | case Type::PointerTyID: |
| 1478 | if (TD->getPointerSize() == 8) { |
| 1479 | assert(TAI->getData64bitsDirective() && |
| 1480 | "Target cannot handle 64-bit pointer exprs!"); |
| 1481 | O << TAI->getData64bitsDirective(); |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1482 | } else { |
| 1483 | O << TAI->getData32bitsDirective(); |
Evan Cheng | d6594ae | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 1484 | } |
Evan Cheng | d6594ae | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 1485 | break; |
| 1486 | case Type::FloatTyID: case Type::DoubleTyID: |
Dale Johannesen | 4292d1c | 2007-09-28 18:06:58 +0000 | [diff] [blame] | 1487 | case Type::X86_FP80TyID: case Type::FP128TyID: case Type::PPC_FP128TyID: |
Evan Cheng | d6594ae | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 1488 | assert (0 && "Should have already output floating point constant."); |
| 1489 | default: |
| 1490 | assert (0 && "Can't handle printing this type of thing"); |
| 1491 | break; |
| 1492 | } |
| 1493 | } |
Dale Johannesen | 4c3a5f8 | 2007-02-16 01:54:53 +0000 | [diff] [blame] | 1494 | |
Evan Cheng | ab8faba | 2008-07-08 16:40:43 +0000 | [diff] [blame] | 1495 | void AsmPrinter::printSuffixedName(const char *Name, const char *Suffix, |
| 1496 | const char *Prefix) { |
Dale Johannesen | c215b3e | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 1497 | if (Name[0]=='\"') |
Evan Cheng | ab8faba | 2008-07-08 16:40:43 +0000 | [diff] [blame] | 1498 | O << '\"'; |
| 1499 | O << TAI->getPrivateGlobalPrefix(); |
| 1500 | if (Prefix) O << Prefix; |
| 1501 | if (Name[0]=='\"') |
| 1502 | O << '\"'; |
| 1503 | if (Name[0]=='\"') |
| 1504 | O << Name[1]; |
Dale Johannesen | c215b3e | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 1505 | else |
Evan Cheng | ab8faba | 2008-07-08 16:40:43 +0000 | [diff] [blame] | 1506 | O << Name; |
| 1507 | O << Suffix; |
| 1508 | if (Name[0]=='\"') |
| 1509 | O << '\"'; |
Dale Johannesen | c215b3e | 2008-05-19 21:38:18 +0000 | [diff] [blame] | 1510 | } |
Evan Cheng | 77c8f76 | 2008-07-08 00:55:58 +0000 | [diff] [blame] | 1511 | |
Evan Cheng | ab8faba | 2008-07-08 16:40:43 +0000 | [diff] [blame] | 1512 | void AsmPrinter::printSuffixedName(const std::string &Name, const char* Suffix) { |
Evan Cheng | 77c8f76 | 2008-07-08 00:55:58 +0000 | [diff] [blame] | 1513 | printSuffixedName(Name.c_str(), Suffix); |
| 1514 | } |
Anton Korobeynikov | f5b6a47 | 2008-08-08 18:25:07 +0000 | [diff] [blame] | 1515 | |
| 1516 | void AsmPrinter::printVisibility(const std::string& Name, |
| 1517 | unsigned Visibility) const { |
| 1518 | if (Visibility == GlobalValue::HiddenVisibility) { |
| 1519 | if (const char *Directive = TAI->getHiddenDirective()) |
| 1520 | O << Directive << Name << '\n'; |
| 1521 | } else if (Visibility == GlobalValue::ProtectedVisibility) { |
| 1522 | if (const char *Directive = TAI->getProtectedDirective()) |
| 1523 | O << Directive << Name << '\n'; |
| 1524 | } |
| 1525 | } |
Gordon Henriksen | c317a60 | 2008-08-17 12:08:44 +0000 | [diff] [blame] | 1526 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 1527 | GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) { |
| 1528 | if (!S->usesMetadata()) |
Gordon Henriksen | c317a60 | 2008-08-17 12:08:44 +0000 | [diff] [blame] | 1529 | return 0; |
| 1530 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 1531 | gcp_iterator GCPI = GCMetadataPrinters.find(S); |
Gordon Henriksen | c317a60 | 2008-08-17 12:08:44 +0000 | [diff] [blame] | 1532 | if (GCPI != GCMetadataPrinters.end()) |
| 1533 | return GCPI->second; |
| 1534 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 1535 | const char *Name = S->getName().c_str(); |
Gordon Henriksen | c317a60 | 2008-08-17 12:08:44 +0000 | [diff] [blame] | 1536 | |
| 1537 | for (GCMetadataPrinterRegistry::iterator |
| 1538 | I = GCMetadataPrinterRegistry::begin(), |
| 1539 | E = GCMetadataPrinterRegistry::end(); I != E; ++I) |
| 1540 | if (strcmp(Name, I->getName()) == 0) { |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 1541 | GCMetadataPrinter *GMP = I->instantiate(); |
| 1542 | GMP->S = S; |
| 1543 | GCMetadataPrinters.insert(std::make_pair(S, GMP)); |
| 1544 | return GMP; |
Gordon Henriksen | c317a60 | 2008-08-17 12:08:44 +0000 | [diff] [blame] | 1545 | } |
| 1546 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 1547 | cerr << "no GCMetadataPrinter registered for GC: " << Name << "\n"; |
Gordon Henriksen | c317a60 | 2008-08-17 12:08:44 +0000 | [diff] [blame] | 1548 | abort(); |
| 1549 | } |