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