blob: af48e9ebb5b33be39412b616d97d7012eb64aeb6 [file] [log] [blame]
Jim Laskey6da18642007-01-26 21:38:26 +00001//===-- llvm/CodeGen/MachineModuleInfo.cpp ----------------------*- C++ -*-===//
Jim Laskey6af56812006-01-04 13:36:38 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Jim Laskey6af56812006-01-04 13:36:38 +00007//
8//===----------------------------------------------------------------------===//
Jim Laskey6af56812006-01-04 13:36:38 +00009
Jim Laskey6da18642007-01-26 21:38:26 +000010#include "llvm/CodeGen/MachineModuleInfo.h"
Jim Laskey6af56812006-01-04 13:36:38 +000011
Jim Laskeyb3e789a2006-01-26 20:21:46 +000012#include "llvm/Constants.h"
Chris Lattner16112732010-03-14 01:41:15 +000013#include "llvm/DerivedTypes.h"
14#include "llvm/GlobalVariable.h"
15#include "llvm/Intrinsics.h"
16#include "llvm/Instructions.h"
17#include "llvm/Module.h"
Evan Cheng0ff39b32008-06-30 07:31:25 +000018#include "llvm/Analysis/ValueTracking.h"
Jim Laskey9d4209f2006-11-07 19:33:46 +000019#include "llvm/CodeGen/MachineFunctionPass.h"
20#include "llvm/CodeGen/MachineFunction.h"
Evan Cheng8b56a902008-09-22 22:21:38 +000021#include "llvm/CodeGen/Passes.h"
Jim Laskey9d4209f2006-11-07 19:33:46 +000022#include "llvm/Target/TargetInstrInfo.h"
23#include "llvm/Target/TargetMachine.h"
Jim Laskeyc1c47c32007-01-29 23:40:33 +000024#include "llvm/Target/TargetOptions.h"
Chris Lattner16112732010-03-14 01:41:15 +000025#include "llvm/MC/MCSymbol.h"
Chris Lattner999aee22010-03-16 00:29:39 +000026#include "llvm/ADT/PointerUnion.h"
Jim Laskeyb3e789a2006-01-26 20:21:46 +000027#include "llvm/Support/Dwarf.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000028#include "llvm/Support/ErrorHandling.h"
Jim Laskey6af56812006-01-04 13:36:38 +000029using namespace llvm;
Jim Laskey9c4447a2006-03-01 20:39:36 +000030using namespace llvm::dwarf;
Jim Laskey6af56812006-01-04 13:36:38 +000031
32// Handle the Pass registration stuff necessary to use TargetData's.
Dan Gohman844731a2008-05-13 00:00:25 +000033static RegisterPass<MachineModuleInfo>
Chris Lattner11d53c12010-03-13 20:55:24 +000034X("machinemoduleinfo", "Machine Module Information");
Devang Patel19974732007-05-03 01:11:54 +000035char MachineModuleInfo::ID = 0;
Jim Laskey063e7652006-01-17 17:31:53 +000036
Chris Lattnera70e2e32009-09-15 22:44:26 +000037// Out of line virtual method.
38MachineModuleInfoImpl::~MachineModuleInfoImpl() {}
39
Chris Lattner0220ba72010-03-15 19:09:43 +000040namespace llvm {
41class MMIAddrLabelMapCallbackPtr : CallbackVH {
42 MMIAddrLabelMap *Map;
43public:
44 MMIAddrLabelMapCallbackPtr() : Map(0) {}
45 MMIAddrLabelMapCallbackPtr(Value *V) : CallbackVH(V), Map(0) {}
46
47 void setMap(MMIAddrLabelMap *map) { Map = map; }
48
49 virtual void deleted();
50 virtual void allUsesReplacedWith(Value *V2);
51};
52
53class MMIAddrLabelMap {
54 MCContext &Context;
55 struct AddrLabelSymEntry {
Chris Lattner999aee22010-03-16 00:29:39 +000056 /// 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;
59
Chris Lattner9cc0da92010-03-15 20:39:00 +000060 Function *Fn; // The containing function of the BasicBlock.
61 unsigned Index; // The index in BBCallbacks for the BasicBlock.
Chris Lattner0220ba72010-03-15 19:09:43 +000062 };
63
64 DenseMap<AssertingVH<BasicBlock>, AddrLabelSymEntry> AddrLabelSymbols;
65
Chris Lattner9cc0da92010-03-15 20:39:00 +000066 /// 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 Lattner0220ba72010-03-15 19:09:43 +000068 std::vector<MMIAddrLabelMapCallbackPtr> BBCallbacks;
Chris Lattner9cc0da92010-03-15 20:39:00 +000069
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 Lattner0220ba72010-03-15 19:09:43 +000076public:
77
78 MMIAddrLabelMap(MCContext &context) : Context(context) {}
Chris Lattner9cc0da92010-03-15 20:39:00 +000079 ~MMIAddrLabelMap() {
80 assert(DeletedAddrLabelsNeedingEmission.empty() &&
81 "Some labels for deleted blocks never got emitted");
Chris Lattner999aee22010-03-16 00:29:39 +000082
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 Lattner9cc0da92010-03-15 20:39:00 +000088 }
Chris Lattner0220ba72010-03-15 19:09:43 +000089
Chris Lattner999aee22010-03-16 00:29:39 +000090 MCSymbol *getAddrLabelSymbol(BasicBlock *BB);
91 std::vector<MCSymbol*> getAddrLabelSymbolToEmit(BasicBlock *BB);
92
Chris Lattner9cc0da92010-03-15 20:39:00 +000093 void takeDeletedSymbolsForFunction(Function *F,
94 std::vector<MCSymbol*> &Result);
95
Chris Lattner0220ba72010-03-15 19:09:43 +000096 void UpdateForDeletedBlock(BasicBlock *BB);
97 void UpdateForRAUWBlock(BasicBlock *Old, BasicBlock *New);
98};
99}
100
101MCSymbol *MMIAddrLabelMap::getAddrLabelSymbol(BasicBlock *BB) {
102 assert(BB->hasAddressTaken() &&
103 "Shouldn't get label for block without address taken");
104 AddrLabelSymEntry &Entry = AddrLabelSymbols[BB];
105
106 // If we already had an entry for this block, just return it.
Chris Lattner999aee22010-03-16 00:29:39 +0000107 if (!Entry.Symbols.isNull()) {
Chris Lattner9cc0da92010-03-15 20:39:00 +0000108 assert(BB->getParent() == Entry.Fn && "Parent changed");
Chris Lattner999aee22010-03-16 00:29:39 +0000109 if (Entry.Symbols.is<MCSymbol*>())
110 return Entry.Symbols.get<MCSymbol*>();
111 return (*Entry.Symbols.get<std::vector<MCSymbol*>*>())[0];
Chris Lattner9cc0da92010-03-15 20:39:00 +0000112 }
Chris Lattner0220ba72010-03-15 19:09:43 +0000113
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 Lattner9cc0da92010-03-15 20:39:00 +0000119 Entry.Fn = BB->getParent();
Chris Lattner999aee22010-03-16 00:29:39 +0000120 MCSymbol *Result = Context.CreateTempSymbol();
121 Entry.Symbols = Result;
122 return Result;
Chris Lattner0220ba72010-03-15 19:09:43 +0000123}
124
Chris Lattner999aee22010-03-16 00:29:39 +0000125std::vector<MCSymbol*>
126MMIAddrLabelMap::getAddrLabelSymbolToEmit(BasicBlock *BB) {
127 assert(BB->hasAddressTaken() &&
128 "Shouldn't get label for block without address taken");
129 AddrLabelSymEntry &Entry = AddrLabelSymbols[BB];
130
131 std::vector<MCSymbol*> Result;
132
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 Lattner9cc0da92010-03-15 20:39:00 +0000144/// takeDeletedSymbolsForFunction - If we have any deleted symbols for F, return
145/// them.
146void MMIAddrLabelMap::
147takeDeletedSymbolsForFunction(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;
153
154 // Otherwise, take the list.
155 std::swap(Result, I->second);
156 DeletedAddrLabelsNeedingEmission.erase(I);
157}
158
159
Chris Lattner0220ba72010-03-15 19:09:43 +0000160void 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 Lattner999aee22010-03-16 00:29:39 +0000166 assert(!Entry.Symbols.isNull() && "Didn't have a symbol, why a callback?");
Chris Lattner0220ba72010-03-15 19:09:43 +0000167 BBCallbacks[Entry.Index] = 0; // Clear the callback.
168
Chris Lattner9cc0da92010-03-15 20:39:00 +0000169 assert((BB->getParent() == 0 || BB->getParent() == Entry.Fn) &&
170 "Block/parent mismatch");
Chris Lattner999aee22010-03-16 00:29:39 +0000171
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;
Chris Lattner9cc0da92010-03-15 20:39:00 +0000176
Chris Lattner999aee22010-03-16 00:29:39 +0000177 // 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.
188
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 }
196
197 // The entry is deleted, free the memory associated with the symbol list.
198 delete Syms;
199 }
Chris Lattner0220ba72010-03-15 19:09:43 +0000200}
201
202void 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 Lattner999aee22010-03-16 00:29:39 +0000206 assert(!OldEntry.Symbols.isNull() && "Didn't have a symbol, why a callback?");
207
208 AddrLabelSymEntry &NewEntry = AddrLabelSymbols[New];
209
Chris Lattner0220ba72010-03-15 19:09:43 +0000210 // If New is not address taken, just move our symbol over to it.
Chris Lattner999aee22010-03-16 00:29:39 +0000211 if (NewEntry.Symbols.isNull()) {
Chris Lattner0220ba72010-03-15 19:09:43 +0000212 BBCallbacks[OldEntry.Index] = New; // Update the callback.
Chris Lattner999aee22010-03-16 00:29:39 +0000213 NewEntry = OldEntry; // Set New's entry.
214 return;
Chris Lattner0220ba72010-03-15 19:09:43 +0000215 }
Chris Lattner999aee22010-03-16 00:29:39 +0000216
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 }
226
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 }
235
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 Lattner0220ba72010-03-15 19:09:43 +0000240}
241
242
243void MMIAddrLabelMapCallbackPtr::deleted() {
244 Map->UpdateForDeletedBlock(cast<BasicBlock>(getValPtr()));
245}
246
247void MMIAddrLabelMapCallbackPtr::allUsesReplacedWith(Value *V2) {
248 Map->UpdateForRAUWBlock(cast<BasicBlock>(getValPtr()), cast<BasicBlock>(V2));
249}
250
251
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000252//===----------------------------------------------------------------------===//
Eric Christophercf296972009-08-26 21:27:09 +0000253
Chris Lattner11d53c12010-03-13 20:55:24 +0000254MachineModuleInfo::MachineModuleInfo(const MCAsmInfo &MAI)
255: ImmutablePass(&ID), Context(MAI),
Chris Lattner63d78362010-03-14 08:36:50 +0000256 ObjFileMMI(0),
Chris Lattner18589de2010-03-14 02:24:55 +0000257 CurCallSite(0), CallsEHReturn(0), CallsUnwindInit(0), DbgInfoAvailable(false){
Eric Christopherd44fff72009-08-26 21:30:49 +0000258 // Always emit some info, by default "no personality" info.
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000259 Personalities.push_back(NULL);
Chris Lattner0220ba72010-03-15 19:09:43 +0000260 AddrLabelSymbols = 0;
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000261}
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000262
Chris Lattner11d53c12010-03-13 20:55:24 +0000263MachineModuleInfo::MachineModuleInfo()
264: ImmutablePass(&ID), Context(*(MCAsmInfo*)0) {
265 assert(0 && "This MachineModuleInfo constructor should never be called, MMI "
266 "should always be explicitly constructed by LLVMTargetMachine");
267 abort();
268}
269
Chris Lattnera70e2e32009-09-15 22:44:26 +0000270MachineModuleInfo::~MachineModuleInfo() {
Chris Lattnerf1854552009-09-16 05:26:00 +0000271 delete ObjFileMMI;
Chris Lattner0220ba72010-03-15 19:09:43 +0000272
273 // FIXME: Why isn't doFinalization being called??
274 //assert(AddrLabelSymbols == 0 && "doFinalization not called");
275 delete AddrLabelSymbols;
276 AddrLabelSymbols = 0;
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000277}
278
Jim Laskey6da18642007-01-26 21:38:26 +0000279/// doInitialization - Initialize the state for a new module.
Jim Laskeyb2efb852006-01-04 22:28:25 +0000280///
Jim Laskey6da18642007-01-26 21:38:26 +0000281bool MachineModuleInfo::doInitialization() {
Chris Lattner0220ba72010-03-15 19:09:43 +0000282 assert(AddrLabelSymbols == 0 && "Improperly initialized");
Jim Laskeyb2efb852006-01-04 22:28:25 +0000283 return false;
Jim Laskey6af56812006-01-04 13:36:38 +0000284}
285
Jim Laskey6da18642007-01-26 21:38:26 +0000286/// doFinalization - Tear down the state after completion of a module.
Jim Laskeyb2efb852006-01-04 22:28:25 +0000287///
Jim Laskey6da18642007-01-26 21:38:26 +0000288bool MachineModuleInfo::doFinalization() {
Chris Lattner0220ba72010-03-15 19:09:43 +0000289 delete AddrLabelSymbols;
290 AddrLabelSymbols = 0;
Jim Laskeyb2efb852006-01-04 22:28:25 +0000291 return false;
292}
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000293
Jim Laskey6da18642007-01-26 21:38:26 +0000294/// EndFunction - Discard function meta information.
Jim Laskey41886992006-04-07 16:34:46 +0000295///
Jim Laskey6da18642007-01-26 21:38:26 +0000296void MachineModuleInfo::EndFunction() {
Jim Laskey41886992006-04-07 16:34:46 +0000297 // Clean up frame info.
Jim Laskey41886992006-04-07 16:34:46 +0000298 FrameMoves.clear();
Eric Christophercf296972009-08-26 21:27:09 +0000299
Jim Laskey59667fe2007-02-21 22:38:31 +0000300 // Clean up exception info.
301 LandingPads.clear();
Jim Grosbachca752c92010-01-28 01:45:32 +0000302 CallSiteMap.clear();
Jim Laskey59667fe2007-02-21 22:38:31 +0000303 TypeInfos.clear();
Duncan Sands73ef58a2007-06-02 16:53:42 +0000304 FilterIds.clear();
Duncan Sands14da32a2007-07-05 15:15:01 +0000305 FilterEnds.clear();
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000306 CallsEHReturn = 0;
307 CallsUnwindInit = 0;
Devang Patel85d29e22009-10-08 20:41:17 +0000308 VariableDbgInfo.clear();
Jim Laskey41886992006-04-07 16:34:46 +0000309}
310
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000311/// AnalyzeModule - Scan the module for global debug information.
312///
Jim Laskey6da18642007-01-26 21:38:26 +0000313void MachineModuleInfo::AnalyzeModule(Module &M) {
Chris Lattner401e10c2009-07-20 06:14:25 +0000314 // Insert functions in the llvm.used array (but not llvm.compiler.used) into
315 // UsedFunctions.
Dale Johannesen48ae02f2008-01-16 19:59:28 +0000316 GlobalVariable *GV = M.getGlobalVariable("llvm.used");
317 if (!GV || !GV->hasInitializer()) return;
318
319 // Should be an array of 'i8*'.
320 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
321 if (InitList == 0) return;
322
Chris Lattner1d5c4932009-07-20 06:05:50 +0000323 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
324 if (Function *F =
325 dyn_cast<Function>(InitList->getOperand(i)->stripPointerCasts()))
326 UsedFunctions.insert(F);
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000327}
328
Chris Lattner0220ba72010-03-15 19:09:43 +0000329//===- Address of Block Management ----------------------------------------===//
330
331
Chris Lattner3b9d6212010-03-14 17:53:23 +0000332/// getAddrLabelSymbol - Return the symbol to be used for the specified basic
333/// block when its address is taken. This cannot be its normal LBB label
334/// because the block may be accessed outside its containing function.
335MCSymbol *MachineModuleInfo::getAddrLabelSymbol(const BasicBlock *BB) {
Chris Lattner0220ba72010-03-15 19:09:43 +0000336 // Lazily create AddrLabelSymbols.
337 if (AddrLabelSymbols == 0)
338 AddrLabelSymbols = new MMIAddrLabelMap(Context);
339 return AddrLabelSymbols->getAddrLabelSymbol(const_cast<BasicBlock*>(BB));
Chris Lattner3b9d6212010-03-14 17:53:23 +0000340}
341
Chris Lattner999aee22010-03-16 00:29:39 +0000342/// getAddrLabelSymbolToEmit - Return the symbol to be used for the specified
343/// basic block when its address is taken. If other blocks were RAUW'd to
344/// this one, we may have to emit them as well, return the whole set.
345std::vector<MCSymbol*> MachineModuleInfo::
346getAddrLabelSymbolToEmit(const BasicBlock *BB) {
347 // Lazily create AddrLabelSymbols.
348 if (AddrLabelSymbols == 0)
349 AddrLabelSymbols = new MMIAddrLabelMap(Context);
350 return AddrLabelSymbols->getAddrLabelSymbolToEmit(const_cast<BasicBlock*>(BB));
351}
352
353
Chris Lattner9cc0da92010-03-15 20:39:00 +0000354/// takeDeletedSymbolsForFunction - If the specified function has had any
355/// references to address-taken blocks generated, but the block got deleted,
356/// return the symbol now so we can emit it. This prevents emitting a
357/// reference to a symbol that has no definition.
358void MachineModuleInfo::
359takeDeletedSymbolsForFunction(const Function *F,
360 std::vector<MCSymbol*> &Result) {
361 // If no blocks have had their addresses taken, we're done.
362 if (AddrLabelSymbols == 0) return;
363 return AddrLabelSymbols->
364 takeDeletedSymbolsForFunction(const_cast<Function*>(F), Result);
365}
Chris Lattner3b9d6212010-03-14 17:53:23 +0000366
Chris Lattner0220ba72010-03-15 19:09:43 +0000367//===- EH -----------------------------------------------------------------===//
Jim Laskey59667fe2007-02-21 22:38:31 +0000368
369/// getOrCreateLandingPadInfo - Find or create an LandingPadInfo for the
370/// specified MachineBasicBlock.
Bill Wendling10fff602008-07-03 22:53:42 +0000371LandingPadInfo &MachineModuleInfo::getOrCreateLandingPadInfo
372 (MachineBasicBlock *LandingPad) {
Jim Laskey59667fe2007-02-21 22:38:31 +0000373 unsigned N = LandingPads.size();
374 for (unsigned i = 0; i < N; ++i) {
Jim Laskey59e84342007-03-01 20:25:32 +0000375 LandingPadInfo &LP = LandingPads[i];
376 if (LP.LandingPadBlock == LandingPad)
377 return LP;
Jim Laskey59667fe2007-02-21 22:38:31 +0000378 }
Eric Christophercf296972009-08-26 21:27:09 +0000379
Jim Laskey59667fe2007-02-21 22:38:31 +0000380 LandingPads.push_back(LandingPadInfo(LandingPad));
381 return LandingPads[N];
382}
383
384/// addInvoke - Provide the begin and end labels of an invoke style call and
385/// associate it with a try landing pad block.
386void MachineModuleInfo::addInvoke(MachineBasicBlock *LandingPad,
Chris Lattner16112732010-03-14 01:41:15 +0000387 MCSymbol *BeginLabel, MCSymbol *EndLabel) {
Jim Laskey59e84342007-03-01 20:25:32 +0000388 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
Anton Korobeynikoveeb37e02007-05-10 22:34:59 +0000389 LP.BeginLabels.push_back(BeginLabel);
390 LP.EndLabels.push_back(EndLabel);
Jim Laskey59667fe2007-02-21 22:38:31 +0000391}
392
393/// addLandingPad - Provide the label of a try LandingPad block.
394///
Chris Lattner7561d482010-03-14 02:33:54 +0000395MCSymbol *MachineModuleInfo::addLandingPad(MachineBasicBlock *LandingPad) {
Chris Lattner63d78362010-03-14 08:36:50 +0000396 MCSymbol *LandingPadLabel = Context.CreateTempSymbol();
Jim Laskey59e84342007-03-01 20:25:32 +0000397 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
Eric Christophercf296972009-08-26 21:27:09 +0000398 LP.LandingPadLabel = LandingPadLabel;
Chris Lattner7561d482010-03-14 02:33:54 +0000399 return LandingPadLabel;
Jim Laskey59667fe2007-02-21 22:38:31 +0000400}
401
402/// addPersonality - Provide the personality function for the exception
403/// information.
404void MachineModuleInfo::addPersonality(MachineBasicBlock *LandingPad,
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000405 Function *Personality) {
Jim Laskey59e84342007-03-01 20:25:32 +0000406 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000407 LP.Personality = Personality;
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +0000408
Bill Wendling10fff602008-07-03 22:53:42 +0000409 for (unsigned i = 0; i < Personalities.size(); ++i)
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000410 if (Personalities[i] == Personality)
411 return;
Eric Christophercf296972009-08-26 21:27:09 +0000412
Eric Christopherd44fff72009-08-26 21:30:49 +0000413 // If this is the first personality we're adding go
414 // ahead and add it at the beginning.
415 if (Personalities[0] == NULL)
416 Personalities[0] = Personality;
417 else
418 Personalities.push_back(Personality);
Jim Laskey59667fe2007-02-21 22:38:31 +0000419}
420
421/// addCatchTypeInfo - Provide the catch typeinfo for a landing pad.
422///
423void MachineModuleInfo::addCatchTypeInfo(MachineBasicBlock *LandingPad,
424 std::vector<GlobalVariable *> &TyInfo) {
Jim Laskey59e84342007-03-01 20:25:32 +0000425 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
Jim Laskey59667fe2007-02-21 22:38:31 +0000426 for (unsigned N = TyInfo.size(); N; --N)
Jim Laskey59e84342007-03-01 20:25:32 +0000427 LP.TypeIds.push_back(getTypeIDFor(TyInfo[N - 1]));
Jim Laskey59667fe2007-02-21 22:38:31 +0000428}
Duncan Sands73ef58a2007-06-02 16:53:42 +0000429
430/// addFilterTypeInfo - Provide the filter typeinfo for a landing pad.
Jim Laskey59e84342007-03-01 20:25:32 +0000431///
Duncan Sands73ef58a2007-06-02 16:53:42 +0000432void MachineModuleInfo::addFilterTypeInfo(MachineBasicBlock *LandingPad,
433 std::vector<GlobalVariable *> &TyInfo) {
Jim Laskey59e84342007-03-01 20:25:32 +0000434 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
Bill Wendling49255672008-07-07 21:41:57 +0000435 std::vector<unsigned> IdsInFilter(TyInfo.size());
Bill Wendling10fff602008-07-03 22:53:42 +0000436 for (unsigned I = 0, E = TyInfo.size(); I != E; ++I)
Duncan Sands73ef58a2007-06-02 16:53:42 +0000437 IdsInFilter[I] = getTypeIDFor(TyInfo[I]);
438 LP.TypeIds.push_back(getFilterIDFor(IdsInFilter));
Jim Laskey59e84342007-03-01 20:25:32 +0000439}
440
Duncan Sands6590b042007-08-27 15:47:50 +0000441/// addCleanup - Add a cleanup action for a landing pad.
442///
443void MachineModuleInfo::addCleanup(MachineBasicBlock *LandingPad) {
444 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
445 LP.TypeIds.push_back(0);
446}
447
Jim Laskey59667fe2007-02-21 22:38:31 +0000448/// TidyLandingPads - Remap landing pad labels and remove any deleted landing
449/// pads.
450void MachineModuleInfo::TidyLandingPads() {
451 for (unsigned i = 0; i != LandingPads.size(); ) {
452 LandingPadInfo &LandingPad = LandingPads[i];
Chris Lattner16112732010-03-14 01:41:15 +0000453 if (LandingPad.LandingPadLabel && !LandingPad.LandingPadLabel->isDefined())
Chris Lattnera34ec2292010-03-09 01:51:43 +0000454 LandingPad.LandingPadLabel = 0;
Anton Korobeynikoveeb37e02007-05-10 22:34:59 +0000455
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000456 // Special case: we *should* emit LPs with null LP MBB. This indicates
Duncan Sands481dc722007-12-19 07:36:31 +0000457 // "nounwind" case.
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000458 if (!LandingPad.LandingPadLabel && LandingPad.LandingPadBlock) {
Jim Laskey59667fe2007-02-21 22:38:31 +0000459 LandingPads.erase(LandingPads.begin() + i);
460 continue;
461 }
Duncan Sands57810cd2007-09-05 11:27:52 +0000462
Chris Lattner16112732010-03-14 01:41:15 +0000463 for (unsigned j = 0, e = LandingPads[i].BeginLabels.size(); j != e; ++j) {
464 MCSymbol *BeginLabel = LandingPad.BeginLabels[j];
465 MCSymbol *EndLabel = LandingPad.EndLabels[j];
466 if (BeginLabel->isDefined() && EndLabel->isDefined()) continue;
467
468 LandingPad.BeginLabels.erase(LandingPad.BeginLabels.begin() + j);
469 LandingPad.EndLabels.erase(LandingPad.EndLabels.begin() + j);
470 --j, --e;
Anton Korobeynikoveeb37e02007-05-10 22:34:59 +0000471 }
Duncan Sands57810cd2007-09-05 11:27:52 +0000472
473 // Remove landing pads with no try-ranges.
Dan Gohman30359592008-01-29 13:02:09 +0000474 if (LandingPads[i].BeginLabels.empty()) {
Duncan Sands57810cd2007-09-05 11:27:52 +0000475 LandingPads.erase(LandingPads.begin() + i);
476 continue;
477 }
478
479 // If there is no landing pad, ensure that the list of typeids is empty.
480 // If the only typeid is a cleanup, this is the same as having no typeids.
481 if (!LandingPad.LandingPadBlock ||
482 (LandingPad.TypeIds.size() == 1 && !LandingPad.TypeIds[0]))
483 LandingPad.TypeIds.clear();
Jim Laskey59667fe2007-02-21 22:38:31 +0000484 ++i;
485 }
486}
487
Eric Christophercf296972009-08-26 21:27:09 +0000488/// getTypeIDFor - Return the type id for the specified typeinfo. This is
Jim Laskey59667fe2007-02-21 22:38:31 +0000489/// function wide.
490unsigned MachineModuleInfo::getTypeIDFor(GlobalVariable *TI) {
Bill Wendling10fff602008-07-03 22:53:42 +0000491 for (unsigned i = 0, N = TypeInfos.size(); i != N; ++i)
492 if (TypeInfos[i] == TI) return i + 1;
Jim Laskey59667fe2007-02-21 22:38:31 +0000493
494 TypeInfos.push_back(TI);
495 return TypeInfos.size();
496}
497
Duncan Sands73ef58a2007-06-02 16:53:42 +0000498/// getFilterIDFor - Return the filter id for the specified typeinfos. This is
499/// function wide.
Bill Wendling914c9702008-06-27 01:27:56 +0000500int MachineModuleInfo::getFilterIDFor(std::vector<unsigned> &TyIds) {
Duncan Sands14da32a2007-07-05 15:15:01 +0000501 // If the new filter coincides with the tail of an existing filter, then
502 // re-use the existing filter. Folding filters more than this requires
503 // re-ordering filters and/or their elements - probably not worth it.
504 for (std::vector<unsigned>::iterator I = FilterEnds.begin(),
505 E = FilterEnds.end(); I != E; ++I) {
Bill Wendling914c9702008-06-27 01:27:56 +0000506 unsigned i = *I, j = TyIds.size();
Duncan Sands14da32a2007-07-05 15:15:01 +0000507
508 while (i && j)
509 if (FilterIds[--i] != TyIds[--j])
510 goto try_next;
511
512 if (!j)
513 // The new filter coincides with range [i, end) of the existing filter.
514 return -(1 + i);
Bill Wendling914c9702008-06-27 01:27:56 +0000515
Duncan Sands14da32a2007-07-05 15:15:01 +0000516try_next:;
517 }
518
519 // Add the new filter.
Bill Wendling914c9702008-06-27 01:27:56 +0000520 int FilterID = -(1 + FilterIds.size());
521 FilterIds.reserve(FilterIds.size() + TyIds.size() + 1);
522 for (unsigned I = 0, N = TyIds.size(); I != N; ++I)
Duncan Sands73ef58a2007-06-02 16:53:42 +0000523 FilterIds.push_back(TyIds[I]);
Bill Wendling914c9702008-06-27 01:27:56 +0000524 FilterEnds.push_back(FilterIds.size());
Duncan Sands73ef58a2007-06-02 16:53:42 +0000525 FilterIds.push_back(0); // terminator
526 return FilterID;
527}
528
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000529/// getPersonality - Return the personality function for the current function.
Jim Laskey59667fe2007-02-21 22:38:31 +0000530Function *MachineModuleInfo::getPersonality() const {
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +0000531 // FIXME: Until PR1414 will be fixed, we're using 1 personality function per
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000532 // function
533 return !LandingPads.empty() ? LandingPads[0].Personality : NULL;
Jim Laskey59667fe2007-02-21 22:38:31 +0000534}
535
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000536/// getPersonalityIndex - Return unique index for current personality
Eric Christopher5e365e22009-08-26 21:44:57 +0000537/// function. NULL/first personality function should always get zero index.
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000538unsigned MachineModuleInfo::getPersonalityIndex() const {
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000539 const Function* Personality = NULL;
Eric Christophercf296972009-08-26 21:27:09 +0000540
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000541 // Scan landing pads. If there is at least one non-NULL personality - use it.
Bill Wendling10fff602008-07-03 22:53:42 +0000542 for (unsigned i = 0; i != LandingPads.size(); ++i)
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000543 if (LandingPads[i].Personality) {
544 Personality = LandingPads[i].Personality;
545 break;
546 }
Eric Christophercf296972009-08-26 21:27:09 +0000547
Bill Wendling10fff602008-07-03 22:53:42 +0000548 for (unsigned i = 0; i < Personalities.size(); ++i) {
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000549 if (Personalities[i] == Personality)
550 return i;
Bill Wendling10fff602008-07-03 22:53:42 +0000551 }
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000552
Eric Christopher5e365e22009-08-26 21:44:57 +0000553 // This will happen if the current personality function is
554 // in the zero index.
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000555 return 0;
556}
Jim Laskey59667fe2007-02-21 22:38:31 +0000557