blob: 25dda0a4c369b44140df6a3c9b261e59009f0cca [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"
Chris Lattner16112732010-03-14 01:41:15 +000015#include "llvm/Module.h"
Evan Cheng0ff39b32008-06-30 07:31:25 +000016#include "llvm/Analysis/ValueTracking.h"
Jim Laskey9d4209f2006-11-07 19:33:46 +000017#include "llvm/CodeGen/MachineFunctionPass.h"
18#include "llvm/CodeGen/MachineFunction.h"
Evan Cheng8b56a902008-09-22 22:21:38 +000019#include "llvm/CodeGen/Passes.h"
Jim Laskey9d4209f2006-11-07 19:33:46 +000020#include "llvm/Target/TargetInstrInfo.h"
21#include "llvm/Target/TargetMachine.h"
Jim Laskeyc1c47c32007-01-29 23:40:33 +000022#include "llvm/Target/TargetOptions.h"
Chris Lattner16112732010-03-14 01:41:15 +000023#include "llvm/MC/MCSymbol.h"
Chris Lattner999aee22010-03-16 00:29:39 +000024#include "llvm/ADT/PointerUnion.h"
Jim Laskeyb3e789a2006-01-26 20:21:46 +000025#include "llvm/Support/Dwarf.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000026#include "llvm/Support/ErrorHandling.h"
Jim Laskey6af56812006-01-04 13:36:38 +000027using namespace llvm;
Jim Laskey9c4447a2006-03-01 20:39:36 +000028using namespace llvm::dwarf;
Jim Laskey6af56812006-01-04 13:36:38 +000029
30// Handle the Pass registration stuff necessary to use TargetData's.
Owen Andersond13db2c2010-07-21 22:09:45 +000031INITIALIZE_PASS(MachineModuleInfo, "machinemoduleinfo",
Owen Andersonce665bd2010-10-07 22:25:06 +000032 "Machine Module Information", false, false)
Devang Patel19974732007-05-03 01:11:54 +000033char MachineModuleInfo::ID = 0;
Jim Laskey063e7652006-01-17 17:31:53 +000034
Chris Lattnera70e2e32009-09-15 22:44:26 +000035// Out of line virtual method.
36MachineModuleInfoImpl::~MachineModuleInfoImpl() {}
37
Chris Lattner0220ba72010-03-15 19:09:43 +000038namespace llvm {
39class MMIAddrLabelMapCallbackPtr : CallbackVH {
40 MMIAddrLabelMap *Map;
41public:
42 MMIAddrLabelMapCallbackPtr() : Map(0) {}
43 MMIAddrLabelMapCallbackPtr(Value *V) : CallbackVH(V), Map(0) {}
Michael J. Spencere70c5262010-10-16 08:25:21 +000044
Chris Lattnerea16ea52010-03-22 23:15:57 +000045 void setPtr(BasicBlock *BB) {
46 ValueHandleBase::operator=(BB);
47 }
Michael J. Spencere70c5262010-10-16 08:25:21 +000048
Chris Lattner0220ba72010-03-15 19:09:43 +000049 void setMap(MMIAddrLabelMap *map) { Map = map; }
Michael J. Spencere70c5262010-10-16 08:25:21 +000050
Chris Lattner0220ba72010-03-15 19:09:43 +000051 virtual void deleted();
52 virtual void allUsesReplacedWith(Value *V2);
53};
Michael J. Spencere70c5262010-10-16 08:25:21 +000054
Chris Lattner0220ba72010-03-15 19:09:43 +000055class MMIAddrLabelMap {
56 MCContext &Context;
57 struct AddrLabelSymEntry {
Chris Lattner999aee22010-03-16 00:29:39 +000058 /// 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. Spencere70c5262010-10-16 08:25:21 +000061
Chris Lattner9cc0da92010-03-15 20:39:00 +000062 Function *Fn; // The containing function of the BasicBlock.
63 unsigned Index; // The index in BBCallbacks for the BasicBlock.
Chris Lattner0220ba72010-03-15 19:09:43 +000064 };
Michael J. Spencere70c5262010-10-16 08:25:21 +000065
Chris Lattner0220ba72010-03-15 19:09:43 +000066 DenseMap<AssertingVH<BasicBlock>, AddrLabelSymEntry> AddrLabelSymbols;
Michael J. Spencere70c5262010-10-16 08:25:21 +000067
Chris Lattner9cc0da92010-03-15 20:39:00 +000068 /// 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 Lattner0220ba72010-03-15 19:09:43 +000070 std::vector<MMIAddrLabelMapCallbackPtr> BBCallbacks;
Chris Lattner9cc0da92010-03-15 20:39:00 +000071
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 Lattner0220ba72010-03-15 19:09:43 +000078public:
Michael J. Spencere70c5262010-10-16 08:25:21 +000079
Chris Lattner0220ba72010-03-15 19:09:43 +000080 MMIAddrLabelMap(MCContext &context) : Context(context) {}
Chris Lattner9cc0da92010-03-15 20:39:00 +000081 ~MMIAddrLabelMap() {
82 assert(DeletedAddrLabelsNeedingEmission.empty() &&
83 "Some labels for deleted blocks never got emitted");
Michael J. Spencere70c5262010-10-16 08:25:21 +000084
Chris Lattner999aee22010-03-16 00:29:39 +000085 // 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 Lattner9cc0da92010-03-15 20:39:00 +000090 }
Michael J. Spencere70c5262010-10-16 08:25:21 +000091
Chris Lattner999aee22010-03-16 00:29:39 +000092 MCSymbol *getAddrLabelSymbol(BasicBlock *BB);
93 std::vector<MCSymbol*> getAddrLabelSymbolToEmit(BasicBlock *BB);
94
Michael J. Spencere70c5262010-10-16 08:25:21 +000095 void takeDeletedSymbolsForFunction(Function *F,
Chris Lattner9cc0da92010-03-15 20:39:00 +000096 std::vector<MCSymbol*> &Result);
97
Chris Lattner0220ba72010-03-15 19:09:43 +000098 void UpdateForDeletedBlock(BasicBlock *BB);
99 void UpdateForRAUWBlock(BasicBlock *Old, BasicBlock *New);
100};
101}
102
103MCSymbol *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. Spencere70c5262010-10-16 08:25:21 +0000107
Chris Lattner0220ba72010-03-15 19:09:43 +0000108 // If we already had an entry for this block, just return it.
Chris Lattner999aee22010-03-16 00:29:39 +0000109 if (!Entry.Symbols.isNull()) {
Chris Lattner9cc0da92010-03-15 20:39:00 +0000110 assert(BB->getParent() == Entry.Fn && "Parent changed");
Chris Lattner999aee22010-03-16 00:29:39 +0000111 if (Entry.Symbols.is<MCSymbol*>())
112 return Entry.Symbols.get<MCSymbol*>();
113 return (*Entry.Symbols.get<std::vector<MCSymbol*>*>())[0];
Chris Lattner9cc0da92010-03-15 20:39:00 +0000114 }
Michael J. Spencere70c5262010-10-16 08:25:21 +0000115
Chris Lattner0220ba72010-03-15 19:09:43 +0000116 // 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 Lattner9cc0da92010-03-15 20:39:00 +0000121 Entry.Fn = BB->getParent();
Chris Lattner999aee22010-03-16 00:29:39 +0000122 MCSymbol *Result = Context.CreateTempSymbol();
123 Entry.Symbols = Result;
124 return Result;
Chris Lattner0220ba72010-03-15 19:09:43 +0000125}
126
Chris Lattner999aee22010-03-16 00:29:39 +0000127std::vector<MCSymbol*>
128MMIAddrLabelMap::getAddrLabelSymbolToEmit(BasicBlock *BB) {
129 assert(BB->hasAddressTaken() &&
130 "Shouldn't get label for block without address taken");
131 AddrLabelSymEntry &Entry = AddrLabelSymbols[BB];
Michael J. Spencere70c5262010-10-16 08:25:21 +0000132
Chris Lattner999aee22010-03-16 00:29:39 +0000133 std::vector<MCSymbol*> Result;
Michael J. Spencere70c5262010-10-16 08:25:21 +0000134
Chris Lattner999aee22010-03-16 00:29:39 +0000135 // 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 Lattner9cc0da92010-03-15 20:39:00 +0000146/// takeDeletedSymbolsForFunction - If we have any deleted symbols for F, return
147/// them.
148void MMIAddrLabelMap::
149takeDeletedSymbolsForFunction(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. Spencere70c5262010-10-16 08:25:21 +0000155
Chris Lattner9cc0da92010-03-15 20:39:00 +0000156 // Otherwise, take the list.
157 std::swap(Result, I->second);
158 DeletedAddrLabelsNeedingEmission.erase(I);
159}
160
161
Chris Lattner0220ba72010-03-15 19:09:43 +0000162void 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 Lattner999aee22010-03-16 00:29:39 +0000168 assert(!Entry.Symbols.isNull() && "Didn't have a symbol, why a callback?");
Chris Lattner0220ba72010-03-15 19:09:43 +0000169 BBCallbacks[Entry.Index] = 0; // Clear the callback.
170
Chris Lattner9cc0da92010-03-15 20:39:00 +0000171 assert((BB->getParent() == 0 || BB->getParent() == Entry.Fn) &&
172 "Block/parent mismatch");
Chris Lattner999aee22010-03-16 00:29:39 +0000173
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. Spencere70c5262010-10-16 08:25:21 +0000178
Chris Lattner999aee22010-03-16 00:29:39 +0000179 // 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. Spencere70c5262010-10-16 08:25:21 +0000190
Chris Lattner999aee22010-03-16 00:29:39 +0000191 // 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. Spencere70c5262010-10-16 08:25:21 +0000198
Chris Lattner999aee22010-03-16 00:29:39 +0000199 // The entry is deleted, free the memory associated with the symbol list.
200 delete Syms;
201 }
Chris Lattner0220ba72010-03-15 19:09:43 +0000202}
203
204void 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 Lattner999aee22010-03-16 00:29:39 +0000208 assert(!OldEntry.Symbols.isNull() && "Didn't have a symbol, why a callback?");
209
210 AddrLabelSymEntry &NewEntry = AddrLabelSymbols[New];
211
Chris Lattner0220ba72010-03-15 19:09:43 +0000212 // If New is not address taken, just move our symbol over to it.
Chris Lattner999aee22010-03-16 00:29:39 +0000213 if (NewEntry.Symbols.isNull()) {
Chris Lattnerea16ea52010-03-22 23:15:57 +0000214 BBCallbacks[OldEntry.Index].setPtr(New); // Update the callback.
Chris Lattner999aee22010-03-16 00:29:39 +0000215 NewEntry = OldEntry; // Set New's entry.
216 return;
Chris Lattner0220ba72010-03-15 19:09:43 +0000217 }
Chris Lattner999aee22010-03-16 00:29:39 +0000218
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. Spencere70c5262010-10-16 08:25:21 +0000228
Chris Lattner999aee22010-03-16 00:29:39 +0000229 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. Spencere70c5262010-10-16 08:25:21 +0000237
Chris Lattner999aee22010-03-16 00:29:39 +0000238 // 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 Lattner0220ba72010-03-15 19:09:43 +0000242}
243
244
245void MMIAddrLabelMapCallbackPtr::deleted() {
246 Map->UpdateForDeletedBlock(cast<BasicBlock>(getValPtr()));
247}
248
249void MMIAddrLabelMapCallbackPtr::allUsesReplacedWith(Value *V2) {
250 Map->UpdateForRAUWBlock(cast<BasicBlock>(getValPtr()), cast<BasicBlock>(V2));
251}
252
253
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000254//===----------------------------------------------------------------------===//
Eric Christophercf296972009-08-26 21:27:09 +0000255
Chris Lattner11d53c12010-03-13 20:55:24 +0000256MachineModuleInfo::MachineModuleInfo(const MCAsmInfo &MAI)
Owen Anderson90c579d2010-08-06 18:33:48 +0000257: ImmutablePass(ID), Context(MAI),
Chris Lattner63d78362010-03-14 08:36:50 +0000258 ObjFileMMI(0),
Michael J. Spencer84ac4d52010-10-16 08:25:41 +0000259 CurCallSite(0), CallsEHReturn(0), CallsUnwindInit(0), DbgInfoAvailable(false),
260 CallsExternalFunctionWithFloatingPointArguments(false) {
Eric Christopherd44fff72009-08-26 21:30:49 +0000261 // Always emit some info, by default "no personality" info.
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000262 Personalities.push_back(NULL);
Chris Lattner0220ba72010-03-15 19:09:43 +0000263 AddrLabelSymbols = 0;
Chris Lattner421ccd92010-04-06 00:51:52 +0000264 TheModule = 0;
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000265}
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000266
Chris Lattner11d53c12010-03-13 20:55:24 +0000267MachineModuleInfo::MachineModuleInfo()
Owen Anderson90c579d2010-08-06 18:33:48 +0000268: ImmutablePass(ID), Context(*(MCAsmInfo*)0) {
Chris Lattner11d53c12010-03-13 20:55:24 +0000269 assert(0 && "This MachineModuleInfo constructor should never be called, MMI "
270 "should always be explicitly constructed by LLVMTargetMachine");
271 abort();
272}
273
Chris Lattnera70e2e32009-09-15 22:44:26 +0000274MachineModuleInfo::~MachineModuleInfo() {
Chris Lattnerf1854552009-09-16 05:26:00 +0000275 delete ObjFileMMI;
Michael J. Spencere70c5262010-10-16 08:25:21 +0000276
Chris Lattner0220ba72010-03-15 19:09:43 +0000277 // FIXME: Why isn't doFinalization being called??
278 //assert(AddrLabelSymbols == 0 && "doFinalization not called");
279 delete AddrLabelSymbols;
280 AddrLabelSymbols = 0;
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000281}
282
Jim Laskey6da18642007-01-26 21:38:26 +0000283/// doInitialization - Initialize the state for a new module.
Jim Laskeyb2efb852006-01-04 22:28:25 +0000284///
Jim Laskey6da18642007-01-26 21:38:26 +0000285bool MachineModuleInfo::doInitialization() {
Chris Lattner0220ba72010-03-15 19:09:43 +0000286 assert(AddrLabelSymbols == 0 && "Improperly initialized");
Jim Laskeyb2efb852006-01-04 22:28:25 +0000287 return false;
Jim Laskey6af56812006-01-04 13:36:38 +0000288}
289
Jim Laskey6da18642007-01-26 21:38:26 +0000290/// doFinalization - Tear down the state after completion of a module.
Jim Laskeyb2efb852006-01-04 22:28:25 +0000291///
Jim Laskey6da18642007-01-26 21:38:26 +0000292bool MachineModuleInfo::doFinalization() {
Chris Lattner0220ba72010-03-15 19:09:43 +0000293 delete AddrLabelSymbols;
294 AddrLabelSymbols = 0;
Jim Laskeyb2efb852006-01-04 22:28:25 +0000295 return false;
296}
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000297
Jim Laskey6da18642007-01-26 21:38:26 +0000298/// EndFunction - Discard function meta information.
Jim Laskey41886992006-04-07 16:34:46 +0000299///
Jim Laskey6da18642007-01-26 21:38:26 +0000300void MachineModuleInfo::EndFunction() {
Jim Laskey41886992006-04-07 16:34:46 +0000301 // Clean up frame info.
Jim Laskey41886992006-04-07 16:34:46 +0000302 FrameMoves.clear();
Eric Christophercf296972009-08-26 21:27:09 +0000303
Jim Laskey59667fe2007-02-21 22:38:31 +0000304 // Clean up exception info.
305 LandingPads.clear();
Jim Grosbachca752c92010-01-28 01:45:32 +0000306 CallSiteMap.clear();
Jim Laskey59667fe2007-02-21 22:38:31 +0000307 TypeInfos.clear();
Duncan Sands73ef58a2007-06-02 16:53:42 +0000308 FilterIds.clear();
Duncan Sands14da32a2007-07-05 15:15:01 +0000309 FilterEnds.clear();
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000310 CallsEHReturn = 0;
311 CallsUnwindInit = 0;
Devang Patel85d29e22009-10-08 20:41:17 +0000312 VariableDbgInfo.clear();
Jim Laskey41886992006-04-07 16:34:46 +0000313}
314
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000315/// AnalyzeModule - Scan the module for global debug information.
316///
Dan Gohman46510a72010-04-15 01:51:59 +0000317void MachineModuleInfo::AnalyzeModule(const Module &M) {
Chris Lattner401e10c2009-07-20 06:14:25 +0000318 // Insert functions in the llvm.used array (but not llvm.compiler.used) into
319 // UsedFunctions.
Dan Gohman46510a72010-04-15 01:51:59 +0000320 const GlobalVariable *GV = M.getGlobalVariable("llvm.used");
Dale Johannesen48ae02f2008-01-16 19:59:28 +0000321 if (!GV || !GV->hasInitializer()) return;
322
323 // Should be an array of 'i8*'.
Dan Gohman46510a72010-04-15 01:51:59 +0000324 const ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
Dale Johannesen48ae02f2008-01-16 19:59:28 +0000325 if (InitList == 0) return;
326
Chris Lattner1d5c4932009-07-20 06:05:50 +0000327 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
Dan Gohman46510a72010-04-15 01:51:59 +0000328 if (const Function *F =
Chris Lattner1d5c4932009-07-20 06:05:50 +0000329 dyn_cast<Function>(InitList->getOperand(i)->stripPointerCasts()))
330 UsedFunctions.insert(F);
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000331}
332
Chris Lattner0220ba72010-03-15 19:09:43 +0000333//===- Address of Block Management ----------------------------------------===//
334
335
Chris Lattner3b9d6212010-03-14 17:53:23 +0000336/// getAddrLabelSymbol - Return the symbol to be used for the specified basic
337/// block when its address is taken. This cannot be its normal LBB label
338/// because the block may be accessed outside its containing function.
339MCSymbol *MachineModuleInfo::getAddrLabelSymbol(const BasicBlock *BB) {
Chris Lattner0220ba72010-03-15 19:09:43 +0000340 // Lazily create AddrLabelSymbols.
341 if (AddrLabelSymbols == 0)
342 AddrLabelSymbols = new MMIAddrLabelMap(Context);
343 return AddrLabelSymbols->getAddrLabelSymbol(const_cast<BasicBlock*>(BB));
Chris Lattner3b9d6212010-03-14 17:53:23 +0000344}
345
Chris Lattner999aee22010-03-16 00:29:39 +0000346/// getAddrLabelSymbolToEmit - Return the symbol to be used for the specified
347/// basic block when its address is taken. If other blocks were RAUW'd to
348/// this one, we may have to emit them as well, return the whole set.
349std::vector<MCSymbol*> MachineModuleInfo::
350getAddrLabelSymbolToEmit(const BasicBlock *BB) {
351 // Lazily create AddrLabelSymbols.
352 if (AddrLabelSymbols == 0)
353 AddrLabelSymbols = new MMIAddrLabelMap(Context);
354 return AddrLabelSymbols->getAddrLabelSymbolToEmit(const_cast<BasicBlock*>(BB));
355}
356
357
Chris Lattner9cc0da92010-03-15 20:39:00 +0000358/// takeDeletedSymbolsForFunction - If the specified function has had any
359/// references to address-taken blocks generated, but the block got deleted,
360/// return the symbol now so we can emit it. This prevents emitting a
361/// reference to a symbol that has no definition.
362void MachineModuleInfo::
363takeDeletedSymbolsForFunction(const Function *F,
364 std::vector<MCSymbol*> &Result) {
365 // If no blocks have had their addresses taken, we're done.
366 if (AddrLabelSymbols == 0) return;
367 return AddrLabelSymbols->
368 takeDeletedSymbolsForFunction(const_cast<Function*>(F), Result);
369}
Chris Lattner3b9d6212010-03-14 17:53:23 +0000370
Chris Lattner0220ba72010-03-15 19:09:43 +0000371//===- EH -----------------------------------------------------------------===//
Jim Laskey59667fe2007-02-21 22:38:31 +0000372
373/// getOrCreateLandingPadInfo - Find or create an LandingPadInfo for the
374/// specified MachineBasicBlock.
Bill Wendling10fff602008-07-03 22:53:42 +0000375LandingPadInfo &MachineModuleInfo::getOrCreateLandingPadInfo
376 (MachineBasicBlock *LandingPad) {
Jim Laskey59667fe2007-02-21 22:38:31 +0000377 unsigned N = LandingPads.size();
378 for (unsigned i = 0; i < N; ++i) {
Jim Laskey59e84342007-03-01 20:25:32 +0000379 LandingPadInfo &LP = LandingPads[i];
380 if (LP.LandingPadBlock == LandingPad)
381 return LP;
Jim Laskey59667fe2007-02-21 22:38:31 +0000382 }
Eric Christophercf296972009-08-26 21:27:09 +0000383
Jim Laskey59667fe2007-02-21 22:38:31 +0000384 LandingPads.push_back(LandingPadInfo(LandingPad));
385 return LandingPads[N];
386}
387
388/// addInvoke - Provide the begin and end labels of an invoke style call and
389/// associate it with a try landing pad block.
390void MachineModuleInfo::addInvoke(MachineBasicBlock *LandingPad,
Chris Lattner16112732010-03-14 01:41:15 +0000391 MCSymbol *BeginLabel, MCSymbol *EndLabel) {
Jim Laskey59e84342007-03-01 20:25:32 +0000392 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
Anton Korobeynikoveeb37e02007-05-10 22:34:59 +0000393 LP.BeginLabels.push_back(BeginLabel);
394 LP.EndLabels.push_back(EndLabel);
Jim Laskey59667fe2007-02-21 22:38:31 +0000395}
396
397/// addLandingPad - Provide the label of a try LandingPad block.
398///
Chris Lattner7561d482010-03-14 02:33:54 +0000399MCSymbol *MachineModuleInfo::addLandingPad(MachineBasicBlock *LandingPad) {
Chris Lattner63d78362010-03-14 08:36:50 +0000400 MCSymbol *LandingPadLabel = Context.CreateTempSymbol();
Jim Laskey59e84342007-03-01 20:25:32 +0000401 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
Eric Christophercf296972009-08-26 21:27:09 +0000402 LP.LandingPadLabel = LandingPadLabel;
Chris Lattner7561d482010-03-14 02:33:54 +0000403 return LandingPadLabel;
Jim Laskey59667fe2007-02-21 22:38:31 +0000404}
405
406/// addPersonality - Provide the personality function for the exception
407/// information.
408void MachineModuleInfo::addPersonality(MachineBasicBlock *LandingPad,
Dan Gohman46510a72010-04-15 01:51:59 +0000409 const Function *Personality) {
Jim Laskey59e84342007-03-01 20:25:32 +0000410 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000411 LP.Personality = Personality;
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +0000412
Bill Wendling10fff602008-07-03 22:53:42 +0000413 for (unsigned i = 0; i < Personalities.size(); ++i)
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000414 if (Personalities[i] == Personality)
415 return;
Eric Christophercf296972009-08-26 21:27:09 +0000416
Eric Christopherd44fff72009-08-26 21:30:49 +0000417 // If this is the first personality we're adding go
418 // ahead and add it at the beginning.
419 if (Personalities[0] == NULL)
420 Personalities[0] = Personality;
421 else
422 Personalities.push_back(Personality);
Jim Laskey59667fe2007-02-21 22:38:31 +0000423}
424
425/// addCatchTypeInfo - Provide the catch typeinfo for a landing pad.
426///
427void MachineModuleInfo::addCatchTypeInfo(MachineBasicBlock *LandingPad,
Dan Gohman46510a72010-04-15 01:51:59 +0000428 std::vector<const GlobalVariable *> &TyInfo) {
Jim Laskey59e84342007-03-01 20:25:32 +0000429 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
Jim Laskey59667fe2007-02-21 22:38:31 +0000430 for (unsigned N = TyInfo.size(); N; --N)
Jim Laskey59e84342007-03-01 20:25:32 +0000431 LP.TypeIds.push_back(getTypeIDFor(TyInfo[N - 1]));
Jim Laskey59667fe2007-02-21 22:38:31 +0000432}
Duncan Sands73ef58a2007-06-02 16:53:42 +0000433
434/// addFilterTypeInfo - Provide the filter typeinfo for a landing pad.
Jim Laskey59e84342007-03-01 20:25:32 +0000435///
Duncan Sands73ef58a2007-06-02 16:53:42 +0000436void MachineModuleInfo::addFilterTypeInfo(MachineBasicBlock *LandingPad,
Dan Gohman46510a72010-04-15 01:51:59 +0000437 std::vector<const GlobalVariable *> &TyInfo) {
Jim Laskey59e84342007-03-01 20:25:32 +0000438 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
Bill Wendling49255672008-07-07 21:41:57 +0000439 std::vector<unsigned> IdsInFilter(TyInfo.size());
Bill Wendling10fff602008-07-03 22:53:42 +0000440 for (unsigned I = 0, E = TyInfo.size(); I != E; ++I)
Duncan Sands73ef58a2007-06-02 16:53:42 +0000441 IdsInFilter[I] = getTypeIDFor(TyInfo[I]);
442 LP.TypeIds.push_back(getFilterIDFor(IdsInFilter));
Jim Laskey59e84342007-03-01 20:25:32 +0000443}
444
Duncan Sands6590b042007-08-27 15:47:50 +0000445/// addCleanup - Add a cleanup action for a landing pad.
446///
447void MachineModuleInfo::addCleanup(MachineBasicBlock *LandingPad) {
448 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
449 LP.TypeIds.push_back(0);
450}
451
Jim Laskey59667fe2007-02-21 22:38:31 +0000452/// TidyLandingPads - Remap landing pad labels and remove any deleted landing
453/// pads.
Bill Wendling47639fc2010-04-16 08:46:10 +0000454void MachineModuleInfo::TidyLandingPads(DenseMap<MCSymbol*, uintptr_t> *LPMap) {
Jim Laskey59667fe2007-02-21 22:38:31 +0000455 for (unsigned i = 0; i != LandingPads.size(); ) {
456 LandingPadInfo &LandingPad = LandingPads[i];
Bill Wendling47639fc2010-04-16 08:46:10 +0000457 if (LandingPad.LandingPadLabel &&
458 !LandingPad.LandingPadLabel->isDefined() &&
459 (!LPMap || (*LPMap)[LandingPad.LandingPadLabel] == 0))
Chris Lattnera34ec2292010-03-09 01:51:43 +0000460 LandingPad.LandingPadLabel = 0;
Anton Korobeynikoveeb37e02007-05-10 22:34:59 +0000461
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000462 // Special case: we *should* emit LPs with null LP MBB. This indicates
Duncan Sands481dc722007-12-19 07:36:31 +0000463 // "nounwind" case.
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000464 if (!LandingPad.LandingPadLabel && LandingPad.LandingPadBlock) {
Jim Laskey59667fe2007-02-21 22:38:31 +0000465 LandingPads.erase(LandingPads.begin() + i);
466 continue;
467 }
Duncan Sands57810cd2007-09-05 11:27:52 +0000468
Chris Lattner16112732010-03-14 01:41:15 +0000469 for (unsigned j = 0, e = LandingPads[i].BeginLabels.size(); j != e; ++j) {
470 MCSymbol *BeginLabel = LandingPad.BeginLabels[j];
471 MCSymbol *EndLabel = LandingPad.EndLabels[j];
Bill Wendling47639fc2010-04-16 08:46:10 +0000472 if ((BeginLabel->isDefined() ||
473 (LPMap && (*LPMap)[BeginLabel] != 0)) &&
474 (EndLabel->isDefined() ||
475 (LPMap && (*LPMap)[EndLabel] != 0))) continue;
Michael J. Spencere70c5262010-10-16 08:25:21 +0000476
Chris Lattner16112732010-03-14 01:41:15 +0000477 LandingPad.BeginLabels.erase(LandingPad.BeginLabels.begin() + j);
478 LandingPad.EndLabels.erase(LandingPad.EndLabels.begin() + j);
479 --j, --e;
Anton Korobeynikoveeb37e02007-05-10 22:34:59 +0000480 }
Duncan Sands57810cd2007-09-05 11:27:52 +0000481
482 // Remove landing pads with no try-ranges.
Dan Gohman30359592008-01-29 13:02:09 +0000483 if (LandingPads[i].BeginLabels.empty()) {
Duncan Sands57810cd2007-09-05 11:27:52 +0000484 LandingPads.erase(LandingPads.begin() + i);
485 continue;
486 }
487
488 // If there is no landing pad, ensure that the list of typeids is empty.
489 // If the only typeid is a cleanup, this is the same as having no typeids.
490 if (!LandingPad.LandingPadBlock ||
491 (LandingPad.TypeIds.size() == 1 && !LandingPad.TypeIds[0]))
492 LandingPad.TypeIds.clear();
Jim Laskey59667fe2007-02-21 22:38:31 +0000493 ++i;
494 }
495}
496
Eric Christophercf296972009-08-26 21:27:09 +0000497/// getTypeIDFor - Return the type id for the specified typeinfo. This is
Jim Laskey59667fe2007-02-21 22:38:31 +0000498/// function wide.
Dan Gohman46510a72010-04-15 01:51:59 +0000499unsigned MachineModuleInfo::getTypeIDFor(const GlobalVariable *TI) {
Bill Wendling10fff602008-07-03 22:53:42 +0000500 for (unsigned i = 0, N = TypeInfos.size(); i != N; ++i)
501 if (TypeInfos[i] == TI) return i + 1;
Jim Laskey59667fe2007-02-21 22:38:31 +0000502
503 TypeInfos.push_back(TI);
504 return TypeInfos.size();
505}
506
Duncan Sands73ef58a2007-06-02 16:53:42 +0000507/// getFilterIDFor - Return the filter id for the specified typeinfos. This is
508/// function wide.
Bill Wendling914c9702008-06-27 01:27:56 +0000509int MachineModuleInfo::getFilterIDFor(std::vector<unsigned> &TyIds) {
Duncan Sands14da32a2007-07-05 15:15:01 +0000510 // If the new filter coincides with the tail of an existing filter, then
511 // re-use the existing filter. Folding filters more than this requires
512 // re-ordering filters and/or their elements - probably not worth it.
513 for (std::vector<unsigned>::iterator I = FilterEnds.begin(),
514 E = FilterEnds.end(); I != E; ++I) {
Bill Wendling914c9702008-06-27 01:27:56 +0000515 unsigned i = *I, j = TyIds.size();
Duncan Sands14da32a2007-07-05 15:15:01 +0000516
517 while (i && j)
518 if (FilterIds[--i] != TyIds[--j])
519 goto try_next;
520
521 if (!j)
522 // The new filter coincides with range [i, end) of the existing filter.
523 return -(1 + i);
Bill Wendling914c9702008-06-27 01:27:56 +0000524
Duncan Sands14da32a2007-07-05 15:15:01 +0000525try_next:;
526 }
527
528 // Add the new filter.
Bill Wendling914c9702008-06-27 01:27:56 +0000529 int FilterID = -(1 + FilterIds.size());
530 FilterIds.reserve(FilterIds.size() + TyIds.size() + 1);
531 for (unsigned I = 0, N = TyIds.size(); I != N; ++I)
Duncan Sands73ef58a2007-06-02 16:53:42 +0000532 FilterIds.push_back(TyIds[I]);
Bill Wendling914c9702008-06-27 01:27:56 +0000533 FilterEnds.push_back(FilterIds.size());
Duncan Sands73ef58a2007-06-02 16:53:42 +0000534 FilterIds.push_back(0); // terminator
535 return FilterID;
536}
537
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000538/// getPersonality - Return the personality function for the current function.
Dan Gohman46510a72010-04-15 01:51:59 +0000539const Function *MachineModuleInfo::getPersonality() const {
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +0000540 // FIXME: Until PR1414 will be fixed, we're using 1 personality function per
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000541 // function
542 return !LandingPads.empty() ? LandingPads[0].Personality : NULL;
Jim Laskey59667fe2007-02-21 22:38:31 +0000543}
544
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000545/// getPersonalityIndex - Return unique index for current personality
Eric Christopher5e365e22009-08-26 21:44:57 +0000546/// function. NULL/first personality function should always get zero index.
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000547unsigned MachineModuleInfo::getPersonalityIndex() const {
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000548 const Function* Personality = NULL;
Eric Christophercf296972009-08-26 21:27:09 +0000549
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000550 // Scan landing pads. If there is at least one non-NULL personality - use it.
Bill Wendling10fff602008-07-03 22:53:42 +0000551 for (unsigned i = 0; i != LandingPads.size(); ++i)
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000552 if (LandingPads[i].Personality) {
553 Personality = LandingPads[i].Personality;
554 break;
555 }
Eric Christophercf296972009-08-26 21:27:09 +0000556
Bill Wendling10fff602008-07-03 22:53:42 +0000557 for (unsigned i = 0; i < Personalities.size(); ++i) {
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000558 if (Personalities[i] == Personality)
559 return i;
Bill Wendling10fff602008-07-03 22:53:42 +0000560 }
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000561
Eric Christopher5e365e22009-08-26 21:44:57 +0000562 // This will happen if the current personality function is
563 // in the zero index.
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000564 return 0;
565}