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