blob: 2bc3941b7f773d2fd36bced72a14c204fd619035 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- llvm/CodeGen/MachineModuleInfo.cpp ----------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/CodeGen/MachineModuleInfo.h"
11
12#include "llvm/Constants.h"
Chris Lattnere3330172010-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 Cheng833501d2008-06-30 07:31:25 +000018#include "llvm/Analysis/ValueTracking.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000019#include "llvm/CodeGen/MachineFunctionPass.h"
20#include "llvm/CodeGen/MachineFunction.h"
Evan Cheng1b42ac12008-09-22 22:21:38 +000021#include "llvm/CodeGen/Passes.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000022#include "llvm/Target/TargetInstrInfo.h"
23#include "llvm/Target/TargetMachine.h"
24#include "llvm/Target/TargetOptions.h"
Chris Lattnere3330172010-03-14 01:41:15 +000025#include "llvm/MC/MCSymbol.h"
Chris Lattnercc1205d2010-03-16 00:29:39 +000026#include "llvm/ADT/PointerUnion.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027#include "llvm/Support/Dwarf.h"
Edwin Török675d5622009-07-11 20:10:48 +000028#include "llvm/Support/ErrorHandling.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029using namespace llvm;
30using namespace llvm::dwarf;
31
32// Handle the Pass registration stuff necessary to use TargetData's.
Dan Gohman089efff2008-05-13 00:00:25 +000033static RegisterPass<MachineModuleInfo>
Chris Lattnerf4853452010-03-13 20:55:24 +000034X("machinemoduleinfo", "Machine Module Information");
Dan Gohmanf17a25c2007-07-18 16:29:46 +000035char MachineModuleInfo::ID = 0;
36
Chris Lattner72ba6722009-09-15 22:44:26 +000037// Out of line virtual method.
38MachineModuleInfoImpl::~MachineModuleInfoImpl() {}
39
Chris Lattner77706032010-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
Chris Lattnerf50a4232010-03-22 23:15:57 +000047 void setPtr(BasicBlock *BB) {
48 ValueHandleBase::operator=(BB);
49 }
50
Chris Lattner77706032010-03-15 19:09:43 +000051 void setMap(MMIAddrLabelMap *map) { Map = map; }
52
53 virtual void deleted();
54 virtual void allUsesReplacedWith(Value *V2);
55};
56
57class MMIAddrLabelMap {
58 MCContext &Context;
59 struct AddrLabelSymEntry {
Chris Lattnercc1205d2010-03-16 00:29:39 +000060 /// Symbols - The symbols for the label. This is a pointer union that is
61 /// either one symbol (the common case) or a list of symbols.
62 PointerUnion<MCSymbol *, std::vector<MCSymbol*>*> Symbols;
63
Chris Lattnerf6853ff2010-03-15 20:39:00 +000064 Function *Fn; // The containing function of the BasicBlock.
65 unsigned Index; // The index in BBCallbacks for the BasicBlock.
Chris Lattner77706032010-03-15 19:09:43 +000066 };
67
68 DenseMap<AssertingVH<BasicBlock>, AddrLabelSymEntry> AddrLabelSymbols;
69
Chris Lattnerf6853ff2010-03-15 20:39:00 +000070 /// BBCallbacks - Callbacks for the BasicBlock's that we have entries for. We
71 /// use this so we get notified if a block is deleted or RAUWd.
Chris Lattner77706032010-03-15 19:09:43 +000072 std::vector<MMIAddrLabelMapCallbackPtr> BBCallbacks;
Chris Lattnerf6853ff2010-03-15 20:39:00 +000073
74 /// DeletedAddrLabelsNeedingEmission - This is a per-function list of symbols
75 /// whose corresponding BasicBlock got deleted. These symbols need to be
76 /// emitted at some point in the file, so AsmPrinter emits them after the
77 /// function body.
78 DenseMap<AssertingVH<Function>, std::vector<MCSymbol*> >
79 DeletedAddrLabelsNeedingEmission;
Chris Lattner77706032010-03-15 19:09:43 +000080public:
81
82 MMIAddrLabelMap(MCContext &context) : Context(context) {}
Chris Lattnerf6853ff2010-03-15 20:39:00 +000083 ~MMIAddrLabelMap() {
84 assert(DeletedAddrLabelsNeedingEmission.empty() &&
85 "Some labels for deleted blocks never got emitted");
Chris Lattnercc1205d2010-03-16 00:29:39 +000086
87 // Deallocate any of the 'list of symbols' case.
88 for (DenseMap<AssertingVH<BasicBlock>, AddrLabelSymEntry>::iterator
89 I = AddrLabelSymbols.begin(), E = AddrLabelSymbols.end(); I != E; ++I)
90 if (I->second.Symbols.is<std::vector<MCSymbol*>*>())
91 delete I->second.Symbols.get<std::vector<MCSymbol*>*>();
Chris Lattnerf6853ff2010-03-15 20:39:00 +000092 }
Chris Lattner77706032010-03-15 19:09:43 +000093
Chris Lattnercc1205d2010-03-16 00:29:39 +000094 MCSymbol *getAddrLabelSymbol(BasicBlock *BB);
95 std::vector<MCSymbol*> getAddrLabelSymbolToEmit(BasicBlock *BB);
96
Chris Lattnerf6853ff2010-03-15 20:39:00 +000097 void takeDeletedSymbolsForFunction(Function *F,
98 std::vector<MCSymbol*> &Result);
99
Chris Lattner77706032010-03-15 19:09:43 +0000100 void UpdateForDeletedBlock(BasicBlock *BB);
101 void UpdateForRAUWBlock(BasicBlock *Old, BasicBlock *New);
102};
103}
104
105MCSymbol *MMIAddrLabelMap::getAddrLabelSymbol(BasicBlock *BB) {
106 assert(BB->hasAddressTaken() &&
107 "Shouldn't get label for block without address taken");
108 AddrLabelSymEntry &Entry = AddrLabelSymbols[BB];
109
110 // If we already had an entry for this block, just return it.
Chris Lattnercc1205d2010-03-16 00:29:39 +0000111 if (!Entry.Symbols.isNull()) {
Chris Lattnerf6853ff2010-03-15 20:39:00 +0000112 assert(BB->getParent() == Entry.Fn && "Parent changed");
Chris Lattnercc1205d2010-03-16 00:29:39 +0000113 if (Entry.Symbols.is<MCSymbol*>())
114 return Entry.Symbols.get<MCSymbol*>();
115 return (*Entry.Symbols.get<std::vector<MCSymbol*>*>())[0];
Chris Lattnerf6853ff2010-03-15 20:39:00 +0000116 }
Chris Lattner77706032010-03-15 19:09:43 +0000117
118 // Otherwise, this is a new entry, create a new symbol for it and add an
119 // entry to BBCallbacks so we can be notified if the BB is deleted or RAUWd.
120 BBCallbacks.push_back(BB);
121 BBCallbacks.back().setMap(this);
122 Entry.Index = BBCallbacks.size()-1;
Chris Lattnerf6853ff2010-03-15 20:39:00 +0000123 Entry.Fn = BB->getParent();
Chris Lattnercc1205d2010-03-16 00:29:39 +0000124 MCSymbol *Result = Context.CreateTempSymbol();
125 Entry.Symbols = Result;
126 return Result;
Chris Lattner77706032010-03-15 19:09:43 +0000127}
128
Chris Lattnercc1205d2010-03-16 00:29:39 +0000129std::vector<MCSymbol*>
130MMIAddrLabelMap::getAddrLabelSymbolToEmit(BasicBlock *BB) {
131 assert(BB->hasAddressTaken() &&
132 "Shouldn't get label for block without address taken");
133 AddrLabelSymEntry &Entry = AddrLabelSymbols[BB];
134
135 std::vector<MCSymbol*> Result;
136
137 // If we already had an entry for this block, just return it.
138 if (Entry.Symbols.isNull())
139 Result.push_back(getAddrLabelSymbol(BB));
140 else if (MCSymbol *Sym = Entry.Symbols.dyn_cast<MCSymbol*>())
141 Result.push_back(Sym);
142 else
143 Result = *Entry.Symbols.get<std::vector<MCSymbol*>*>();
144 return Result;
145}
146
147
Chris Lattnerf6853ff2010-03-15 20:39:00 +0000148/// takeDeletedSymbolsForFunction - If we have any deleted symbols for F, return
149/// them.
150void MMIAddrLabelMap::
151takeDeletedSymbolsForFunction(Function *F, std::vector<MCSymbol*> &Result) {
152 DenseMap<AssertingVH<Function>, std::vector<MCSymbol*> >::iterator I =
153 DeletedAddrLabelsNeedingEmission.find(F);
154
155 // If there are no entries for the function, just return.
156 if (I == DeletedAddrLabelsNeedingEmission.end()) return;
157
158 // Otherwise, take the list.
159 std::swap(Result, I->second);
160 DeletedAddrLabelsNeedingEmission.erase(I);
161}
162
163
Chris Lattner77706032010-03-15 19:09:43 +0000164void MMIAddrLabelMap::UpdateForDeletedBlock(BasicBlock *BB) {
165 // If the block got deleted, there is no need for the symbol. If the symbol
166 // was already emitted, we can just forget about it, otherwise we need to
167 // queue it up for later emission when the function is output.
168 AddrLabelSymEntry Entry = AddrLabelSymbols[BB];
169 AddrLabelSymbols.erase(BB);
Chris Lattnercc1205d2010-03-16 00:29:39 +0000170 assert(!Entry.Symbols.isNull() && "Didn't have a symbol, why a callback?");
Chris Lattner77706032010-03-15 19:09:43 +0000171 BBCallbacks[Entry.Index] = 0; // Clear the callback.
172
Chris Lattnerf6853ff2010-03-15 20:39:00 +0000173 assert((BB->getParent() == 0 || BB->getParent() == Entry.Fn) &&
174 "Block/parent mismatch");
Chris Lattnercc1205d2010-03-16 00:29:39 +0000175
176 // Handle both the single and the multiple symbols cases.
177 if (MCSymbol *Sym = Entry.Symbols.dyn_cast<MCSymbol*>()) {
178 if (Sym->isDefined())
179 return;
Chris Lattnerf6853ff2010-03-15 20:39:00 +0000180
Chris Lattnercc1205d2010-03-16 00:29:39 +0000181 // If the block is not yet defined, we need to emit it at the end of the
182 // function. Add the symbol to the DeletedAddrLabelsNeedingEmission list
183 // for the containing Function. Since the block is being deleted, its
184 // parent may already be removed, we have to get the function from 'Entry'.
185 DeletedAddrLabelsNeedingEmission[Entry.Fn].push_back(Sym);
186 } else {
187 std::vector<MCSymbol*> *Syms = Entry.Symbols.get<std::vector<MCSymbol*>*>();
188
189 for (unsigned i = 0, e = Syms->size(); i != e; ++i) {
190 MCSymbol *Sym = (*Syms)[i];
191 if (Sym->isDefined()) continue; // Ignore already emitted labels.
192
193 // If the block is not yet defined, we need to emit it at the end of the
194 // function. Add the symbol to the DeletedAddrLabelsNeedingEmission list
195 // for the containing Function. Since the block is being deleted, its
196 // parent may already be removed, we have to get the function from
197 // 'Entry'.
198 DeletedAddrLabelsNeedingEmission[Entry.Fn].push_back(Sym);
199 }
200
201 // The entry is deleted, free the memory associated with the symbol list.
202 delete Syms;
203 }
Chris Lattner77706032010-03-15 19:09:43 +0000204}
205
206void MMIAddrLabelMap::UpdateForRAUWBlock(BasicBlock *Old, BasicBlock *New) {
207 // Get the entry for the RAUW'd block and remove it from our map.
208 AddrLabelSymEntry OldEntry = AddrLabelSymbols[Old];
209 AddrLabelSymbols.erase(Old);
Chris Lattnercc1205d2010-03-16 00:29:39 +0000210 assert(!OldEntry.Symbols.isNull() && "Didn't have a symbol, why a callback?");
211
212 AddrLabelSymEntry &NewEntry = AddrLabelSymbols[New];
213
Chris Lattner77706032010-03-15 19:09:43 +0000214 // If New is not address taken, just move our symbol over to it.
Chris Lattnercc1205d2010-03-16 00:29:39 +0000215 if (NewEntry.Symbols.isNull()) {
Chris Lattnerf50a4232010-03-22 23:15:57 +0000216 BBCallbacks[OldEntry.Index].setPtr(New); // Update the callback.
Chris Lattnercc1205d2010-03-16 00:29:39 +0000217 NewEntry = OldEntry; // Set New's entry.
218 return;
Chris Lattner77706032010-03-15 19:09:43 +0000219 }
Chris Lattnercc1205d2010-03-16 00:29:39 +0000220
221 BBCallbacks[OldEntry.Index] = 0; // Update the callback.
222
223 // Otherwise, we need to add the old symbol to the new block's set. If it is
224 // just a single entry, upgrade it to a symbol list.
225 if (MCSymbol *PrevSym = NewEntry.Symbols.dyn_cast<MCSymbol*>()) {
226 std::vector<MCSymbol*> *SymList = new std::vector<MCSymbol*>();
227 SymList->push_back(PrevSym);
228 NewEntry.Symbols = SymList;
229 }
230
231 std::vector<MCSymbol*> *SymList =
232 NewEntry.Symbols.get<std::vector<MCSymbol*>*>();
233
234 // If the old entry was a single symbol, add it.
235 if (MCSymbol *Sym = OldEntry.Symbols.dyn_cast<MCSymbol*>()) {
236 SymList->push_back(Sym);
237 return;
238 }
239
240 // Otherwise, concatenate the list.
241 std::vector<MCSymbol*> *Syms =OldEntry.Symbols.get<std::vector<MCSymbol*>*>();
242 SymList->insert(SymList->end(), Syms->begin(), Syms->end());
243 delete Syms;
Chris Lattner77706032010-03-15 19:09:43 +0000244}
245
246
247void MMIAddrLabelMapCallbackPtr::deleted() {
248 Map->UpdateForDeletedBlock(cast<BasicBlock>(getValPtr()));
249}
250
251void MMIAddrLabelMapCallbackPtr::allUsesReplacedWith(Value *V2) {
252 Map->UpdateForRAUWBlock(cast<BasicBlock>(getValPtr()), cast<BasicBlock>(V2));
253}
254
255
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000256//===----------------------------------------------------------------------===//
Eric Christopher84603632009-08-26 21:27:09 +0000257
Chris Lattnerf4853452010-03-13 20:55:24 +0000258MachineModuleInfo::MachineModuleInfo(const MCAsmInfo &MAI)
259: ImmutablePass(&ID), Context(MAI),
Chris Lattner54e56f22010-03-14 08:36:50 +0000260 ObjFileMMI(0),
Chris Lattner7e655952010-03-14 02:24:55 +0000261 CurCallSite(0), CallsEHReturn(0), CallsUnwindInit(0), DbgInfoAvailable(false){
Eric Christopherc87d5ae2009-08-26 21:30:49 +0000262 // Always emit some info, by default "no personality" info.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000263 Personalities.push_back(NULL);
Chris Lattner77706032010-03-15 19:09:43 +0000264 AddrLabelSymbols = 0;
Chris Lattner262c21b2010-04-06 00:51:52 +0000265 TheModule = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000266}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000267
Chris Lattnerf4853452010-03-13 20:55:24 +0000268MachineModuleInfo::MachineModuleInfo()
269: ImmutablePass(&ID), Context(*(MCAsmInfo*)0) {
270 assert(0 && "This MachineModuleInfo constructor should never be called, MMI "
271 "should always be explicitly constructed by LLVMTargetMachine");
272 abort();
273}
274
Chris Lattner72ba6722009-09-15 22:44:26 +0000275MachineModuleInfo::~MachineModuleInfo() {
Chris Lattner16fcdf92009-09-16 05:26:00 +0000276 delete ObjFileMMI;
Chris Lattner77706032010-03-15 19:09:43 +0000277
278 // FIXME: Why isn't doFinalization being called??
279 //assert(AddrLabelSymbols == 0 && "doFinalization not called");
280 delete AddrLabelSymbols;
281 AddrLabelSymbols = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000282}
283
284/// doInitialization - Initialize the state for a new module.
285///
286bool MachineModuleInfo::doInitialization() {
Chris Lattner77706032010-03-15 19:09:43 +0000287 assert(AddrLabelSymbols == 0 && "Improperly initialized");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000288 return false;
289}
290
291/// doFinalization - Tear down the state after completion of a module.
292///
293bool MachineModuleInfo::doFinalization() {
Chris Lattner77706032010-03-15 19:09:43 +0000294 delete AddrLabelSymbols;
295 AddrLabelSymbols = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000296 return false;
297}
298
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000299/// EndFunction - Discard function meta information.
300///
301void MachineModuleInfo::EndFunction() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000302 // Clean up frame info.
303 FrameMoves.clear();
Eric Christopher84603632009-08-26 21:27:09 +0000304
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000305 // Clean up exception info.
306 LandingPads.clear();
Jim Grosbach1db5d982010-01-28 01:45:32 +0000307 CallSiteMap.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000308 TypeInfos.clear();
309 FilterIds.clear();
310 FilterEnds.clear();
311 CallsEHReturn = 0;
312 CallsUnwindInit = 0;
Devang Patelf57e1062009-10-08 20:41:17 +0000313 VariableDbgInfo.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000314}
315
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000316/// AnalyzeModule - Scan the module for global debug information.
317///
Dan Gohman36c56d02010-04-15 01:51:59 +0000318void MachineModuleInfo::AnalyzeModule(const Module &M) {
Chris Lattner1e0e0d12009-07-20 06:14:25 +0000319 // Insert functions in the llvm.used array (but not llvm.compiler.used) into
320 // UsedFunctions.
Dan Gohman36c56d02010-04-15 01:51:59 +0000321 const GlobalVariable *GV = M.getGlobalVariable("llvm.used");
Dale Johannesen3dadeb32008-01-16 19:59:28 +0000322 if (!GV || !GV->hasInitializer()) return;
323
324 // Should be an array of 'i8*'.
Dan Gohman36c56d02010-04-15 01:51:59 +0000325 const ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
Dale Johannesen3dadeb32008-01-16 19:59:28 +0000326 if (InitList == 0) return;
327
Chris Lattner26165602009-07-20 06:05:50 +0000328 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
Dan Gohman36c56d02010-04-15 01:51:59 +0000329 if (const Function *F =
Chris Lattner26165602009-07-20 06:05:50 +0000330 dyn_cast<Function>(InitList->getOperand(i)->stripPointerCasts()))
331 UsedFunctions.insert(F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000332}
333
Chris Lattner77706032010-03-15 19:09:43 +0000334//===- Address of Block Management ----------------------------------------===//
335
336
Chris Lattner44894142010-03-14 17:53:23 +0000337/// getAddrLabelSymbol - Return the symbol to be used for the specified basic
338/// block when its address is taken. This cannot be its normal LBB label
339/// because the block may be accessed outside its containing function.
340MCSymbol *MachineModuleInfo::getAddrLabelSymbol(const BasicBlock *BB) {
Chris Lattner77706032010-03-15 19:09:43 +0000341 // Lazily create AddrLabelSymbols.
342 if (AddrLabelSymbols == 0)
343 AddrLabelSymbols = new MMIAddrLabelMap(Context);
344 return AddrLabelSymbols->getAddrLabelSymbol(const_cast<BasicBlock*>(BB));
Chris Lattner44894142010-03-14 17:53:23 +0000345}
346
Chris Lattnercc1205d2010-03-16 00:29:39 +0000347/// getAddrLabelSymbolToEmit - Return the symbol to be used for the specified
348/// basic block when its address is taken. If other blocks were RAUW'd to
349/// this one, we may have to emit them as well, return the whole set.
350std::vector<MCSymbol*> MachineModuleInfo::
351getAddrLabelSymbolToEmit(const BasicBlock *BB) {
352 // Lazily create AddrLabelSymbols.
353 if (AddrLabelSymbols == 0)
354 AddrLabelSymbols = new MMIAddrLabelMap(Context);
355 return AddrLabelSymbols->getAddrLabelSymbolToEmit(const_cast<BasicBlock*>(BB));
356}
357
358
Chris Lattnerf6853ff2010-03-15 20:39:00 +0000359/// takeDeletedSymbolsForFunction - If the specified function has had any
360/// references to address-taken blocks generated, but the block got deleted,
361/// return the symbol now so we can emit it. This prevents emitting a
362/// reference to a symbol that has no definition.
363void MachineModuleInfo::
364takeDeletedSymbolsForFunction(const Function *F,
365 std::vector<MCSymbol*> &Result) {
366 // If no blocks have had their addresses taken, we're done.
367 if (AddrLabelSymbols == 0) return;
368 return AddrLabelSymbols->
369 takeDeletedSymbolsForFunction(const_cast<Function*>(F), Result);
370}
Chris Lattner44894142010-03-14 17:53:23 +0000371
Chris Lattner77706032010-03-15 19:09:43 +0000372//===- EH -----------------------------------------------------------------===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000373
374/// getOrCreateLandingPadInfo - Find or create an LandingPadInfo for the
375/// specified MachineBasicBlock.
Bill Wendling4de8de52008-07-03 22:53:42 +0000376LandingPadInfo &MachineModuleInfo::getOrCreateLandingPadInfo
377 (MachineBasicBlock *LandingPad) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000378 unsigned N = LandingPads.size();
379 for (unsigned i = 0; i < N; ++i) {
380 LandingPadInfo &LP = LandingPads[i];
381 if (LP.LandingPadBlock == LandingPad)
382 return LP;
383 }
Eric Christopher84603632009-08-26 21:27:09 +0000384
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000385 LandingPads.push_back(LandingPadInfo(LandingPad));
386 return LandingPads[N];
387}
388
389/// addInvoke - Provide the begin and end labels of an invoke style call and
390/// associate it with a try landing pad block.
391void MachineModuleInfo::addInvoke(MachineBasicBlock *LandingPad,
Chris Lattnere3330172010-03-14 01:41:15 +0000392 MCSymbol *BeginLabel, MCSymbol *EndLabel) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000393 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
394 LP.BeginLabels.push_back(BeginLabel);
395 LP.EndLabels.push_back(EndLabel);
396}
397
398/// addLandingPad - Provide the label of a try LandingPad block.
399///
Chris Lattner8574ddd2010-03-14 02:33:54 +0000400MCSymbol *MachineModuleInfo::addLandingPad(MachineBasicBlock *LandingPad) {
Chris Lattner54e56f22010-03-14 08:36:50 +0000401 MCSymbol *LandingPadLabel = Context.CreateTempSymbol();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000402 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
Eric Christopher84603632009-08-26 21:27:09 +0000403 LP.LandingPadLabel = LandingPadLabel;
Chris Lattner8574ddd2010-03-14 02:33:54 +0000404 return LandingPadLabel;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000405}
406
407/// addPersonality - Provide the personality function for the exception
408/// information.
409void MachineModuleInfo::addPersonality(MachineBasicBlock *LandingPad,
Dan Gohman36c56d02010-04-15 01:51:59 +0000410 const Function *Personality) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000411 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
412 LP.Personality = Personality;
413
Bill Wendling4de8de52008-07-03 22:53:42 +0000414 for (unsigned i = 0; i < Personalities.size(); ++i)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000415 if (Personalities[i] == Personality)
416 return;
Eric Christopher84603632009-08-26 21:27:09 +0000417
Eric Christopherc87d5ae2009-08-26 21:30:49 +0000418 // If this is the first personality we're adding go
419 // ahead and add it at the beginning.
420 if (Personalities[0] == NULL)
421 Personalities[0] = Personality;
422 else
423 Personalities.push_back(Personality);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000424}
425
426/// addCatchTypeInfo - Provide the catch typeinfo for a landing pad.
427///
428void MachineModuleInfo::addCatchTypeInfo(MachineBasicBlock *LandingPad,
Dan Gohman36c56d02010-04-15 01:51:59 +0000429 std::vector<const GlobalVariable *> &TyInfo) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000430 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
431 for (unsigned N = TyInfo.size(); N; --N)
432 LP.TypeIds.push_back(getTypeIDFor(TyInfo[N - 1]));
433}
434
435/// addFilterTypeInfo - Provide the filter typeinfo for a landing pad.
436///
437void MachineModuleInfo::addFilterTypeInfo(MachineBasicBlock *LandingPad,
Dan Gohman36c56d02010-04-15 01:51:59 +0000438 std::vector<const GlobalVariable *> &TyInfo) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000439 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
Bill Wendling993b3dd2008-07-07 21:41:57 +0000440 std::vector<unsigned> IdsInFilter(TyInfo.size());
Bill Wendling4de8de52008-07-03 22:53:42 +0000441 for (unsigned I = 0, E = TyInfo.size(); I != E; ++I)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000442 IdsInFilter[I] = getTypeIDFor(TyInfo[I]);
443 LP.TypeIds.push_back(getFilterIDFor(IdsInFilter));
444}
445
Duncan Sands923fdb12007-08-27 15:47:50 +0000446/// addCleanup - Add a cleanup action for a landing pad.
447///
448void MachineModuleInfo::addCleanup(MachineBasicBlock *LandingPad) {
449 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
450 LP.TypeIds.push_back(0);
451}
452
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000453/// TidyLandingPads - Remap landing pad labels and remove any deleted landing
454/// pads.
455void MachineModuleInfo::TidyLandingPads() {
456 for (unsigned i = 0; i != LandingPads.size(); ) {
457 LandingPadInfo &LandingPad = LandingPads[i];
Chris Lattnere3330172010-03-14 01:41:15 +0000458 if (LandingPad.LandingPadLabel && !LandingPad.LandingPadLabel->isDefined())
Chris Lattner5e423432010-03-09 01:51:43 +0000459 LandingPad.LandingPadLabel = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000460
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000461 // Special case: we *should* emit LPs with null LP MBB. This indicates
Duncan Sands4ff179f2007-12-19 07:36:31 +0000462 // "nounwind" case.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000463 if (!LandingPad.LandingPadLabel && LandingPad.LandingPadBlock) {
464 LandingPads.erase(LandingPads.begin() + i);
465 continue;
466 }
Duncan Sands241a0c92007-09-05 11:27:52 +0000467
Chris Lattnere3330172010-03-14 01:41:15 +0000468 for (unsigned j = 0, e = LandingPads[i].BeginLabels.size(); j != e; ++j) {
469 MCSymbol *BeginLabel = LandingPad.BeginLabels[j];
470 MCSymbol *EndLabel = LandingPad.EndLabels[j];
471 if (BeginLabel->isDefined() && EndLabel->isDefined()) continue;
472
473 LandingPad.BeginLabels.erase(LandingPad.BeginLabels.begin() + j);
474 LandingPad.EndLabels.erase(LandingPad.EndLabels.begin() + j);
475 --j, --e;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000476 }
Duncan Sands241a0c92007-09-05 11:27:52 +0000477
478 // Remove landing pads with no try-ranges.
Dan Gohman301f4052008-01-29 13:02:09 +0000479 if (LandingPads[i].BeginLabels.empty()) {
Duncan Sands241a0c92007-09-05 11:27:52 +0000480 LandingPads.erase(LandingPads.begin() + i);
481 continue;
482 }
483
484 // If there is no landing pad, ensure that the list of typeids is empty.
485 // If the only typeid is a cleanup, this is the same as having no typeids.
486 if (!LandingPad.LandingPadBlock ||
487 (LandingPad.TypeIds.size() == 1 && !LandingPad.TypeIds[0]))
488 LandingPad.TypeIds.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000489 ++i;
490 }
491}
492
Eric Christopher84603632009-08-26 21:27:09 +0000493/// getTypeIDFor - Return the type id for the specified typeinfo. This is
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000494/// function wide.
Dan Gohman36c56d02010-04-15 01:51:59 +0000495unsigned MachineModuleInfo::getTypeIDFor(const GlobalVariable *TI) {
Bill Wendling4de8de52008-07-03 22:53:42 +0000496 for (unsigned i = 0, N = TypeInfos.size(); i != N; ++i)
497 if (TypeInfos[i] == TI) return i + 1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000498
499 TypeInfos.push_back(TI);
500 return TypeInfos.size();
501}
502
503/// getFilterIDFor - Return the filter id for the specified typeinfos. This is
504/// function wide.
Bill Wendling0e679b82008-06-27 01:27:56 +0000505int MachineModuleInfo::getFilterIDFor(std::vector<unsigned> &TyIds) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000506 // If the new filter coincides with the tail of an existing filter, then
507 // re-use the existing filter. Folding filters more than this requires
508 // re-ordering filters and/or their elements - probably not worth it.
509 for (std::vector<unsigned>::iterator I = FilterEnds.begin(),
510 E = FilterEnds.end(); I != E; ++I) {
Bill Wendling0e679b82008-06-27 01:27:56 +0000511 unsigned i = *I, j = TyIds.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000512
513 while (i && j)
514 if (FilterIds[--i] != TyIds[--j])
515 goto try_next;
516
517 if (!j)
518 // The new filter coincides with range [i, end) of the existing filter.
519 return -(1 + i);
Bill Wendling0e679b82008-06-27 01:27:56 +0000520
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000521try_next:;
522 }
523
524 // Add the new filter.
Bill Wendling0e679b82008-06-27 01:27:56 +0000525 int FilterID = -(1 + FilterIds.size());
526 FilterIds.reserve(FilterIds.size() + TyIds.size() + 1);
527 for (unsigned I = 0, N = TyIds.size(); I != N; ++I)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000528 FilterIds.push_back(TyIds[I]);
Bill Wendling0e679b82008-06-27 01:27:56 +0000529 FilterEnds.push_back(FilterIds.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000530 FilterIds.push_back(0); // terminator
531 return FilterID;
532}
533
534/// getPersonality - Return the personality function for the current function.
Dan Gohman36c56d02010-04-15 01:51:59 +0000535const Function *MachineModuleInfo::getPersonality() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000536 // FIXME: Until PR1414 will be fixed, we're using 1 personality function per
537 // function
538 return !LandingPads.empty() ? LandingPads[0].Personality : NULL;
539}
540
541/// getPersonalityIndex - Return unique index for current personality
Eric Christophere92cc8d2009-08-26 21:44:57 +0000542/// function. NULL/first personality function should always get zero index.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000543unsigned MachineModuleInfo::getPersonalityIndex() const {
544 const Function* Personality = NULL;
Eric Christopher84603632009-08-26 21:27:09 +0000545
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000546 // Scan landing pads. If there is at least one non-NULL personality - use it.
Bill Wendling4de8de52008-07-03 22:53:42 +0000547 for (unsigned i = 0; i != LandingPads.size(); ++i)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548 if (LandingPads[i].Personality) {
549 Personality = LandingPads[i].Personality;
550 break;
551 }
Eric Christopher84603632009-08-26 21:27:09 +0000552
Bill Wendling4de8de52008-07-03 22:53:42 +0000553 for (unsigned i = 0; i < Personalities.size(); ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000554 if (Personalities[i] == Personality)
555 return i;
Bill Wendling4de8de52008-07-03 22:53:42 +0000556 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000557
Eric Christophere92cc8d2009-08-26 21:44:57 +0000558 // This will happen if the current personality function is
559 // in the zero index.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000560 return 0;
561}
562