blob: c9f3ec37447392c5187ac6a8a52661505f890be2 [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"
Evan Chenge76a33b2011-07-20 05:58:47 +000020#include "llvm/Target/TargetAsmInfo.h"
21#include "llvm/MC/MCObjectFileInfo.h"
Chris Lattner16112732010-03-14 01:41:15 +000022#include "llvm/MC/MCSymbol.h"
Chris Lattner999aee22010-03-16 00:29:39 +000023#include "llvm/ADT/PointerUnion.h"
Jim Laskeyb3e789a2006-01-26 20:21:46 +000024#include "llvm/Support/Dwarf.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000025#include "llvm/Support/ErrorHandling.h"
Jim Laskey6af56812006-01-04 13:36:38 +000026using namespace llvm;
Jim Laskey9c4447a2006-03-01 20:39:36 +000027using namespace llvm::dwarf;
Jim Laskey6af56812006-01-04 13:36:38 +000028
29// Handle the Pass registration stuff necessary to use TargetData's.
Owen Andersond13db2c2010-07-21 22:09:45 +000030INITIALIZE_PASS(MachineModuleInfo, "machinemoduleinfo",
Owen Andersonce665bd2010-10-07 22:25:06 +000031 "Machine Module Information", false, false)
Devang Patel19974732007-05-03 01:11:54 +000032char MachineModuleInfo::ID = 0;
Jim Laskey063e7652006-01-17 17:31:53 +000033
Chris Lattnera70e2e32009-09-15 22:44:26 +000034// Out of line virtual method.
35MachineModuleInfoImpl::~MachineModuleInfoImpl() {}
36
Chris Lattner0220ba72010-03-15 19:09:43 +000037namespace llvm {
38class MMIAddrLabelMapCallbackPtr : CallbackVH {
39 MMIAddrLabelMap *Map;
40public:
41 MMIAddrLabelMapCallbackPtr() : Map(0) {}
42 MMIAddrLabelMapCallbackPtr(Value *V) : CallbackVH(V), Map(0) {}
Michael J. Spencere70c5262010-10-16 08:25:21 +000043
Chris Lattnerea16ea52010-03-22 23:15:57 +000044 void setPtr(BasicBlock *BB) {
45 ValueHandleBase::operator=(BB);
46 }
Michael J. Spencere70c5262010-10-16 08:25:21 +000047
Chris Lattner0220ba72010-03-15 19:09:43 +000048 void setMap(MMIAddrLabelMap *map) { Map = map; }
Michael J. Spencere70c5262010-10-16 08:25:21 +000049
Chris Lattner0220ba72010-03-15 19:09:43 +000050 virtual void deleted();
51 virtual void allUsesReplacedWith(Value *V2);
52};
Michael J. Spencere70c5262010-10-16 08:25:21 +000053
Chris Lattner0220ba72010-03-15 19:09:43 +000054class MMIAddrLabelMap {
55 MCContext &Context;
56 struct AddrLabelSymEntry {
Chris Lattner999aee22010-03-16 00:29:39 +000057 /// Symbols - The symbols for the label. This is a pointer union that is
58 /// either one symbol (the common case) or a list of symbols.
59 PointerUnion<MCSymbol *, std::vector<MCSymbol*>*> Symbols;
Michael J. Spencere70c5262010-10-16 08:25:21 +000060
Chris Lattner9cc0da92010-03-15 20:39:00 +000061 Function *Fn; // The containing function of the BasicBlock.
62 unsigned Index; // The index in BBCallbacks for the BasicBlock.
Chris Lattner0220ba72010-03-15 19:09:43 +000063 };
Michael J. Spencere70c5262010-10-16 08:25:21 +000064
Chris Lattner0220ba72010-03-15 19:09:43 +000065 DenseMap<AssertingVH<BasicBlock>, AddrLabelSymEntry> AddrLabelSymbols;
Michael J. Spencere70c5262010-10-16 08:25:21 +000066
Chris Lattner9cc0da92010-03-15 20:39:00 +000067 /// BBCallbacks - Callbacks for the BasicBlock's that we have entries for. We
68 /// use this so we get notified if a block is deleted or RAUWd.
Chris Lattner0220ba72010-03-15 19:09:43 +000069 std::vector<MMIAddrLabelMapCallbackPtr> BBCallbacks;
Chris Lattner9cc0da92010-03-15 20:39:00 +000070
71 /// DeletedAddrLabelsNeedingEmission - This is a per-function list of symbols
72 /// whose corresponding BasicBlock got deleted. These symbols need to be
73 /// emitted at some point in the file, so AsmPrinter emits them after the
74 /// function body.
75 DenseMap<AssertingVH<Function>, std::vector<MCSymbol*> >
76 DeletedAddrLabelsNeedingEmission;
Chris Lattner0220ba72010-03-15 19:09:43 +000077public:
Michael J. Spencere70c5262010-10-16 08:25:21 +000078
Chris Lattner0220ba72010-03-15 19:09:43 +000079 MMIAddrLabelMap(MCContext &context) : Context(context) {}
Chris Lattner9cc0da92010-03-15 20:39:00 +000080 ~MMIAddrLabelMap() {
81 assert(DeletedAddrLabelsNeedingEmission.empty() &&
82 "Some labels for deleted blocks never got emitted");
Michael J. Spencere70c5262010-10-16 08:25:21 +000083
Chris Lattner999aee22010-03-16 00:29:39 +000084 // Deallocate any of the 'list of symbols' case.
85 for (DenseMap<AssertingVH<BasicBlock>, AddrLabelSymEntry>::iterator
86 I = AddrLabelSymbols.begin(), E = AddrLabelSymbols.end(); I != E; ++I)
87 if (I->second.Symbols.is<std::vector<MCSymbol*>*>())
88 delete I->second.Symbols.get<std::vector<MCSymbol*>*>();
Chris Lattner9cc0da92010-03-15 20:39:00 +000089 }
Michael J. Spencere70c5262010-10-16 08:25:21 +000090
Chris Lattner999aee22010-03-16 00:29:39 +000091 MCSymbol *getAddrLabelSymbol(BasicBlock *BB);
92 std::vector<MCSymbol*> getAddrLabelSymbolToEmit(BasicBlock *BB);
93
Michael J. Spencere70c5262010-10-16 08:25:21 +000094 void takeDeletedSymbolsForFunction(Function *F,
Chris Lattner9cc0da92010-03-15 20:39:00 +000095 std::vector<MCSymbol*> &Result);
96
Chris Lattner0220ba72010-03-15 19:09:43 +000097 void UpdateForDeletedBlock(BasicBlock *BB);
98 void UpdateForRAUWBlock(BasicBlock *Old, BasicBlock *New);
99};
100}
101
102MCSymbol *MMIAddrLabelMap::getAddrLabelSymbol(BasicBlock *BB) {
103 assert(BB->hasAddressTaken() &&
104 "Shouldn't get label for block without address taken");
105 AddrLabelSymEntry &Entry = AddrLabelSymbols[BB];
Michael J. Spencere70c5262010-10-16 08:25:21 +0000106
Chris Lattner0220ba72010-03-15 19:09:43 +0000107 // If we already had an entry for this block, just return it.
Chris Lattner999aee22010-03-16 00:29:39 +0000108 if (!Entry.Symbols.isNull()) {
Chris Lattner9cc0da92010-03-15 20:39:00 +0000109 assert(BB->getParent() == Entry.Fn && "Parent changed");
Chris Lattner999aee22010-03-16 00:29:39 +0000110 if (Entry.Symbols.is<MCSymbol*>())
111 return Entry.Symbols.get<MCSymbol*>();
112 return (*Entry.Symbols.get<std::vector<MCSymbol*>*>())[0];
Chris Lattner9cc0da92010-03-15 20:39:00 +0000113 }
Michael J. Spencere70c5262010-10-16 08:25:21 +0000114
Chris Lattner0220ba72010-03-15 19:09:43 +0000115 // Otherwise, this is a new entry, create a new symbol for it and add an
116 // entry to BBCallbacks so we can be notified if the BB is deleted or RAUWd.
117 BBCallbacks.push_back(BB);
118 BBCallbacks.back().setMap(this);
119 Entry.Index = BBCallbacks.size()-1;
Chris Lattner9cc0da92010-03-15 20:39:00 +0000120 Entry.Fn = BB->getParent();
Chris Lattner999aee22010-03-16 00:29:39 +0000121 MCSymbol *Result = Context.CreateTempSymbol();
122 Entry.Symbols = Result;
123 return Result;
Chris Lattner0220ba72010-03-15 19:09:43 +0000124}
125
Chris Lattner999aee22010-03-16 00:29:39 +0000126std::vector<MCSymbol*>
127MMIAddrLabelMap::getAddrLabelSymbolToEmit(BasicBlock *BB) {
128 assert(BB->hasAddressTaken() &&
129 "Shouldn't get label for block without address taken");
130 AddrLabelSymEntry &Entry = AddrLabelSymbols[BB];
Michael J. Spencere70c5262010-10-16 08:25:21 +0000131
Chris Lattner999aee22010-03-16 00:29:39 +0000132 std::vector<MCSymbol*> Result;
Michael J. Spencere70c5262010-10-16 08:25:21 +0000133
Chris Lattner999aee22010-03-16 00:29:39 +0000134 // If we already had an entry for this block, just return it.
135 if (Entry.Symbols.isNull())
136 Result.push_back(getAddrLabelSymbol(BB));
137 else if (MCSymbol *Sym = Entry.Symbols.dyn_cast<MCSymbol*>())
138 Result.push_back(Sym);
139 else
140 Result = *Entry.Symbols.get<std::vector<MCSymbol*>*>();
141 return Result;
142}
143
144
Chris Lattner9cc0da92010-03-15 20:39:00 +0000145/// takeDeletedSymbolsForFunction - If we have any deleted symbols for F, return
146/// them.
147void MMIAddrLabelMap::
148takeDeletedSymbolsForFunction(Function *F, std::vector<MCSymbol*> &Result) {
149 DenseMap<AssertingVH<Function>, std::vector<MCSymbol*> >::iterator I =
150 DeletedAddrLabelsNeedingEmission.find(F);
151
152 // If there are no entries for the function, just return.
153 if (I == DeletedAddrLabelsNeedingEmission.end()) return;
Michael J. Spencere70c5262010-10-16 08:25:21 +0000154
Chris Lattner9cc0da92010-03-15 20:39:00 +0000155 // Otherwise, take the list.
156 std::swap(Result, I->second);
157 DeletedAddrLabelsNeedingEmission.erase(I);
158}
159
160
Chris Lattner0220ba72010-03-15 19:09:43 +0000161void MMIAddrLabelMap::UpdateForDeletedBlock(BasicBlock *BB) {
162 // If the block got deleted, there is no need for the symbol. If the symbol
163 // was already emitted, we can just forget about it, otherwise we need to
164 // queue it up for later emission when the function is output.
165 AddrLabelSymEntry Entry = AddrLabelSymbols[BB];
166 AddrLabelSymbols.erase(BB);
Chris Lattner999aee22010-03-16 00:29:39 +0000167 assert(!Entry.Symbols.isNull() && "Didn't have a symbol, why a callback?");
Chris Lattner0220ba72010-03-15 19:09:43 +0000168 BBCallbacks[Entry.Index] = 0; // Clear the callback.
169
Chris Lattner9cc0da92010-03-15 20:39:00 +0000170 assert((BB->getParent() == 0 || BB->getParent() == Entry.Fn) &&
171 "Block/parent mismatch");
Chris Lattner999aee22010-03-16 00:29:39 +0000172
173 // Handle both the single and the multiple symbols cases.
174 if (MCSymbol *Sym = Entry.Symbols.dyn_cast<MCSymbol*>()) {
175 if (Sym->isDefined())
176 return;
Michael J. Spencere70c5262010-10-16 08:25:21 +0000177
Chris Lattner999aee22010-03-16 00:29:39 +0000178 // If the block is not yet defined, we need to emit it at the end of the
179 // function. Add the symbol to the DeletedAddrLabelsNeedingEmission list
180 // for the containing Function. Since the block is being deleted, its
181 // parent may already be removed, we have to get the function from 'Entry'.
182 DeletedAddrLabelsNeedingEmission[Entry.Fn].push_back(Sym);
183 } else {
184 std::vector<MCSymbol*> *Syms = Entry.Symbols.get<std::vector<MCSymbol*>*>();
185
186 for (unsigned i = 0, e = Syms->size(); i != e; ++i) {
187 MCSymbol *Sym = (*Syms)[i];
188 if (Sym->isDefined()) continue; // Ignore already emitted labels.
Michael J. Spencere70c5262010-10-16 08:25:21 +0000189
Chris Lattner999aee22010-03-16 00:29:39 +0000190 // If the block is not yet defined, we need to emit it at the end of the
191 // function. Add the symbol to the DeletedAddrLabelsNeedingEmission list
192 // for the containing Function. Since the block is being deleted, its
193 // parent may already be removed, we have to get the function from
194 // 'Entry'.
195 DeletedAddrLabelsNeedingEmission[Entry.Fn].push_back(Sym);
196 }
Michael J. Spencere70c5262010-10-16 08:25:21 +0000197
Chris Lattner999aee22010-03-16 00:29:39 +0000198 // The entry is deleted, free the memory associated with the symbol list.
199 delete Syms;
200 }
Chris Lattner0220ba72010-03-15 19:09:43 +0000201}
202
203void MMIAddrLabelMap::UpdateForRAUWBlock(BasicBlock *Old, BasicBlock *New) {
204 // Get the entry for the RAUW'd block and remove it from our map.
205 AddrLabelSymEntry OldEntry = AddrLabelSymbols[Old];
206 AddrLabelSymbols.erase(Old);
Chris Lattner999aee22010-03-16 00:29:39 +0000207 assert(!OldEntry.Symbols.isNull() && "Didn't have a symbol, why a callback?");
208
209 AddrLabelSymEntry &NewEntry = AddrLabelSymbols[New];
210
Chris Lattner0220ba72010-03-15 19:09:43 +0000211 // If New is not address taken, just move our symbol over to it.
Chris Lattner999aee22010-03-16 00:29:39 +0000212 if (NewEntry.Symbols.isNull()) {
Chris Lattnerea16ea52010-03-22 23:15:57 +0000213 BBCallbacks[OldEntry.Index].setPtr(New); // Update the callback.
Chris Lattner999aee22010-03-16 00:29:39 +0000214 NewEntry = OldEntry; // Set New's entry.
215 return;
Chris Lattner0220ba72010-03-15 19:09:43 +0000216 }
Chris Lattner999aee22010-03-16 00:29:39 +0000217
218 BBCallbacks[OldEntry.Index] = 0; // Update the callback.
219
220 // Otherwise, we need to add the old symbol to the new block's set. If it is
221 // just a single entry, upgrade it to a symbol list.
222 if (MCSymbol *PrevSym = NewEntry.Symbols.dyn_cast<MCSymbol*>()) {
223 std::vector<MCSymbol*> *SymList = new std::vector<MCSymbol*>();
224 SymList->push_back(PrevSym);
225 NewEntry.Symbols = SymList;
226 }
Michael J. Spencere70c5262010-10-16 08:25:21 +0000227
Chris Lattner999aee22010-03-16 00:29:39 +0000228 std::vector<MCSymbol*> *SymList =
229 NewEntry.Symbols.get<std::vector<MCSymbol*>*>();
230
231 // If the old entry was a single symbol, add it.
232 if (MCSymbol *Sym = OldEntry.Symbols.dyn_cast<MCSymbol*>()) {
233 SymList->push_back(Sym);
234 return;
235 }
Michael J. Spencere70c5262010-10-16 08:25:21 +0000236
Chris Lattner999aee22010-03-16 00:29:39 +0000237 // Otherwise, concatenate the list.
238 std::vector<MCSymbol*> *Syms =OldEntry.Symbols.get<std::vector<MCSymbol*>*>();
239 SymList->insert(SymList->end(), Syms->begin(), Syms->end());
240 delete Syms;
Chris Lattner0220ba72010-03-15 19:09:43 +0000241}
242
243
244void MMIAddrLabelMapCallbackPtr::deleted() {
245 Map->UpdateForDeletedBlock(cast<BasicBlock>(getValPtr()));
246}
247
248void MMIAddrLabelMapCallbackPtr::allUsesReplacedWith(Value *V2) {
249 Map->UpdateForRAUWBlock(cast<BasicBlock>(getValPtr()), cast<BasicBlock>(V2));
250}
251
252
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000253//===----------------------------------------------------------------------===//
Eric Christophercf296972009-08-26 21:27:09 +0000254
Rafael Espindola89b93722010-12-10 07:39:47 +0000255MachineModuleInfo::MachineModuleInfo(const MCAsmInfo &MAI,
Evan Cheng0e6a0522011-07-18 20:57:22 +0000256 const MCRegisterInfo &MRI,
Evan Chenge76a33b2011-07-20 05:58:47 +0000257 const MCObjectFileInfo *MOFI,
Rafael Espindola89b93722010-12-10 07:39:47 +0000258 const TargetAsmInfo *TAI)
Evan Chenge76a33b2011-07-20 05:58:47 +0000259 : ImmutablePass(ID), Context(MAI, MRI, MOFI, TAI),
Bill Wendling7d365342011-07-19 00:00:58 +0000260 ObjFileMMI(0), CompactUnwindEncoding(0), CurCallSite(0), CallsEHReturn(0),
Bill Wendlinga67dcea2011-07-18 23:38:40 +0000261 CallsUnwindInit(0), DbgInfoAvailable(false),
262 CallsExternalVAFunctionWithFloatingPointArguments(false) {
Owen Anderson081c34b2010-10-19 17:21:58 +0000263 initializeMachineModuleInfoPass(*PassRegistry::getPassRegistry());
Eric Christopherd44fff72009-08-26 21:30:49 +0000264 // Always emit some info, by default "no personality" info.
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000265 Personalities.push_back(NULL);
Chris Lattner0220ba72010-03-15 19:09:43 +0000266 AddrLabelSymbols = 0;
Chris Lattner421ccd92010-04-06 00:51:52 +0000267 TheModule = 0;
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000268}
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000269
Chris Lattner11d53c12010-03-13 20:55:24 +0000270MachineModuleInfo::MachineModuleInfo()
Evan Chenge76a33b2011-07-20 05:58:47 +0000271 : ImmutablePass(ID),
272 Context(*(MCAsmInfo*)0, *(MCRegisterInfo*)0, (MCObjectFileInfo*)0, NULL) {
Chris Lattner11d53c12010-03-13 20:55:24 +0000273 assert(0 && "This MachineModuleInfo constructor should never be called, MMI "
274 "should always be explicitly constructed by LLVMTargetMachine");
275 abort();
276}
277
Chris Lattnera70e2e32009-09-15 22:44:26 +0000278MachineModuleInfo::~MachineModuleInfo() {
Chris Lattnerf1854552009-09-16 05:26:00 +0000279 delete ObjFileMMI;
Michael J. Spencere70c5262010-10-16 08:25:21 +0000280
Chris Lattner0220ba72010-03-15 19:09:43 +0000281 // FIXME: Why isn't doFinalization being called??
282 //assert(AddrLabelSymbols == 0 && "doFinalization not called");
283 delete AddrLabelSymbols;
284 AddrLabelSymbols = 0;
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000285}
286
Jim Laskey6da18642007-01-26 21:38:26 +0000287/// doInitialization - Initialize the state for a new module.
Jim Laskeyb2efb852006-01-04 22:28:25 +0000288///
Jim Laskey6da18642007-01-26 21:38:26 +0000289bool MachineModuleInfo::doInitialization() {
Chris Lattner0220ba72010-03-15 19:09:43 +0000290 assert(AddrLabelSymbols == 0 && "Improperly initialized");
Jim Laskeyb2efb852006-01-04 22:28:25 +0000291 return false;
Jim Laskey6af56812006-01-04 13:36:38 +0000292}
293
Jim Laskey6da18642007-01-26 21:38:26 +0000294/// doFinalization - Tear down the state after completion of a module.
Jim Laskeyb2efb852006-01-04 22:28:25 +0000295///
Jim Laskey6da18642007-01-26 21:38:26 +0000296bool MachineModuleInfo::doFinalization() {
Chris Lattner0220ba72010-03-15 19:09:43 +0000297 delete AddrLabelSymbols;
298 AddrLabelSymbols = 0;
Jim Laskeyb2efb852006-01-04 22:28:25 +0000299 return false;
300}
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000301
Jim Laskey6da18642007-01-26 21:38:26 +0000302/// EndFunction - Discard function meta information.
Jim Laskey41886992006-04-07 16:34:46 +0000303///
Jim Laskey6da18642007-01-26 21:38:26 +0000304void MachineModuleInfo::EndFunction() {
Jim Laskey41886992006-04-07 16:34:46 +0000305 // Clean up frame info.
Jim Laskey41886992006-04-07 16:34:46 +0000306 FrameMoves.clear();
Eric Christophercf296972009-08-26 21:27:09 +0000307
Jim Laskey59667fe2007-02-21 22:38:31 +0000308 // Clean up exception info.
309 LandingPads.clear();
Jim Grosbachca752c92010-01-28 01:45:32 +0000310 CallSiteMap.clear();
Jim Laskey59667fe2007-02-21 22:38:31 +0000311 TypeInfos.clear();
Duncan Sands73ef58a2007-06-02 16:53:42 +0000312 FilterIds.clear();
Duncan Sands14da32a2007-07-05 15:15:01 +0000313 FilterEnds.clear();
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000314 CallsEHReturn = 0;
315 CallsUnwindInit = 0;
Bill Wendling7d365342011-07-19 00:00:58 +0000316 CompactUnwindEncoding = 0;
Devang Patel85d29e22009-10-08 20:41:17 +0000317 VariableDbgInfo.clear();
Jim Laskey41886992006-04-07 16:34:46 +0000318}
319
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000320/// AnalyzeModule - Scan the module for global debug information.
321///
Dan Gohman46510a72010-04-15 01:51:59 +0000322void MachineModuleInfo::AnalyzeModule(const Module &M) {
Chris Lattner401e10c2009-07-20 06:14:25 +0000323 // Insert functions in the llvm.used array (but not llvm.compiler.used) into
324 // UsedFunctions.
Dan Gohman46510a72010-04-15 01:51:59 +0000325 const GlobalVariable *GV = M.getGlobalVariable("llvm.used");
Dale Johannesen48ae02f2008-01-16 19:59:28 +0000326 if (!GV || !GV->hasInitializer()) return;
327
328 // Should be an array of 'i8*'.
Dan Gohman46510a72010-04-15 01:51:59 +0000329 const ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
Dale Johannesen48ae02f2008-01-16 19:59:28 +0000330 if (InitList == 0) return;
331
Chris Lattner1d5c4932009-07-20 06:05:50 +0000332 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
Dan Gohman46510a72010-04-15 01:51:59 +0000333 if (const Function *F =
Chris Lattner1d5c4932009-07-20 06:05:50 +0000334 dyn_cast<Function>(InitList->getOperand(i)->stripPointerCasts()))
335 UsedFunctions.insert(F);
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000336}
337
Chris Lattner0220ba72010-03-15 19:09:43 +0000338//===- Address of Block Management ----------------------------------------===//
339
340
Chris Lattner3b9d6212010-03-14 17:53:23 +0000341/// getAddrLabelSymbol - Return the symbol to be used for the specified basic
342/// block when its address is taken. This cannot be its normal LBB label
343/// because the block may be accessed outside its containing function.
344MCSymbol *MachineModuleInfo::getAddrLabelSymbol(const BasicBlock *BB) {
Chris Lattner0220ba72010-03-15 19:09:43 +0000345 // Lazily create AddrLabelSymbols.
346 if (AddrLabelSymbols == 0)
347 AddrLabelSymbols = new MMIAddrLabelMap(Context);
348 return AddrLabelSymbols->getAddrLabelSymbol(const_cast<BasicBlock*>(BB));
Chris Lattner3b9d6212010-03-14 17:53:23 +0000349}
350
Chris Lattner999aee22010-03-16 00:29:39 +0000351/// getAddrLabelSymbolToEmit - Return the symbol to be used for the specified
352/// basic block when its address is taken. If other blocks were RAUW'd to
353/// this one, we may have to emit them as well, return the whole set.
354std::vector<MCSymbol*> MachineModuleInfo::
355getAddrLabelSymbolToEmit(const BasicBlock *BB) {
356 // Lazily create AddrLabelSymbols.
357 if (AddrLabelSymbols == 0)
358 AddrLabelSymbols = new MMIAddrLabelMap(Context);
359 return AddrLabelSymbols->getAddrLabelSymbolToEmit(const_cast<BasicBlock*>(BB));
360}
361
362
Chris Lattner9cc0da92010-03-15 20:39:00 +0000363/// takeDeletedSymbolsForFunction - If the specified function has had any
364/// references to address-taken blocks generated, but the block got deleted,
365/// return the symbol now so we can emit it. This prevents emitting a
366/// reference to a symbol that has no definition.
367void MachineModuleInfo::
368takeDeletedSymbolsForFunction(const Function *F,
369 std::vector<MCSymbol*> &Result) {
370 // If no blocks have had their addresses taken, we're done.
371 if (AddrLabelSymbols == 0) return;
372 return AddrLabelSymbols->
373 takeDeletedSymbolsForFunction(const_cast<Function*>(F), Result);
374}
Chris Lattner3b9d6212010-03-14 17:53:23 +0000375
Chris Lattner0220ba72010-03-15 19:09:43 +0000376//===- EH -----------------------------------------------------------------===//
Jim Laskey59667fe2007-02-21 22:38:31 +0000377
378/// getOrCreateLandingPadInfo - Find or create an LandingPadInfo for the
379/// specified MachineBasicBlock.
Bill Wendling10fff602008-07-03 22:53:42 +0000380LandingPadInfo &MachineModuleInfo::getOrCreateLandingPadInfo
381 (MachineBasicBlock *LandingPad) {
Jim Laskey59667fe2007-02-21 22:38:31 +0000382 unsigned N = LandingPads.size();
383 for (unsigned i = 0; i < N; ++i) {
Jim Laskey59e84342007-03-01 20:25:32 +0000384 LandingPadInfo &LP = LandingPads[i];
385 if (LP.LandingPadBlock == LandingPad)
386 return LP;
Jim Laskey59667fe2007-02-21 22:38:31 +0000387 }
Eric Christophercf296972009-08-26 21:27:09 +0000388
Jim Laskey59667fe2007-02-21 22:38:31 +0000389 LandingPads.push_back(LandingPadInfo(LandingPad));
390 return LandingPads[N];
391}
392
393/// addInvoke - Provide the begin and end labels of an invoke style call and
394/// associate it with a try landing pad block.
395void MachineModuleInfo::addInvoke(MachineBasicBlock *LandingPad,
Chris Lattner16112732010-03-14 01:41:15 +0000396 MCSymbol *BeginLabel, MCSymbol *EndLabel) {
Jim Laskey59e84342007-03-01 20:25:32 +0000397 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
Anton Korobeynikoveeb37e02007-05-10 22:34:59 +0000398 LP.BeginLabels.push_back(BeginLabel);
399 LP.EndLabels.push_back(EndLabel);
Jim Laskey59667fe2007-02-21 22:38:31 +0000400}
401
402/// addLandingPad - Provide the label of a try LandingPad block.
403///
Chris Lattner7561d482010-03-14 02:33:54 +0000404MCSymbol *MachineModuleInfo::addLandingPad(MachineBasicBlock *LandingPad) {
Chris Lattner63d78362010-03-14 08:36:50 +0000405 MCSymbol *LandingPadLabel = Context.CreateTempSymbol();
Jim Laskey59e84342007-03-01 20:25:32 +0000406 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
Eric Christophercf296972009-08-26 21:27:09 +0000407 LP.LandingPadLabel = LandingPadLabel;
Chris Lattner7561d482010-03-14 02:33:54 +0000408 return LandingPadLabel;
Jim Laskey59667fe2007-02-21 22:38:31 +0000409}
410
411/// addPersonality - Provide the personality function for the exception
412/// information.
413void MachineModuleInfo::addPersonality(MachineBasicBlock *LandingPad,
Dan Gohman46510a72010-04-15 01:51:59 +0000414 const Function *Personality) {
Jim Laskey59e84342007-03-01 20:25:32 +0000415 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000416 LP.Personality = Personality;
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +0000417
Bill Wendling10fff602008-07-03 22:53:42 +0000418 for (unsigned i = 0; i < Personalities.size(); ++i)
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000419 if (Personalities[i] == Personality)
420 return;
Eric Christophercf296972009-08-26 21:27:09 +0000421
Eric Christopherd44fff72009-08-26 21:30:49 +0000422 // If this is the first personality we're adding go
423 // ahead and add it at the beginning.
424 if (Personalities[0] == NULL)
425 Personalities[0] = Personality;
426 else
427 Personalities.push_back(Personality);
Jim Laskey59667fe2007-02-21 22:38:31 +0000428}
429
430/// addCatchTypeInfo - Provide the catch typeinfo for a landing pad.
431///
432void MachineModuleInfo::addCatchTypeInfo(MachineBasicBlock *LandingPad,
Dan Gohman46510a72010-04-15 01:51:59 +0000433 std::vector<const GlobalVariable *> &TyInfo) {
Jim Laskey59e84342007-03-01 20:25:32 +0000434 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
Jim Laskey59667fe2007-02-21 22:38:31 +0000435 for (unsigned N = TyInfo.size(); N; --N)
Jim Laskey59e84342007-03-01 20:25:32 +0000436 LP.TypeIds.push_back(getTypeIDFor(TyInfo[N - 1]));
Jim Laskey59667fe2007-02-21 22:38:31 +0000437}
Duncan Sands73ef58a2007-06-02 16:53:42 +0000438
439/// addFilterTypeInfo - Provide the filter typeinfo for a landing pad.
Jim Laskey59e84342007-03-01 20:25:32 +0000440///
Duncan Sands73ef58a2007-06-02 16:53:42 +0000441void MachineModuleInfo::addFilterTypeInfo(MachineBasicBlock *LandingPad,
Dan Gohman46510a72010-04-15 01:51:59 +0000442 std::vector<const GlobalVariable *> &TyInfo) {
Jim Laskey59e84342007-03-01 20:25:32 +0000443 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
Bill Wendling49255672008-07-07 21:41:57 +0000444 std::vector<unsigned> IdsInFilter(TyInfo.size());
Bill Wendling10fff602008-07-03 22:53:42 +0000445 for (unsigned I = 0, E = TyInfo.size(); I != E; ++I)
Duncan Sands73ef58a2007-06-02 16:53:42 +0000446 IdsInFilter[I] = getTypeIDFor(TyInfo[I]);
447 LP.TypeIds.push_back(getFilterIDFor(IdsInFilter));
Jim Laskey59e84342007-03-01 20:25:32 +0000448}
449
Duncan Sands6590b042007-08-27 15:47:50 +0000450/// addCleanup - Add a cleanup action for a landing pad.
451///
452void MachineModuleInfo::addCleanup(MachineBasicBlock *LandingPad) {
453 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
454 LP.TypeIds.push_back(0);
455}
456
Jim Laskey59667fe2007-02-21 22:38:31 +0000457/// TidyLandingPads - Remap landing pad labels and remove any deleted landing
458/// pads.
Bill Wendling47639fc2010-04-16 08:46:10 +0000459void MachineModuleInfo::TidyLandingPads(DenseMap<MCSymbol*, uintptr_t> *LPMap) {
Jim Laskey59667fe2007-02-21 22:38:31 +0000460 for (unsigned i = 0; i != LandingPads.size(); ) {
461 LandingPadInfo &LandingPad = LandingPads[i];
Bill Wendling47639fc2010-04-16 08:46:10 +0000462 if (LandingPad.LandingPadLabel &&
463 !LandingPad.LandingPadLabel->isDefined() &&
464 (!LPMap || (*LPMap)[LandingPad.LandingPadLabel] == 0))
Chris Lattnera34ec2292010-03-09 01:51:43 +0000465 LandingPad.LandingPadLabel = 0;
Anton Korobeynikoveeb37e02007-05-10 22:34:59 +0000466
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000467 // Special case: we *should* emit LPs with null LP MBB. This indicates
Duncan Sands481dc722007-12-19 07:36:31 +0000468 // "nounwind" case.
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000469 if (!LandingPad.LandingPadLabel && LandingPad.LandingPadBlock) {
Jim Laskey59667fe2007-02-21 22:38:31 +0000470 LandingPads.erase(LandingPads.begin() + i);
471 continue;
472 }
Duncan Sands57810cd2007-09-05 11:27:52 +0000473
Chris Lattner16112732010-03-14 01:41:15 +0000474 for (unsigned j = 0, e = LandingPads[i].BeginLabels.size(); j != e; ++j) {
475 MCSymbol *BeginLabel = LandingPad.BeginLabels[j];
476 MCSymbol *EndLabel = LandingPad.EndLabels[j];
Bill Wendling47639fc2010-04-16 08:46:10 +0000477 if ((BeginLabel->isDefined() ||
478 (LPMap && (*LPMap)[BeginLabel] != 0)) &&
479 (EndLabel->isDefined() ||
480 (LPMap && (*LPMap)[EndLabel] != 0))) continue;
Michael J. Spencere70c5262010-10-16 08:25:21 +0000481
Chris Lattner16112732010-03-14 01:41:15 +0000482 LandingPad.BeginLabels.erase(LandingPad.BeginLabels.begin() + j);
483 LandingPad.EndLabels.erase(LandingPad.EndLabels.begin() + j);
484 --j, --e;
Anton Korobeynikoveeb37e02007-05-10 22:34:59 +0000485 }
Duncan Sands57810cd2007-09-05 11:27:52 +0000486
487 // Remove landing pads with no try-ranges.
Dan Gohman30359592008-01-29 13:02:09 +0000488 if (LandingPads[i].BeginLabels.empty()) {
Duncan Sands57810cd2007-09-05 11:27:52 +0000489 LandingPads.erase(LandingPads.begin() + i);
490 continue;
491 }
492
493 // If there is no landing pad, ensure that the list of typeids is empty.
494 // If the only typeid is a cleanup, this is the same as having no typeids.
495 if (!LandingPad.LandingPadBlock ||
496 (LandingPad.TypeIds.size() == 1 && !LandingPad.TypeIds[0]))
497 LandingPad.TypeIds.clear();
Jim Laskey59667fe2007-02-21 22:38:31 +0000498 ++i;
499 }
500}
501
Eric Christophercf296972009-08-26 21:27:09 +0000502/// getTypeIDFor - Return the type id for the specified typeinfo. This is
Jim Laskey59667fe2007-02-21 22:38:31 +0000503/// function wide.
Dan Gohman46510a72010-04-15 01:51:59 +0000504unsigned MachineModuleInfo::getTypeIDFor(const GlobalVariable *TI) {
Bill Wendling10fff602008-07-03 22:53:42 +0000505 for (unsigned i = 0, N = TypeInfos.size(); i != N; ++i)
506 if (TypeInfos[i] == TI) return i + 1;
Jim Laskey59667fe2007-02-21 22:38:31 +0000507
508 TypeInfos.push_back(TI);
509 return TypeInfos.size();
510}
511
Duncan Sands73ef58a2007-06-02 16:53:42 +0000512/// getFilterIDFor - Return the filter id for the specified typeinfos. This is
513/// function wide.
Bill Wendling914c9702008-06-27 01:27:56 +0000514int MachineModuleInfo::getFilterIDFor(std::vector<unsigned> &TyIds) {
Duncan Sands14da32a2007-07-05 15:15:01 +0000515 // If the new filter coincides with the tail of an existing filter, then
516 // re-use the existing filter. Folding filters more than this requires
517 // re-ordering filters and/or their elements - probably not worth it.
518 for (std::vector<unsigned>::iterator I = FilterEnds.begin(),
519 E = FilterEnds.end(); I != E; ++I) {
Bill Wendling914c9702008-06-27 01:27:56 +0000520 unsigned i = *I, j = TyIds.size();
Duncan Sands14da32a2007-07-05 15:15:01 +0000521
522 while (i && j)
523 if (FilterIds[--i] != TyIds[--j])
524 goto try_next;
525
526 if (!j)
527 // The new filter coincides with range [i, end) of the existing filter.
528 return -(1 + i);
Bill Wendling914c9702008-06-27 01:27:56 +0000529
Duncan Sands14da32a2007-07-05 15:15:01 +0000530try_next:;
531 }
532
533 // Add the new filter.
Bill Wendling914c9702008-06-27 01:27:56 +0000534 int FilterID = -(1 + FilterIds.size());
535 FilterIds.reserve(FilterIds.size() + TyIds.size() + 1);
536 for (unsigned I = 0, N = TyIds.size(); I != N; ++I)
Duncan Sands73ef58a2007-06-02 16:53:42 +0000537 FilterIds.push_back(TyIds[I]);
Bill Wendling914c9702008-06-27 01:27:56 +0000538 FilterEnds.push_back(FilterIds.size());
Duncan Sands73ef58a2007-06-02 16:53:42 +0000539 FilterIds.push_back(0); // terminator
540 return FilterID;
541}
542
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000543/// getPersonality - Return the personality function for the current function.
Dan Gohman46510a72010-04-15 01:51:59 +0000544const Function *MachineModuleInfo::getPersonality() const {
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +0000545 // FIXME: Until PR1414 will be fixed, we're using 1 personality function per
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000546 // function
547 return !LandingPads.empty() ? LandingPads[0].Personality : NULL;
Jim Laskey59667fe2007-02-21 22:38:31 +0000548}
549
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000550/// getPersonalityIndex - Return unique index for current personality
Eric Christopher5e365e22009-08-26 21:44:57 +0000551/// function. NULL/first personality function should always get zero index.
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000552unsigned MachineModuleInfo::getPersonalityIndex() const {
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000553 const Function* Personality = NULL;
Eric Christophercf296972009-08-26 21:27:09 +0000554
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000555 // Scan landing pads. If there is at least one non-NULL personality - use it.
Bill Wendling10fff602008-07-03 22:53:42 +0000556 for (unsigned i = 0; i != LandingPads.size(); ++i)
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000557 if (LandingPads[i].Personality) {
558 Personality = LandingPads[i].Personality;
559 break;
560 }
Eric Christophercf296972009-08-26 21:27:09 +0000561
Bill Wendling10fff602008-07-03 22:53:42 +0000562 for (unsigned i = 0; i < Personalities.size(); ++i) {
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000563 if (Personalities[i] == Personality)
564 return i;
Bill Wendling10fff602008-07-03 22:53:42 +0000565 }
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000566
Eric Christopher5e365e22009-08-26 21:44:57 +0000567 // This will happen if the current personality function is
568 // in the zero index.
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +0000569 return 0;
570}