Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 1 | //===-- llvm/CodeGen/MachineModuleInfo.cpp ----------------------*- C++ -*-===// |
Jim Laskey | 6af5681 | 2006-01-04 13:36:38 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Jim Laskey | 6af5681 | 2006-01-04 13:36:38 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
Jim Laskey | 6af5681 | 2006-01-04 13:36:38 +0000 | [diff] [blame] | 9 | |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 10 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Jim Laskey | 6af5681 | 2006-01-04 13:36:38 +0000 | [diff] [blame] | 11 | |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 12 | #include "llvm/Constants.h" |
Chris Lattner | 1611273 | 2010-03-14 01:41:15 +0000 | [diff] [blame] | 13 | #include "llvm/DerivedTypes.h" |
| 14 | #include "llvm/GlobalVariable.h" |
Chris Lattner | 1611273 | 2010-03-14 01:41:15 +0000 | [diff] [blame] | 15 | #include "llvm/Module.h" |
Evan Cheng | 0ff39b3 | 2008-06-30 07:31:25 +0000 | [diff] [blame] | 16 | #include "llvm/Analysis/ValueTracking.h" |
Jim Laskey | 9d4209f | 2006-11-07 19:33:46 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/MachineFunctionPass.h" |
| 18 | #include "llvm/CodeGen/MachineFunction.h" |
Evan Cheng | 8b56a90 | 2008-09-22 22:21:38 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/Passes.h" |
Evan Cheng | e76a33b | 2011-07-20 05:58:47 +0000 | [diff] [blame] | 20 | #include "llvm/MC/MCObjectFileInfo.h" |
Chris Lattner | 1611273 | 2010-03-14 01:41:15 +0000 | [diff] [blame] | 21 | #include "llvm/MC/MCSymbol.h" |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/PointerUnion.h" |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 23 | #include "llvm/Support/Dwarf.h" |
Torok Edwin | c25e758 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 24 | #include "llvm/Support/ErrorHandling.h" |
Jim Laskey | 6af5681 | 2006-01-04 13:36:38 +0000 | [diff] [blame] | 25 | using namespace llvm; |
Jim Laskey | 9c4447a | 2006-03-01 20:39:36 +0000 | [diff] [blame] | 26 | using namespace llvm::dwarf; |
Jim Laskey | 6af5681 | 2006-01-04 13:36:38 +0000 | [diff] [blame] | 27 | |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 28 | // Handle the Pass registration stuff necessary to use DataLayout's. |
Owen Anderson | d13db2c | 2010-07-21 22:09:45 +0000 | [diff] [blame] | 29 | INITIALIZE_PASS(MachineModuleInfo, "machinemoduleinfo", |
Owen Anderson | ce665bd | 2010-10-07 22:25:06 +0000 | [diff] [blame] | 30 | "Machine Module Information", false, false) |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 31 | char MachineModuleInfo::ID = 0; |
Jim Laskey | 063e765 | 2006-01-17 17:31:53 +0000 | [diff] [blame] | 32 | |
Chris Lattner | a70e2e3 | 2009-09-15 22:44:26 +0000 | [diff] [blame] | 33 | // Out of line virtual method. |
| 34 | MachineModuleInfoImpl::~MachineModuleInfoImpl() {} |
| 35 | |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 36 | namespace llvm { |
| 37 | class MMIAddrLabelMapCallbackPtr : CallbackVH { |
| 38 | MMIAddrLabelMap *Map; |
| 39 | public: |
| 40 | MMIAddrLabelMapCallbackPtr() : Map(0) {} |
| 41 | MMIAddrLabelMapCallbackPtr(Value *V) : CallbackVH(V), Map(0) {} |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 42 | |
Chris Lattner | ea16ea5 | 2010-03-22 23:15:57 +0000 | [diff] [blame] | 43 | void setPtr(BasicBlock *BB) { |
| 44 | ValueHandleBase::operator=(BB); |
| 45 | } |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 46 | |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 47 | void setMap(MMIAddrLabelMap *map) { Map = map; } |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 48 | |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 49 | virtual void deleted(); |
| 50 | virtual void allUsesReplacedWith(Value *V2); |
| 51 | }; |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 52 | |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 53 | class MMIAddrLabelMap { |
| 54 | MCContext &Context; |
| 55 | struct AddrLabelSymEntry { |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 56 | /// Symbols - The symbols for the label. This is a pointer union that is |
| 57 | /// either one symbol (the common case) or a list of symbols. |
| 58 | PointerUnion<MCSymbol *, std::vector<MCSymbol*>*> Symbols; |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 59 | |
Chris Lattner | 9cc0da9 | 2010-03-15 20:39:00 +0000 | [diff] [blame] | 60 | Function *Fn; // The containing function of the BasicBlock. |
| 61 | unsigned Index; // The index in BBCallbacks for the BasicBlock. |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 62 | }; |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 63 | |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 64 | DenseMap<AssertingVH<BasicBlock>, AddrLabelSymEntry> AddrLabelSymbols; |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 65 | |
Chris Lattner | 9cc0da9 | 2010-03-15 20:39:00 +0000 | [diff] [blame] | 66 | /// BBCallbacks - Callbacks for the BasicBlock's that we have entries for. We |
| 67 | /// use this so we get notified if a block is deleted or RAUWd. |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 68 | std::vector<MMIAddrLabelMapCallbackPtr> BBCallbacks; |
Chris Lattner | 9cc0da9 | 2010-03-15 20:39:00 +0000 | [diff] [blame] | 69 | |
| 70 | /// DeletedAddrLabelsNeedingEmission - This is a per-function list of symbols |
| 71 | /// whose corresponding BasicBlock got deleted. These symbols need to be |
| 72 | /// emitted at some point in the file, so AsmPrinter emits them after the |
| 73 | /// function body. |
| 74 | DenseMap<AssertingVH<Function>, std::vector<MCSymbol*> > |
| 75 | DeletedAddrLabelsNeedingEmission; |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 76 | public: |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 77 | |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 78 | MMIAddrLabelMap(MCContext &context) : Context(context) {} |
Chris Lattner | 9cc0da9 | 2010-03-15 20:39:00 +0000 | [diff] [blame] | 79 | ~MMIAddrLabelMap() { |
| 80 | assert(DeletedAddrLabelsNeedingEmission.empty() && |
| 81 | "Some labels for deleted blocks never got emitted"); |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 82 | |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 83 | // Deallocate any of the 'list of symbols' case. |
| 84 | for (DenseMap<AssertingVH<BasicBlock>, AddrLabelSymEntry>::iterator |
| 85 | I = AddrLabelSymbols.begin(), E = AddrLabelSymbols.end(); I != E; ++I) |
| 86 | if (I->second.Symbols.is<std::vector<MCSymbol*>*>()) |
| 87 | delete I->second.Symbols.get<std::vector<MCSymbol*>*>(); |
Chris Lattner | 9cc0da9 | 2010-03-15 20:39:00 +0000 | [diff] [blame] | 88 | } |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 89 | |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 90 | MCSymbol *getAddrLabelSymbol(BasicBlock *BB); |
| 91 | std::vector<MCSymbol*> getAddrLabelSymbolToEmit(BasicBlock *BB); |
| 92 | |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 93 | void takeDeletedSymbolsForFunction(Function *F, |
Chris Lattner | 9cc0da9 | 2010-03-15 20:39:00 +0000 | [diff] [blame] | 94 | std::vector<MCSymbol*> &Result); |
| 95 | |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 96 | void UpdateForDeletedBlock(BasicBlock *BB); |
| 97 | void UpdateForRAUWBlock(BasicBlock *Old, BasicBlock *New); |
| 98 | }; |
| 99 | } |
| 100 | |
| 101 | MCSymbol *MMIAddrLabelMap::getAddrLabelSymbol(BasicBlock *BB) { |
| 102 | assert(BB->hasAddressTaken() && |
| 103 | "Shouldn't get label for block without address taken"); |
| 104 | AddrLabelSymEntry &Entry = AddrLabelSymbols[BB]; |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 105 | |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 106 | // If we already had an entry for this block, just return it. |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 107 | if (!Entry.Symbols.isNull()) { |
Chris Lattner | 9cc0da9 | 2010-03-15 20:39:00 +0000 | [diff] [blame] | 108 | assert(BB->getParent() == Entry.Fn && "Parent changed"); |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 109 | if (Entry.Symbols.is<MCSymbol*>()) |
| 110 | return Entry.Symbols.get<MCSymbol*>(); |
| 111 | return (*Entry.Symbols.get<std::vector<MCSymbol*>*>())[0]; |
Chris Lattner | 9cc0da9 | 2010-03-15 20:39:00 +0000 | [diff] [blame] | 112 | } |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 113 | |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 114 | // Otherwise, this is a new entry, create a new symbol for it and add an |
| 115 | // entry to BBCallbacks so we can be notified if the BB is deleted or RAUWd. |
| 116 | BBCallbacks.push_back(BB); |
| 117 | BBCallbacks.back().setMap(this); |
| 118 | Entry.Index = BBCallbacks.size()-1; |
Chris Lattner | 9cc0da9 | 2010-03-15 20:39:00 +0000 | [diff] [blame] | 119 | Entry.Fn = BB->getParent(); |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 120 | MCSymbol *Result = Context.CreateTempSymbol(); |
| 121 | Entry.Symbols = Result; |
| 122 | return Result; |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 123 | } |
| 124 | |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 125 | std::vector<MCSymbol*> |
| 126 | MMIAddrLabelMap::getAddrLabelSymbolToEmit(BasicBlock *BB) { |
| 127 | assert(BB->hasAddressTaken() && |
| 128 | "Shouldn't get label for block without address taken"); |
| 129 | AddrLabelSymEntry &Entry = AddrLabelSymbols[BB]; |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 130 | |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 131 | std::vector<MCSymbol*> Result; |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 132 | |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 133 | // If we already had an entry for this block, just return it. |
| 134 | if (Entry.Symbols.isNull()) |
| 135 | Result.push_back(getAddrLabelSymbol(BB)); |
| 136 | else if (MCSymbol *Sym = Entry.Symbols.dyn_cast<MCSymbol*>()) |
| 137 | Result.push_back(Sym); |
| 138 | else |
| 139 | Result = *Entry.Symbols.get<std::vector<MCSymbol*>*>(); |
| 140 | return Result; |
| 141 | } |
| 142 | |
| 143 | |
Chris Lattner | 9cc0da9 | 2010-03-15 20:39:00 +0000 | [diff] [blame] | 144 | /// takeDeletedSymbolsForFunction - If we have any deleted symbols for F, return |
| 145 | /// them. |
| 146 | void MMIAddrLabelMap:: |
| 147 | takeDeletedSymbolsForFunction(Function *F, std::vector<MCSymbol*> &Result) { |
| 148 | DenseMap<AssertingVH<Function>, std::vector<MCSymbol*> >::iterator I = |
| 149 | DeletedAddrLabelsNeedingEmission.find(F); |
| 150 | |
| 151 | // If there are no entries for the function, just return. |
| 152 | if (I == DeletedAddrLabelsNeedingEmission.end()) return; |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 153 | |
Chris Lattner | 9cc0da9 | 2010-03-15 20:39:00 +0000 | [diff] [blame] | 154 | // Otherwise, take the list. |
| 155 | std::swap(Result, I->second); |
| 156 | DeletedAddrLabelsNeedingEmission.erase(I); |
| 157 | } |
| 158 | |
| 159 | |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 160 | void MMIAddrLabelMap::UpdateForDeletedBlock(BasicBlock *BB) { |
| 161 | // If the block got deleted, there is no need for the symbol. If the symbol |
| 162 | // was already emitted, we can just forget about it, otherwise we need to |
| 163 | // queue it up for later emission when the function is output. |
| 164 | AddrLabelSymEntry Entry = AddrLabelSymbols[BB]; |
| 165 | AddrLabelSymbols.erase(BB); |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 166 | assert(!Entry.Symbols.isNull() && "Didn't have a symbol, why a callback?"); |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 167 | BBCallbacks[Entry.Index] = 0; // Clear the callback. |
| 168 | |
Chris Lattner | 9cc0da9 | 2010-03-15 20:39:00 +0000 | [diff] [blame] | 169 | assert((BB->getParent() == 0 || BB->getParent() == Entry.Fn) && |
| 170 | "Block/parent mismatch"); |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 171 | |
| 172 | // Handle both the single and the multiple symbols cases. |
| 173 | if (MCSymbol *Sym = Entry.Symbols.dyn_cast<MCSymbol*>()) { |
| 174 | if (Sym->isDefined()) |
| 175 | return; |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 176 | |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 177 | // If the block is not yet defined, we need to emit it at the end of the |
| 178 | // function. Add the symbol to the DeletedAddrLabelsNeedingEmission list |
| 179 | // for the containing Function. Since the block is being deleted, its |
| 180 | // parent may already be removed, we have to get the function from 'Entry'. |
| 181 | DeletedAddrLabelsNeedingEmission[Entry.Fn].push_back(Sym); |
| 182 | } else { |
| 183 | std::vector<MCSymbol*> *Syms = Entry.Symbols.get<std::vector<MCSymbol*>*>(); |
| 184 | |
| 185 | for (unsigned i = 0, e = Syms->size(); i != e; ++i) { |
| 186 | MCSymbol *Sym = (*Syms)[i]; |
| 187 | if (Sym->isDefined()) continue; // Ignore already emitted labels. |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 188 | |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 189 | // If the block is not yet defined, we need to emit it at the end of the |
| 190 | // function. Add the symbol to the DeletedAddrLabelsNeedingEmission list |
| 191 | // for the containing Function. Since the block is being deleted, its |
| 192 | // parent may already be removed, we have to get the function from |
| 193 | // 'Entry'. |
| 194 | DeletedAddrLabelsNeedingEmission[Entry.Fn].push_back(Sym); |
| 195 | } |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 196 | |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 197 | // The entry is deleted, free the memory associated with the symbol list. |
| 198 | delete Syms; |
| 199 | } |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | void MMIAddrLabelMap::UpdateForRAUWBlock(BasicBlock *Old, BasicBlock *New) { |
| 203 | // Get the entry for the RAUW'd block and remove it from our map. |
| 204 | AddrLabelSymEntry OldEntry = AddrLabelSymbols[Old]; |
| 205 | AddrLabelSymbols.erase(Old); |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 206 | assert(!OldEntry.Symbols.isNull() && "Didn't have a symbol, why a callback?"); |
| 207 | |
| 208 | AddrLabelSymEntry &NewEntry = AddrLabelSymbols[New]; |
| 209 | |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 210 | // If New is not address taken, just move our symbol over to it. |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 211 | if (NewEntry.Symbols.isNull()) { |
Chris Lattner | ea16ea5 | 2010-03-22 23:15:57 +0000 | [diff] [blame] | 212 | BBCallbacks[OldEntry.Index].setPtr(New); // Update the callback. |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 213 | NewEntry = OldEntry; // Set New's entry. |
| 214 | return; |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 215 | } |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 216 | |
| 217 | BBCallbacks[OldEntry.Index] = 0; // Update the callback. |
| 218 | |
| 219 | // Otherwise, we need to add the old symbol to the new block's set. If it is |
| 220 | // just a single entry, upgrade it to a symbol list. |
| 221 | if (MCSymbol *PrevSym = NewEntry.Symbols.dyn_cast<MCSymbol*>()) { |
| 222 | std::vector<MCSymbol*> *SymList = new std::vector<MCSymbol*>(); |
| 223 | SymList->push_back(PrevSym); |
| 224 | NewEntry.Symbols = SymList; |
| 225 | } |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 226 | |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 227 | std::vector<MCSymbol*> *SymList = |
| 228 | NewEntry.Symbols.get<std::vector<MCSymbol*>*>(); |
| 229 | |
| 230 | // If the old entry was a single symbol, add it. |
| 231 | if (MCSymbol *Sym = OldEntry.Symbols.dyn_cast<MCSymbol*>()) { |
| 232 | SymList->push_back(Sym); |
| 233 | return; |
| 234 | } |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 235 | |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 236 | // Otherwise, concatenate the list. |
| 237 | std::vector<MCSymbol*> *Syms =OldEntry.Symbols.get<std::vector<MCSymbol*>*>(); |
| 238 | SymList->insert(SymList->end(), Syms->begin(), Syms->end()); |
| 239 | delete Syms; |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | |
| 243 | void MMIAddrLabelMapCallbackPtr::deleted() { |
| 244 | Map->UpdateForDeletedBlock(cast<BasicBlock>(getValPtr())); |
| 245 | } |
| 246 | |
| 247 | void MMIAddrLabelMapCallbackPtr::allUsesReplacedWith(Value *V2) { |
| 248 | Map->UpdateForRAUWBlock(cast<BasicBlock>(getValPtr()), cast<BasicBlock>(V2)); |
| 249 | } |
| 250 | |
| 251 | |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 252 | //===----------------------------------------------------------------------===// |
Eric Christopher | cf29697 | 2009-08-26 21:27:09 +0000 | [diff] [blame] | 253 | |
Rafael Espindola | 89b9372 | 2010-12-10 07:39:47 +0000 | [diff] [blame] | 254 | MachineModuleInfo::MachineModuleInfo(const MCAsmInfo &MAI, |
Evan Cheng | 0e6a052 | 2011-07-18 20:57:22 +0000 | [diff] [blame] | 255 | const MCRegisterInfo &MRI, |
Evan Cheng | 203576a | 2011-07-20 19:50:42 +0000 | [diff] [blame] | 256 | const MCObjectFileInfo *MOFI) |
| 257 | : ImmutablePass(ID), Context(MAI, MRI, MOFI), |
Bill Wendling | 7d36534 | 2011-07-19 00:00:58 +0000 | [diff] [blame] | 258 | ObjFileMMI(0), CompactUnwindEncoding(0), CurCallSite(0), CallsEHReturn(0), |
Bill Wendling | a67dcea | 2011-07-18 23:38:40 +0000 | [diff] [blame] | 259 | CallsUnwindInit(0), DbgInfoAvailable(false), |
Michael J. Spencer | c9c137b | 2012-02-22 19:06:13 +0000 | [diff] [blame] | 260 | UsesVAFloatArgument(false) { |
Owen Anderson | 081c34b | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 261 | initializeMachineModuleInfoPass(*PassRegistry::getPassRegistry()); |
Eric Christopher | d44fff7 | 2009-08-26 21:30:49 +0000 | [diff] [blame] | 262 | // Always emit some info, by default "no personality" info. |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 263 | Personalities.push_back(NULL); |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 264 | AddrLabelSymbols = 0; |
Chris Lattner | 421ccd9 | 2010-04-06 00:51:52 +0000 | [diff] [blame] | 265 | TheModule = 0; |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 266 | } |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 267 | |
Chris Lattner | 11d53c1 | 2010-03-13 20:55:24 +0000 | [diff] [blame] | 268 | MachineModuleInfo::MachineModuleInfo() |
Evan Cheng | e76a33b | 2011-07-20 05:58:47 +0000 | [diff] [blame] | 269 | : ImmutablePass(ID), |
Evan Cheng | 203576a | 2011-07-20 19:50:42 +0000 | [diff] [blame] | 270 | Context(*(MCAsmInfo*)0, *(MCRegisterInfo*)0, (MCObjectFileInfo*)0) { |
Craig Topper | 5e25ee8 | 2012-02-05 08:31:47 +0000 | [diff] [blame] | 271 | llvm_unreachable("This MachineModuleInfo constructor should never be called, " |
| 272 | "MMI should always be explicitly constructed by " |
| 273 | "LLVMTargetMachine"); |
Chris Lattner | 11d53c1 | 2010-03-13 20:55:24 +0000 | [diff] [blame] | 274 | } |
| 275 | |
Chris Lattner | a70e2e3 | 2009-09-15 22:44:26 +0000 | [diff] [blame] | 276 | MachineModuleInfo::~MachineModuleInfo() { |
Chris Lattner | f185455 | 2009-09-16 05:26:00 +0000 | [diff] [blame] | 277 | delete ObjFileMMI; |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 278 | |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 279 | // FIXME: Why isn't doFinalization being called?? |
| 280 | //assert(AddrLabelSymbols == 0 && "doFinalization not called"); |
| 281 | delete AddrLabelSymbols; |
| 282 | AddrLabelSymbols = 0; |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 283 | } |
| 284 | |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 285 | /// doInitialization - Initialize the state for a new module. |
Jim Laskey | b2efb85 | 2006-01-04 22:28:25 +0000 | [diff] [blame] | 286 | /// |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 287 | bool MachineModuleInfo::doInitialization() { |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 288 | assert(AddrLabelSymbols == 0 && "Improperly initialized"); |
Jim Laskey | b2efb85 | 2006-01-04 22:28:25 +0000 | [diff] [blame] | 289 | return false; |
Jim Laskey | 6af5681 | 2006-01-04 13:36:38 +0000 | [diff] [blame] | 290 | } |
| 291 | |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 292 | /// doFinalization - Tear down the state after completion of a module. |
Jim Laskey | b2efb85 | 2006-01-04 22:28:25 +0000 | [diff] [blame] | 293 | /// |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 294 | bool MachineModuleInfo::doFinalization() { |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 295 | delete AddrLabelSymbols; |
| 296 | AddrLabelSymbols = 0; |
Jim Laskey | b2efb85 | 2006-01-04 22:28:25 +0000 | [diff] [blame] | 297 | return false; |
| 298 | } |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 299 | |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 300 | /// EndFunction - Discard function meta information. |
Jim Laskey | 4188699 | 2006-04-07 16:34:46 +0000 | [diff] [blame] | 301 | /// |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 302 | void MachineModuleInfo::EndFunction() { |
Jim Laskey | 4188699 | 2006-04-07 16:34:46 +0000 | [diff] [blame] | 303 | // Clean up frame info. |
Jim Laskey | 4188699 | 2006-04-07 16:34:46 +0000 | [diff] [blame] | 304 | FrameMoves.clear(); |
Eric Christopher | cf29697 | 2009-08-26 21:27:09 +0000 | [diff] [blame] | 305 | |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 306 | // Clean up exception info. |
| 307 | LandingPads.clear(); |
Jim Grosbach | ca752c9 | 2010-01-28 01:45:32 +0000 | [diff] [blame] | 308 | CallSiteMap.clear(); |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 309 | TypeInfos.clear(); |
Duncan Sands | 73ef58a | 2007-06-02 16:53:42 +0000 | [diff] [blame] | 310 | FilterIds.clear(); |
Duncan Sands | 14da32a | 2007-07-05 15:15:01 +0000 | [diff] [blame] | 311 | FilterEnds.clear(); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 312 | CallsEHReturn = 0; |
| 313 | CallsUnwindInit = 0; |
Bill Wendling | 7d36534 | 2011-07-19 00:00:58 +0000 | [diff] [blame] | 314 | CompactUnwindEncoding = 0; |
Devang Patel | 85d29e2 | 2009-10-08 20:41:17 +0000 | [diff] [blame] | 315 | VariableDbgInfo.clear(); |
Jim Laskey | 4188699 | 2006-04-07 16:34:46 +0000 | [diff] [blame] | 316 | } |
| 317 | |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 318 | /// AnalyzeModule - Scan the module for global debug information. |
| 319 | /// |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 320 | void MachineModuleInfo::AnalyzeModule(const Module &M) { |
Chris Lattner | 401e10c | 2009-07-20 06:14:25 +0000 | [diff] [blame] | 321 | // Insert functions in the llvm.used array (but not llvm.compiler.used) into |
| 322 | // UsedFunctions. |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 323 | const GlobalVariable *GV = M.getGlobalVariable("llvm.used"); |
Dale Johannesen | 48ae02f | 2008-01-16 19:59:28 +0000 | [diff] [blame] | 324 | if (!GV || !GV->hasInitializer()) return; |
| 325 | |
| 326 | // Should be an array of 'i8*'. |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 327 | const ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer()); |
Dale Johannesen | 48ae02f | 2008-01-16 19:59:28 +0000 | [diff] [blame] | 328 | if (InitList == 0) return; |
| 329 | |
Chris Lattner | 1d5c493 | 2009-07-20 06:05:50 +0000 | [diff] [blame] | 330 | for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 331 | if (const Function *F = |
Chris Lattner | 1d5c493 | 2009-07-20 06:05:50 +0000 | [diff] [blame] | 332 | dyn_cast<Function>(InitList->getOperand(i)->stripPointerCasts())) |
| 333 | UsedFunctions.insert(F); |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 334 | } |
| 335 | |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 336 | //===- Address of Block Management ----------------------------------------===// |
| 337 | |
| 338 | |
Chris Lattner | 3b9d621 | 2010-03-14 17:53:23 +0000 | [diff] [blame] | 339 | /// getAddrLabelSymbol - Return the symbol to be used for the specified basic |
| 340 | /// block when its address is taken. This cannot be its normal LBB label |
| 341 | /// because the block may be accessed outside its containing function. |
| 342 | MCSymbol *MachineModuleInfo::getAddrLabelSymbol(const BasicBlock *BB) { |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 343 | // Lazily create AddrLabelSymbols. |
| 344 | if (AddrLabelSymbols == 0) |
| 345 | AddrLabelSymbols = new MMIAddrLabelMap(Context); |
| 346 | return AddrLabelSymbols->getAddrLabelSymbol(const_cast<BasicBlock*>(BB)); |
Chris Lattner | 3b9d621 | 2010-03-14 17:53:23 +0000 | [diff] [blame] | 347 | } |
| 348 | |
Chris Lattner | 999aee2 | 2010-03-16 00:29:39 +0000 | [diff] [blame] | 349 | /// getAddrLabelSymbolToEmit - Return the symbol to be used for the specified |
| 350 | /// basic block when its address is taken. If other blocks were RAUW'd to |
| 351 | /// this one, we may have to emit them as well, return the whole set. |
| 352 | std::vector<MCSymbol*> MachineModuleInfo:: |
| 353 | getAddrLabelSymbolToEmit(const BasicBlock *BB) { |
| 354 | // Lazily create AddrLabelSymbols. |
| 355 | if (AddrLabelSymbols == 0) |
| 356 | AddrLabelSymbols = new MMIAddrLabelMap(Context); |
| 357 | return AddrLabelSymbols->getAddrLabelSymbolToEmit(const_cast<BasicBlock*>(BB)); |
| 358 | } |
| 359 | |
| 360 | |
Chris Lattner | 9cc0da9 | 2010-03-15 20:39:00 +0000 | [diff] [blame] | 361 | /// takeDeletedSymbolsForFunction - If the specified function has had any |
| 362 | /// references to address-taken blocks generated, but the block got deleted, |
| 363 | /// return the symbol now so we can emit it. This prevents emitting a |
| 364 | /// reference to a symbol that has no definition. |
| 365 | void MachineModuleInfo:: |
| 366 | takeDeletedSymbolsForFunction(const Function *F, |
| 367 | std::vector<MCSymbol*> &Result) { |
| 368 | // If no blocks have had their addresses taken, we're done. |
| 369 | if (AddrLabelSymbols == 0) return; |
| 370 | return AddrLabelSymbols-> |
| 371 | takeDeletedSymbolsForFunction(const_cast<Function*>(F), Result); |
| 372 | } |
Chris Lattner | 3b9d621 | 2010-03-14 17:53:23 +0000 | [diff] [blame] | 373 | |
Chris Lattner | 0220ba7 | 2010-03-15 19:09:43 +0000 | [diff] [blame] | 374 | //===- EH -----------------------------------------------------------------===// |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 375 | |
| 376 | /// getOrCreateLandingPadInfo - Find or create an LandingPadInfo for the |
| 377 | /// specified MachineBasicBlock. |
Bill Wendling | 10fff60 | 2008-07-03 22:53:42 +0000 | [diff] [blame] | 378 | LandingPadInfo &MachineModuleInfo::getOrCreateLandingPadInfo |
| 379 | (MachineBasicBlock *LandingPad) { |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 380 | unsigned N = LandingPads.size(); |
| 381 | for (unsigned i = 0; i < N; ++i) { |
Jim Laskey | 59e8434 | 2007-03-01 20:25:32 +0000 | [diff] [blame] | 382 | LandingPadInfo &LP = LandingPads[i]; |
| 383 | if (LP.LandingPadBlock == LandingPad) |
| 384 | return LP; |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 385 | } |
Eric Christopher | cf29697 | 2009-08-26 21:27:09 +0000 | [diff] [blame] | 386 | |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 387 | LandingPads.push_back(LandingPadInfo(LandingPad)); |
| 388 | return LandingPads[N]; |
| 389 | } |
| 390 | |
| 391 | /// addInvoke - Provide the begin and end labels of an invoke style call and |
| 392 | /// associate it with a try landing pad block. |
| 393 | void MachineModuleInfo::addInvoke(MachineBasicBlock *LandingPad, |
Chris Lattner | 1611273 | 2010-03-14 01:41:15 +0000 | [diff] [blame] | 394 | MCSymbol *BeginLabel, MCSymbol *EndLabel) { |
Jim Laskey | 59e8434 | 2007-03-01 20:25:32 +0000 | [diff] [blame] | 395 | LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); |
Anton Korobeynikov | eeb37e0 | 2007-05-10 22:34:59 +0000 | [diff] [blame] | 396 | LP.BeginLabels.push_back(BeginLabel); |
| 397 | LP.EndLabels.push_back(EndLabel); |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 398 | } |
| 399 | |
| 400 | /// addLandingPad - Provide the label of a try LandingPad block. |
| 401 | /// |
Chris Lattner | 7561d48 | 2010-03-14 02:33:54 +0000 | [diff] [blame] | 402 | MCSymbol *MachineModuleInfo::addLandingPad(MachineBasicBlock *LandingPad) { |
Chris Lattner | 63d7836 | 2010-03-14 08:36:50 +0000 | [diff] [blame] | 403 | MCSymbol *LandingPadLabel = Context.CreateTempSymbol(); |
Jim Laskey | 59e8434 | 2007-03-01 20:25:32 +0000 | [diff] [blame] | 404 | LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); |
Eric Christopher | cf29697 | 2009-08-26 21:27:09 +0000 | [diff] [blame] | 405 | LP.LandingPadLabel = LandingPadLabel; |
Chris Lattner | 7561d48 | 2010-03-14 02:33:54 +0000 | [diff] [blame] | 406 | return LandingPadLabel; |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | /// addPersonality - Provide the personality function for the exception |
| 410 | /// information. |
| 411 | void MachineModuleInfo::addPersonality(MachineBasicBlock *LandingPad, |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 412 | const Function *Personality) { |
Jim Laskey | 59e8434 | 2007-03-01 20:25:32 +0000 | [diff] [blame] | 413 | LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 414 | LP.Personality = Personality; |
Anton Korobeynikov | 0ff3ca4 | 2007-05-12 22:36:25 +0000 | [diff] [blame] | 415 | |
Bill Wendling | 10fff60 | 2008-07-03 22:53:42 +0000 | [diff] [blame] | 416 | for (unsigned i = 0; i < Personalities.size(); ++i) |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 417 | if (Personalities[i] == Personality) |
| 418 | return; |
Eric Christopher | cf29697 | 2009-08-26 21:27:09 +0000 | [diff] [blame] | 419 | |
Eric Christopher | d44fff7 | 2009-08-26 21:30:49 +0000 | [diff] [blame] | 420 | // If this is the first personality we're adding go |
| 421 | // ahead and add it at the beginning. |
| 422 | if (Personalities[0] == NULL) |
| 423 | Personalities[0] = Personality; |
| 424 | else |
| 425 | Personalities.push_back(Personality); |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 426 | } |
| 427 | |
| 428 | /// addCatchTypeInfo - Provide the catch typeinfo for a landing pad. |
| 429 | /// |
Bill Wendling | 1ddaa9c | 2011-07-28 21:25:33 +0000 | [diff] [blame] | 430 | void MachineModuleInfo:: |
| 431 | addCatchTypeInfo(MachineBasicBlock *LandingPad, |
| 432 | ArrayRef<const GlobalVariable *> TyInfo) { |
Jim Laskey | 59e8434 | 2007-03-01 20:25:32 +0000 | [diff] [blame] | 433 | LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 434 | for (unsigned N = TyInfo.size(); N; --N) |
Jim Laskey | 59e8434 | 2007-03-01 20:25:32 +0000 | [diff] [blame] | 435 | LP.TypeIds.push_back(getTypeIDFor(TyInfo[N - 1])); |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 436 | } |
Duncan Sands | 73ef58a | 2007-06-02 16:53:42 +0000 | [diff] [blame] | 437 | |
| 438 | /// addFilterTypeInfo - Provide the filter typeinfo for a landing pad. |
Jim Laskey | 59e8434 | 2007-03-01 20:25:32 +0000 | [diff] [blame] | 439 | /// |
Bill Wendling | 1ddaa9c | 2011-07-28 21:25:33 +0000 | [diff] [blame] | 440 | void MachineModuleInfo:: |
| 441 | addFilterTypeInfo(MachineBasicBlock *LandingPad, |
| 442 | ArrayRef<const GlobalVariable *> TyInfo) { |
Jim Laskey | 59e8434 | 2007-03-01 20:25:32 +0000 | [diff] [blame] | 443 | LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); |
Bill Wendling | 4925567 | 2008-07-07 21:41:57 +0000 | [diff] [blame] | 444 | std::vector<unsigned> IdsInFilter(TyInfo.size()); |
Bill Wendling | 10fff60 | 2008-07-03 22:53:42 +0000 | [diff] [blame] | 445 | for (unsigned I = 0, E = TyInfo.size(); I != E; ++I) |
Duncan Sands | 73ef58a | 2007-06-02 16:53:42 +0000 | [diff] [blame] | 446 | IdsInFilter[I] = getTypeIDFor(TyInfo[I]); |
| 447 | LP.TypeIds.push_back(getFilterIDFor(IdsInFilter)); |
Jim Laskey | 59e8434 | 2007-03-01 20:25:32 +0000 | [diff] [blame] | 448 | } |
| 449 | |
Duncan Sands | 6590b04 | 2007-08-27 15:47:50 +0000 | [diff] [blame] | 450 | /// addCleanup - Add a cleanup action for a landing pad. |
| 451 | /// |
| 452 | void MachineModuleInfo::addCleanup(MachineBasicBlock *LandingPad) { |
| 453 | LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); |
| 454 | LP.TypeIds.push_back(0); |
| 455 | } |
| 456 | |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 457 | /// TidyLandingPads - Remap landing pad labels and remove any deleted landing |
| 458 | /// pads. |
Bill Wendling | 47639fc | 2010-04-16 08:46:10 +0000 | [diff] [blame] | 459 | void MachineModuleInfo::TidyLandingPads(DenseMap<MCSymbol*, uintptr_t> *LPMap) { |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 460 | for (unsigned i = 0; i != LandingPads.size(); ) { |
| 461 | LandingPadInfo &LandingPad = LandingPads[i]; |
Bill Wendling | 47639fc | 2010-04-16 08:46:10 +0000 | [diff] [blame] | 462 | if (LandingPad.LandingPadLabel && |
| 463 | !LandingPad.LandingPadLabel->isDefined() && |
| 464 | (!LPMap || (*LPMap)[LandingPad.LandingPadLabel] == 0)) |
Chris Lattner | a34ec229 | 2010-03-09 01:51:43 +0000 | [diff] [blame] | 465 | LandingPad.LandingPadLabel = 0; |
Anton Korobeynikov | eeb37e0 | 2007-05-10 22:34:59 +0000 | [diff] [blame] | 466 | |
Anton Korobeynikov | 070280e | 2007-05-23 11:08:31 +0000 | [diff] [blame] | 467 | // Special case: we *should* emit LPs with null LP MBB. This indicates |
Duncan Sands | 481dc72 | 2007-12-19 07:36:31 +0000 | [diff] [blame] | 468 | // "nounwind" case. |
Anton Korobeynikov | 070280e | 2007-05-23 11:08:31 +0000 | [diff] [blame] | 469 | if (!LandingPad.LandingPadLabel && LandingPad.LandingPadBlock) { |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 470 | LandingPads.erase(LandingPads.begin() + i); |
| 471 | continue; |
| 472 | } |
Duncan Sands | 57810cd | 2007-09-05 11:27:52 +0000 | [diff] [blame] | 473 | |
Chris Lattner | 1611273 | 2010-03-14 01:41:15 +0000 | [diff] [blame] | 474 | for (unsigned j = 0, e = LandingPads[i].BeginLabels.size(); j != e; ++j) { |
| 475 | MCSymbol *BeginLabel = LandingPad.BeginLabels[j]; |
| 476 | MCSymbol *EndLabel = LandingPad.EndLabels[j]; |
Bill Wendling | 47639fc | 2010-04-16 08:46:10 +0000 | [diff] [blame] | 477 | if ((BeginLabel->isDefined() || |
| 478 | (LPMap && (*LPMap)[BeginLabel] != 0)) && |
| 479 | (EndLabel->isDefined() || |
| 480 | (LPMap && (*LPMap)[EndLabel] != 0))) continue; |
Michael J. Spencer | e70c526 | 2010-10-16 08:25:21 +0000 | [diff] [blame] | 481 | |
Chris Lattner | 1611273 | 2010-03-14 01:41:15 +0000 | [diff] [blame] | 482 | LandingPad.BeginLabels.erase(LandingPad.BeginLabels.begin() + j); |
| 483 | LandingPad.EndLabels.erase(LandingPad.EndLabels.begin() + j); |
| 484 | --j, --e; |
Anton Korobeynikov | eeb37e0 | 2007-05-10 22:34:59 +0000 | [diff] [blame] | 485 | } |
Duncan Sands | 57810cd | 2007-09-05 11:27:52 +0000 | [diff] [blame] | 486 | |
| 487 | // Remove landing pads with no try-ranges. |
Dan Gohman | 3035959 | 2008-01-29 13:02:09 +0000 | [diff] [blame] | 488 | if (LandingPads[i].BeginLabels.empty()) { |
Duncan Sands | 57810cd | 2007-09-05 11:27:52 +0000 | [diff] [blame] | 489 | LandingPads.erase(LandingPads.begin() + i); |
| 490 | continue; |
| 491 | } |
| 492 | |
| 493 | // If there is no landing pad, ensure that the list of typeids is empty. |
| 494 | // If the only typeid is a cleanup, this is the same as having no typeids. |
| 495 | if (!LandingPad.LandingPadBlock || |
| 496 | (LandingPad.TypeIds.size() == 1 && !LandingPad.TypeIds[0])) |
| 497 | LandingPad.TypeIds.clear(); |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 498 | ++i; |
| 499 | } |
| 500 | } |
| 501 | |
Bill Wendling | 84fb7dd | 2011-10-05 22:20:38 +0000 | [diff] [blame] | 502 | /// setCallSiteLandingPad - Map the landing pad's EH symbol to the call site |
| 503 | /// indexes. |
| 504 | void MachineModuleInfo::setCallSiteLandingPad(MCSymbol *Sym, |
| 505 | ArrayRef<unsigned> Sites) { |
Benjamin Kramer | fc52a52 | 2012-02-14 10:29:27 +0000 | [diff] [blame] | 506 | LPadToCallSiteMap[Sym].append(Sites.begin(), Sites.end()); |
Bill Wendling | 84fb7dd | 2011-10-05 22:20:38 +0000 | [diff] [blame] | 507 | } |
| 508 | |
Eric Christopher | cf29697 | 2009-08-26 21:27:09 +0000 | [diff] [blame] | 509 | /// getTypeIDFor - Return the type id for the specified typeinfo. This is |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 510 | /// function wide. |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 511 | unsigned MachineModuleInfo::getTypeIDFor(const GlobalVariable *TI) { |
Bill Wendling | 10fff60 | 2008-07-03 22:53:42 +0000 | [diff] [blame] | 512 | for (unsigned i = 0, N = TypeInfos.size(); i != N; ++i) |
| 513 | if (TypeInfos[i] == TI) return i + 1; |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 514 | |
| 515 | TypeInfos.push_back(TI); |
| 516 | return TypeInfos.size(); |
| 517 | } |
| 518 | |
Duncan Sands | 73ef58a | 2007-06-02 16:53:42 +0000 | [diff] [blame] | 519 | /// getFilterIDFor - Return the filter id for the specified typeinfos. This is |
| 520 | /// function wide. |
Bill Wendling | 914c970 | 2008-06-27 01:27:56 +0000 | [diff] [blame] | 521 | int MachineModuleInfo::getFilterIDFor(std::vector<unsigned> &TyIds) { |
Duncan Sands | 14da32a | 2007-07-05 15:15:01 +0000 | [diff] [blame] | 522 | // If the new filter coincides with the tail of an existing filter, then |
| 523 | // re-use the existing filter. Folding filters more than this requires |
| 524 | // re-ordering filters and/or their elements - probably not worth it. |
| 525 | for (std::vector<unsigned>::iterator I = FilterEnds.begin(), |
| 526 | E = FilterEnds.end(); I != E; ++I) { |
Bill Wendling | 914c970 | 2008-06-27 01:27:56 +0000 | [diff] [blame] | 527 | unsigned i = *I, j = TyIds.size(); |
Duncan Sands | 14da32a | 2007-07-05 15:15:01 +0000 | [diff] [blame] | 528 | |
| 529 | while (i && j) |
| 530 | if (FilterIds[--i] != TyIds[--j]) |
| 531 | goto try_next; |
| 532 | |
| 533 | if (!j) |
| 534 | // The new filter coincides with range [i, end) of the existing filter. |
| 535 | return -(1 + i); |
Bill Wendling | 914c970 | 2008-06-27 01:27:56 +0000 | [diff] [blame] | 536 | |
Duncan Sands | 14da32a | 2007-07-05 15:15:01 +0000 | [diff] [blame] | 537 | try_next:; |
| 538 | } |
| 539 | |
| 540 | // Add the new filter. |
Bill Wendling | 914c970 | 2008-06-27 01:27:56 +0000 | [diff] [blame] | 541 | int FilterID = -(1 + FilterIds.size()); |
| 542 | FilterIds.reserve(FilterIds.size() + TyIds.size() + 1); |
Benjamin Kramer | fc52a52 | 2012-02-14 10:29:27 +0000 | [diff] [blame] | 543 | FilterIds.insert(FilterIds.end(), TyIds.begin(), TyIds.end()); |
Bill Wendling | 914c970 | 2008-06-27 01:27:56 +0000 | [diff] [blame] | 544 | FilterEnds.push_back(FilterIds.size()); |
Duncan Sands | 73ef58a | 2007-06-02 16:53:42 +0000 | [diff] [blame] | 545 | FilterIds.push_back(0); // terminator |
| 546 | return FilterID; |
| 547 | } |
| 548 | |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 549 | /// getPersonality - Return the personality function for the current function. |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 550 | const Function *MachineModuleInfo::getPersonality() const { |
Anton Korobeynikov | 0ff3ca4 | 2007-05-12 22:36:25 +0000 | [diff] [blame] | 551 | // FIXME: Until PR1414 will be fixed, we're using 1 personality function per |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 552 | // function |
| 553 | return !LandingPads.empty() ? LandingPads[0].Personality : NULL; |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 554 | } |
| 555 | |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 556 | /// getPersonalityIndex - Return unique index for current personality |
Eric Christopher | 5e365e2 | 2009-08-26 21:44:57 +0000 | [diff] [blame] | 557 | /// function. NULL/first personality function should always get zero index. |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 558 | unsigned MachineModuleInfo::getPersonalityIndex() const { |
Anton Korobeynikov | 070280e | 2007-05-23 11:08:31 +0000 | [diff] [blame] | 559 | const Function* Personality = NULL; |
Eric Christopher | cf29697 | 2009-08-26 21:27:09 +0000 | [diff] [blame] | 560 | |
Anton Korobeynikov | 070280e | 2007-05-23 11:08:31 +0000 | [diff] [blame] | 561 | // Scan landing pads. If there is at least one non-NULL personality - use it. |
Bill Wendling | 150a371 | 2012-02-13 23:45:26 +0000 | [diff] [blame] | 562 | for (unsigned i = 0, e = LandingPads.size(); i != e; ++i) |
Anton Korobeynikov | 070280e | 2007-05-23 11:08:31 +0000 | [diff] [blame] | 563 | if (LandingPads[i].Personality) { |
| 564 | Personality = LandingPads[i].Personality; |
| 565 | break; |
| 566 | } |
Eric Christopher | cf29697 | 2009-08-26 21:27:09 +0000 | [diff] [blame] | 567 | |
Bill Wendling | 150a371 | 2012-02-13 23:45:26 +0000 | [diff] [blame] | 568 | for (unsigned i = 0, e = Personalities.size(); i < e; ++i) { |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 569 | if (Personalities[i] == Personality) |
| 570 | return i; |
Bill Wendling | 10fff60 | 2008-07-03 22:53:42 +0000 | [diff] [blame] | 571 | } |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 572 | |
Eric Christopher | 5e365e2 | 2009-08-26 21:44:57 +0000 | [diff] [blame] | 573 | // This will happen if the current personality function is |
| 574 | // in the zero index. |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 575 | return 0; |
| 576 | } |