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 #include "llvm/ADT/PointerUnion.h" 12 #include "llvm/Analysis/LibCallSemantics.h" 13 #include "llvm/Analysis/ValueTracking.h" 14 #include "llvm/CodeGen/MachineFunction.h" 15 #include "llvm/CodeGen/MachineFunctionPass.h" 16 #include "llvm/CodeGen/Passes.h" 17 #include "llvm/CodeGen/WinEHFuncInfo.h" 18 #include "llvm/IR/Constants.h" 19 #include "llvm/IR/DerivedTypes.h" 20 #include "llvm/IR/GlobalVariable.h" 21 #include "llvm/IR/Module.h" 22 #include "llvm/MC/MCObjectFileInfo.h" 23 #include "llvm/MC/MCSymbol.h" 24 #include "llvm/Support/Dwarf.h" 25 #include "llvm/Support/ErrorHandling.h" 26 using namespace llvm; 27 using namespace llvm::dwarf; 28 29 // Handle the Pass registration stuff necessary to use DataLayout's. 30 INITIALIZE_PASS(MachineModuleInfo, "machinemoduleinfo", 31 "Machine Module Information", false, false) 32 char MachineModuleInfo::ID = 0; 33 34 // Out of line virtual method. 35 MachineModuleInfoImpl::~MachineModuleInfoImpl() {} 36 37 namespace llvm { 38 class MMIAddrLabelMapCallbackPtr : CallbackVH { 39 MMIAddrLabelMap *Map; 40 public: 41 MMIAddrLabelMapCallbackPtr() : Map(nullptr) {} 42 MMIAddrLabelMapCallbackPtr(Value *V) : CallbackVH(V), Map(nullptr) {} 43 44 void setPtr(BasicBlock *BB) { 45 ValueHandleBase::operator=(BB); 46 } 47 48 void setMap(MMIAddrLabelMap *map) { Map = map; } 49 50 void deleted() override; 51 void allUsesReplacedWith(Value *V2) override; 52 }; 53 54 class MMIAddrLabelMap { 55 MCContext &Context; 56 struct AddrLabelSymEntry { 57 /// 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; 60 61 Function *Fn; // The containing function of the BasicBlock. 62 unsigned Index; // The index in BBCallbacks for the BasicBlock. 63 }; 64 65 DenseMap<AssertingVH<BasicBlock>, AddrLabelSymEntry> AddrLabelSymbols; 66 67 /// 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. 69 std::vector<MMIAddrLabelMapCallbackPtr> BBCallbacks; 70 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; 77 public: 78 79 MMIAddrLabelMap(MCContext &context) : Context(context) {} 80 ~MMIAddrLabelMap() { 81 assert(DeletedAddrLabelsNeedingEmission.empty() && 82 "Some labels for deleted blocks never got emitted"); 83 84 // 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*>*>(); 89 } 90 91 MCSymbol *getAddrLabelSymbol(BasicBlock *BB); 92 std::vector<MCSymbol*> getAddrLabelSymbolToEmit(BasicBlock *BB); 93 94 void takeDeletedSymbolsForFunction(Function *F, 95 std::vector<MCSymbol*> &Result); 96 97 void UpdateForDeletedBlock(BasicBlock *BB); 98 void UpdateForRAUWBlock(BasicBlock *Old, BasicBlock *New); 99 }; 100 } 101 102 MCSymbol *MMIAddrLabelMap::getAddrLabelSymbol(BasicBlock *BB) { 103 assert(BB->hasAddressTaken() && 104 "Shouldn't get label for block without address taken"); 105 AddrLabelSymEntry &Entry = AddrLabelSymbols[BB]; 106 107 // If we already had an entry for this block, just return it. 108 if (!Entry.Symbols.isNull()) { 109 assert(BB->getParent() == Entry.Fn && "Parent changed"); 110 if (Entry.Symbols.is<MCSymbol*>()) 111 return Entry.Symbols.get<MCSymbol*>(); 112 return (*Entry.Symbols.get<std::vector<MCSymbol*>*>())[0]; 113 } 114 115 // 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; 120 Entry.Fn = BB->getParent(); 121 MCSymbol *Result = Context.createTempSymbol(); 122 Entry.Symbols = Result; 123 return Result; 124 } 125 126 std::vector<MCSymbol*> 127 MMIAddrLabelMap::getAddrLabelSymbolToEmit(BasicBlock *BB) { 128 assert(BB->hasAddressTaken() && 129 "Shouldn't get label for block without address taken"); 130 AddrLabelSymEntry &Entry = AddrLabelSymbols[BB]; 131 132 std::vector<MCSymbol*> Result; 133 134 // 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 145 /// takeDeletedSymbolsForFunction - If we have any deleted symbols for F, return 146 /// them. 147 void MMIAddrLabelMap:: 148 takeDeletedSymbolsForFunction(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; 154 155 // Otherwise, take the list. 156 std::swap(Result, I->second); 157 DeletedAddrLabelsNeedingEmission.erase(I); 158 } 159 160 161 void 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); 167 assert(!Entry.Symbols.isNull() && "Didn't have a symbol, why a callback?"); 168 BBCallbacks[Entry.Index] = nullptr; // Clear the callback. 169 170 assert((BB->getParent() == nullptr || BB->getParent() == Entry.Fn) && 171 "Block/parent mismatch"); 172 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; 177 178 // 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. 189 190 // 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 } 197 198 // The entry is deleted, free the memory associated with the symbol list. 199 delete Syms; 200 } 201 } 202 203 void 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); 207 assert(!OldEntry.Symbols.isNull() && "Didn't have a symbol, why a callback?"); 208 209 AddrLabelSymEntry &NewEntry = AddrLabelSymbols[New]; 210 211 // If New is not address taken, just move our symbol over to it. 212 if (NewEntry.Symbols.isNull()) { 213 BBCallbacks[OldEntry.Index].setPtr(New); // Update the callback. 214 NewEntry = OldEntry; // Set New's entry. 215 return; 216 } 217 218 BBCallbacks[OldEntry.Index] = nullptr; // 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 } 227 228 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 } 236 237 // 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; 241 } 242 243 244 void MMIAddrLabelMapCallbackPtr::deleted() { 245 Map->UpdateForDeletedBlock(cast<BasicBlock>(getValPtr())); 246 } 247 248 void MMIAddrLabelMapCallbackPtr::allUsesReplacedWith(Value *V2) { 249 Map->UpdateForRAUWBlock(cast<BasicBlock>(getValPtr()), cast<BasicBlock>(V2)); 250 } 251 252 253 //===----------------------------------------------------------------------===// 254 255 MachineModuleInfo::MachineModuleInfo(const MCAsmInfo &MAI, 256 const MCRegisterInfo &MRI, 257 const MCObjectFileInfo *MOFI) 258 : ImmutablePass(ID), Context(&MAI, &MRI, MOFI, nullptr, false) { 259 initializeMachineModuleInfoPass(*PassRegistry::getPassRegistry()); 260 } 261 262 MachineModuleInfo::MachineModuleInfo() 263 : ImmutablePass(ID), Context(nullptr, nullptr, nullptr) { 264 llvm_unreachable("This MachineModuleInfo constructor should never be called, " 265 "MMI should always be explicitly constructed by " 266 "LLVMTargetMachine"); 267 } 268 269 MachineModuleInfo::~MachineModuleInfo() { 270 } 271 272 bool MachineModuleInfo::doInitialization(Module &M) { 273 274 ObjFileMMI = nullptr; 275 CurCallSite = 0; 276 CallsEHReturn = 0; 277 CallsUnwindInit = 0; 278 DbgInfoAvailable = UsesVAFloatArgument = UsesMorestackAddr = false; 279 // Always emit some info, by default "no personality" info. 280 Personalities.push_back(nullptr); 281 PersonalityTypeCache = EHPersonality::Unknown; 282 AddrLabelSymbols = nullptr; 283 TheModule = nullptr; 284 285 return false; 286 } 287 288 bool MachineModuleInfo::doFinalization(Module &M) { 289 290 Personalities.clear(); 291 292 delete AddrLabelSymbols; 293 AddrLabelSymbols = nullptr; 294 295 Context.reset(); 296 297 delete ObjFileMMI; 298 ObjFileMMI = nullptr; 299 300 return false; 301 } 302 303 /// EndFunction - Discard function meta information. 304 /// 305 void MachineModuleInfo::EndFunction() { 306 // Clean up frame info. 307 FrameInstructions.clear(); 308 309 // Clean up exception info. 310 LandingPads.clear(); 311 PersonalityTypeCache = EHPersonality::Unknown; 312 CallSiteMap.clear(); 313 TypeInfos.clear(); 314 FilterIds.clear(); 315 FilterEnds.clear(); 316 CallsEHReturn = 0; 317 CallsUnwindInit = 0; 318 VariableDbgInfos.clear(); 319 } 320 321 /// AnalyzeModule - Scan the module for global debug information. 322 /// 323 void MachineModuleInfo::AnalyzeModule(const Module &M) { 324 // Insert functions in the llvm.used array (but not llvm.compiler.used) into 325 // UsedFunctions. 326 const GlobalVariable *GV = M.getGlobalVariable("llvm.used"); 327 if (!GV || !GV->hasInitializer()) return; 328 329 // Should be an array of 'i8*'. 330 const ConstantArray *InitList = cast<ConstantArray>(GV->getInitializer()); 331 332 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) 333 if (const Function *F = 334 dyn_cast<Function>(InitList->getOperand(i)->stripPointerCasts())) 335 UsedFunctions.insert(F); 336 } 337 338 //===- Address of Block Management ----------------------------------------===// 339 340 341 /// 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. 344 MCSymbol *MachineModuleInfo::getAddrLabelSymbol(const BasicBlock *BB) { 345 // Lazily create AddrLabelSymbols. 346 if (!AddrLabelSymbols) 347 AddrLabelSymbols = new MMIAddrLabelMap(Context); 348 return AddrLabelSymbols->getAddrLabelSymbol(const_cast<BasicBlock*>(BB)); 349 } 350 351 /// 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. 354 std::vector<MCSymbol*> MachineModuleInfo:: 355 getAddrLabelSymbolToEmit(const BasicBlock *BB) { 356 // Lazily create AddrLabelSymbols. 357 if (!AddrLabelSymbols) 358 AddrLabelSymbols = new MMIAddrLabelMap(Context); 359 return AddrLabelSymbols->getAddrLabelSymbolToEmit(const_cast<BasicBlock*>(BB)); 360 } 361 362 363 /// 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. 367 void MachineModuleInfo:: 368 takeDeletedSymbolsForFunction(const Function *F, 369 std::vector<MCSymbol*> &Result) { 370 // If no blocks have had their addresses taken, we're done. 371 if (!AddrLabelSymbols) return; 372 return AddrLabelSymbols-> 373 takeDeletedSymbolsForFunction(const_cast<Function*>(F), Result); 374 } 375 376 //===- EH -----------------------------------------------------------------===// 377 378 /// getOrCreateLandingPadInfo - Find or create an LandingPadInfo for the 379 /// specified MachineBasicBlock. 380 LandingPadInfo &MachineModuleInfo::getOrCreateLandingPadInfo 381 (MachineBasicBlock *LandingPad) { 382 unsigned N = LandingPads.size(); 383 for (unsigned i = 0; i < N; ++i) { 384 LandingPadInfo &LP = LandingPads[i]; 385 if (LP.LandingPadBlock == LandingPad) 386 return LP; 387 } 388 389 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. 395 void MachineModuleInfo::addInvoke(MachineBasicBlock *LandingPad, 396 MCSymbol *BeginLabel, MCSymbol *EndLabel) { 397 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); 398 LP.BeginLabels.push_back(BeginLabel); 399 LP.EndLabels.push_back(EndLabel); 400 } 401 402 /// addLandingPad - Provide the label of a try LandingPad block. 403 /// 404 MCSymbol *MachineModuleInfo::addLandingPad(MachineBasicBlock *LandingPad) { 405 MCSymbol *LandingPadLabel = Context.createTempSymbol(); 406 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); 407 LP.LandingPadLabel = LandingPadLabel; 408 return LandingPadLabel; 409 } 410 411 /// addPersonality - Provide the personality function for the exception 412 /// information. 413 void MachineModuleInfo::addPersonality(MachineBasicBlock *LandingPad, 414 const Function *Personality) { 415 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); 416 LP.Personality = Personality; 417 418 for (unsigned i = 0; i < Personalities.size(); ++i) 419 if (Personalities[i] == Personality) 420 return; 421 422 // If this is the first personality we're adding go 423 // ahead and add it at the beginning. 424 if (!Personalities[0]) 425 Personalities[0] = Personality; 426 else 427 Personalities.push_back(Personality); 428 } 429 430 void MachineModuleInfo::addWinEHState(MachineBasicBlock *LandingPad, 431 int State) { 432 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); 433 LP.WinEHState = State; 434 } 435 436 /// addCatchTypeInfo - Provide the catch typeinfo for a landing pad. 437 /// 438 void MachineModuleInfo:: 439 addCatchTypeInfo(MachineBasicBlock *LandingPad, 440 ArrayRef<const GlobalValue *> TyInfo) { 441 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); 442 for (unsigned N = TyInfo.size(); N; --N) 443 LP.TypeIds.push_back(getTypeIDFor(TyInfo[N - 1])); 444 } 445 446 /// addFilterTypeInfo - Provide the filter typeinfo for a landing pad. 447 /// 448 void MachineModuleInfo:: 449 addFilterTypeInfo(MachineBasicBlock *LandingPad, 450 ArrayRef<const GlobalValue *> TyInfo) { 451 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); 452 std::vector<unsigned> IdsInFilter(TyInfo.size()); 453 for (unsigned I = 0, E = TyInfo.size(); I != E; ++I) 454 IdsInFilter[I] = getTypeIDFor(TyInfo[I]); 455 LP.TypeIds.push_back(getFilterIDFor(IdsInFilter)); 456 } 457 458 /// addCleanup - Add a cleanup action for a landing pad. 459 /// 460 void MachineModuleInfo::addCleanup(MachineBasicBlock *LandingPad) { 461 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); 462 LP.TypeIds.push_back(0); 463 } 464 465 void MachineModuleInfo::addSEHCatchHandler(MachineBasicBlock *LandingPad, 466 const Function *Filter, 467 const BlockAddress *RecoverBA) { 468 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); 469 SEHHandler Handler; 470 Handler.FilterOrFinally = Filter; 471 Handler.RecoverBA = RecoverBA; 472 LP.SEHHandlers.push_back(Handler); 473 } 474 475 void MachineModuleInfo::addSEHCleanupHandler(MachineBasicBlock *LandingPad, 476 const Function *Cleanup) { 477 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); 478 SEHHandler Handler; 479 Handler.FilterOrFinally = Cleanup; 480 Handler.RecoverBA = nullptr; 481 LP.SEHHandlers.push_back(Handler); 482 } 483 484 /// TidyLandingPads - Remap landing pad labels and remove any deleted landing 485 /// pads. 486 void MachineModuleInfo::TidyLandingPads(DenseMap<MCSymbol*, uintptr_t> *LPMap) { 487 for (unsigned i = 0; i != LandingPads.size(); ) { 488 LandingPadInfo &LandingPad = LandingPads[i]; 489 if (LandingPad.LandingPadLabel && 490 !LandingPad.LandingPadLabel->isDefined() && 491 (!LPMap || (*LPMap)[LandingPad.LandingPadLabel] == 0)) 492 LandingPad.LandingPadLabel = nullptr; 493 494 // Special case: we *should* emit LPs with null LP MBB. This indicates 495 // "nounwind" case. 496 if (!LandingPad.LandingPadLabel && LandingPad.LandingPadBlock) { 497 LandingPads.erase(LandingPads.begin() + i); 498 continue; 499 } 500 501 for (unsigned j = 0, e = LandingPads[i].BeginLabels.size(); j != e; ++j) { 502 MCSymbol *BeginLabel = LandingPad.BeginLabels[j]; 503 MCSymbol *EndLabel = LandingPad.EndLabels[j]; 504 if ((BeginLabel->isDefined() || 505 (LPMap && (*LPMap)[BeginLabel] != 0)) && 506 (EndLabel->isDefined() || 507 (LPMap && (*LPMap)[EndLabel] != 0))) continue; 508 509 LandingPad.BeginLabels.erase(LandingPad.BeginLabels.begin() + j); 510 LandingPad.EndLabels.erase(LandingPad.EndLabels.begin() + j); 511 --j, --e; 512 } 513 514 // Remove landing pads with no try-ranges. 515 if (LandingPads[i].BeginLabels.empty()) { 516 LandingPads.erase(LandingPads.begin() + i); 517 continue; 518 } 519 520 // If there is no landing pad, ensure that the list of typeids is empty. 521 // If the only typeid is a cleanup, this is the same as having no typeids. 522 if (!LandingPad.LandingPadBlock || 523 (LandingPad.TypeIds.size() == 1 && !LandingPad.TypeIds[0])) 524 LandingPad.TypeIds.clear(); 525 ++i; 526 } 527 } 528 529 /// setCallSiteLandingPad - Map the landing pad's EH symbol to the call site 530 /// indexes. 531 void MachineModuleInfo::setCallSiteLandingPad(MCSymbol *Sym, 532 ArrayRef<unsigned> Sites) { 533 LPadToCallSiteMap[Sym].append(Sites.begin(), Sites.end()); 534 } 535 536 /// getTypeIDFor - Return the type id for the specified typeinfo. This is 537 /// function wide. 538 unsigned MachineModuleInfo::getTypeIDFor(const GlobalValue *TI) { 539 for (unsigned i = 0, N = TypeInfos.size(); i != N; ++i) 540 if (TypeInfos[i] == TI) return i + 1; 541 542 TypeInfos.push_back(TI); 543 return TypeInfos.size(); 544 } 545 546 /// getFilterIDFor - Return the filter id for the specified typeinfos. This is 547 /// function wide. 548 int MachineModuleInfo::getFilterIDFor(std::vector<unsigned> &TyIds) { 549 // If the new filter coincides with the tail of an existing filter, then 550 // re-use the existing filter. Folding filters more than this requires 551 // re-ordering filters and/or their elements - probably not worth it. 552 for (std::vector<unsigned>::iterator I = FilterEnds.begin(), 553 E = FilterEnds.end(); I != E; ++I) { 554 unsigned i = *I, j = TyIds.size(); 555 556 while (i && j) 557 if (FilterIds[--i] != TyIds[--j]) 558 goto try_next; 559 560 if (!j) 561 // The new filter coincides with range [i, end) of the existing filter. 562 return -(1 + i); 563 564 try_next:; 565 } 566 567 // Add the new filter. 568 int FilterID = -(1 + FilterIds.size()); 569 FilterIds.reserve(FilterIds.size() + TyIds.size() + 1); 570 FilterIds.insert(FilterIds.end(), TyIds.begin(), TyIds.end()); 571 FilterEnds.push_back(FilterIds.size()); 572 FilterIds.push_back(0); // terminator 573 return FilterID; 574 } 575 576 /// getPersonality - Return the personality function for the current function. 577 const Function *MachineModuleInfo::getPersonality() const { 578 for (const LandingPadInfo &LPI : LandingPads) 579 if (LPI.Personality) 580 return LPI.Personality; 581 return nullptr; 582 } 583 584 EHPersonality MachineModuleInfo::getPersonalityType() { 585 if (PersonalityTypeCache == EHPersonality::Unknown) { 586 if (const Function *F = getPersonality()) 587 PersonalityTypeCache = classifyEHPersonality(F); 588 } 589 return PersonalityTypeCache; 590 } 591 592 /// getPersonalityIndex - Return unique index for current personality 593 /// function. NULL/first personality function should always get zero index. 594 unsigned MachineModuleInfo::getPersonalityIndex() const { 595 const Function* Personality = nullptr; 596 597 // Scan landing pads. If there is at least one non-NULL personality - use it. 598 for (unsigned i = 0, e = LandingPads.size(); i != e; ++i) 599 if (LandingPads[i].Personality) { 600 Personality = LandingPads[i].Personality; 601 break; 602 } 603 604 for (unsigned i = 0, e = Personalities.size(); i < e; ++i) { 605 if (Personalities[i] == Personality) 606 return i; 607 } 608 609 // This will happen if the current personality function is 610 // in the zero index. 611 return 0; 612 } 613 614 const Function *MachineModuleInfo::getWinEHParent(const Function *F) const { 615 StringRef WinEHParentName = 616 F->getFnAttribute("wineh-parent").getValueAsString(); 617 if (WinEHParentName.empty() || WinEHParentName == F->getName()) 618 return F; 619 return F->getParent()->getFunction(WinEHParentName); 620 } 621 622 WinEHFuncInfo &MachineModuleInfo::getWinEHFuncInfo(const Function *F) { 623 auto &Ptr = FuncInfoMap[getWinEHParent(F)]; 624 if (!Ptr) 625 Ptr.reset(new WinEHFuncInfo); 626 return *Ptr; 627 } 628