1 //===-- Function.cpp - Implement the Global object classes ----------------===// 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 // This file implements the Function class for the IR library. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "llvm/IR/Function.h" 15 #include "SymbolTableListTraitsImpl.h" 16 #include "llvm/ADT/DenseMap.h" 17 #include "llvm/ADT/STLExtras.h" 18 #include "llvm/ADT/StringExtras.h" 19 #include "llvm/CodeGen/ValueTypes.h" 20 #include "llvm/IR/DerivedTypes.h" 21 #include "llvm/IR/IntrinsicInst.h" 22 #include "llvm/IR/LLVMContext.h" 23 #include "llvm/IR/Module.h" 24 #include "llvm/Support/CallSite.h" 25 #include "llvm/Support/InstIterator.h" 26 #include "llvm/Support/LeakDetector.h" 27 #include "llvm/Support/ManagedStatic.h" 28 #include "llvm/Support/RWMutex.h" 29 #include "llvm/Support/StringPool.h" 30 #include "llvm/Support/Threading.h" 31 using namespace llvm; 32 33 // Explicit instantiations of SymbolTableListTraits since some of the methods 34 // are not in the public header file... 35 template class llvm::SymbolTableListTraits<Argument, Function>; 36 template class llvm::SymbolTableListTraits<BasicBlock, Function>; 37 38 //===----------------------------------------------------------------------===// 39 // Argument Implementation 40 //===----------------------------------------------------------------------===// 41 42 void Argument::anchor() { } 43 44 Argument::Argument(Type *Ty, const Twine &Name, Function *Par) 45 : Value(Ty, Value::ArgumentVal) { 46 Parent = 0; 47 48 // Make sure that we get added to a function 49 LeakDetector::addGarbageObject(this); 50 51 if (Par) 52 Par->getArgumentList().push_back(this); 53 setName(Name); 54 } 55 56 void Argument::setParent(Function *parent) { 57 if (getParent()) 58 LeakDetector::addGarbageObject(this); 59 Parent = parent; 60 if (getParent()) 61 LeakDetector::removeGarbageObject(this); 62 } 63 64 /// getArgNo - Return the index of this formal argument in its containing 65 /// function. For example in "void foo(int a, float b)" a is 0 and b is 1. 66 unsigned Argument::getArgNo() const { 67 const Function *F = getParent(); 68 assert(F && "Argument is not in a function"); 69 70 Function::const_arg_iterator AI = F->arg_begin(); 71 unsigned ArgIdx = 0; 72 for (; &*AI != this; ++AI) 73 ++ArgIdx; 74 75 return ArgIdx; 76 } 77 78 /// hasByValAttr - Return true if this argument has the byval attribute on it 79 /// in its containing function. 80 bool Argument::hasByValAttr() const { 81 if (!getType()->isPointerTy()) return false; 82 return getParent()->getAttributes(). 83 hasAttribute(getArgNo()+1, Attribute::ByVal); 84 } 85 86 unsigned Argument::getParamAlignment() const { 87 assert(getType()->isPointerTy() && "Only pointers have alignments"); 88 return getParent()->getParamAlignment(getArgNo()+1); 89 90 } 91 92 /// hasNestAttr - Return true if this argument has the nest attribute on 93 /// it in its containing function. 94 bool Argument::hasNestAttr() const { 95 if (!getType()->isPointerTy()) return false; 96 return getParent()->getAttributes(). 97 hasAttribute(getArgNo()+1, Attribute::Nest); 98 } 99 100 /// hasNoAliasAttr - Return true if this argument has the noalias attribute on 101 /// it in its containing function. 102 bool Argument::hasNoAliasAttr() const { 103 if (!getType()->isPointerTy()) return false; 104 return getParent()->getAttributes(). 105 hasAttribute(getArgNo()+1, Attribute::NoAlias); 106 } 107 108 /// hasNoCaptureAttr - Return true if this argument has the nocapture attribute 109 /// on it in its containing function. 110 bool Argument::hasNoCaptureAttr() const { 111 if (!getType()->isPointerTy()) return false; 112 return getParent()->getAttributes(). 113 hasAttribute(getArgNo()+1, Attribute::NoCapture); 114 } 115 116 /// hasSRetAttr - Return true if this argument has the sret attribute on 117 /// it in its containing function. 118 bool Argument::hasStructRetAttr() const { 119 if (!getType()->isPointerTy()) return false; 120 if (this != getParent()->arg_begin()) 121 return false; // StructRet param must be first param 122 return getParent()->getAttributes(). 123 hasAttribute(1, Attribute::StructRet); 124 } 125 126 /// addAttr - Add a Attribute to an argument 127 void Argument::addAttr(Attribute attr) { 128 getParent()->addAttribute(getArgNo() + 1, attr); 129 } 130 131 /// removeAttr - Remove a Attribute from an argument 132 void Argument::removeAttr(Attribute attr) { 133 getParent()->removeAttribute(getArgNo() + 1, attr); 134 } 135 136 137 //===----------------------------------------------------------------------===// 138 // Helper Methods in Function 139 //===----------------------------------------------------------------------===// 140 141 LLVMContext &Function::getContext() const { 142 return getType()->getContext(); 143 } 144 145 FunctionType *Function::getFunctionType() const { 146 return cast<FunctionType>(getType()->getElementType()); 147 } 148 149 bool Function::isVarArg() const { 150 return getFunctionType()->isVarArg(); 151 } 152 153 Type *Function::getReturnType() const { 154 return getFunctionType()->getReturnType(); 155 } 156 157 void Function::removeFromParent() { 158 getParent()->getFunctionList().remove(this); 159 } 160 161 void Function::eraseFromParent() { 162 getParent()->getFunctionList().erase(this); 163 } 164 165 //===----------------------------------------------------------------------===// 166 // Function Implementation 167 //===----------------------------------------------------------------------===// 168 169 Function::Function(FunctionType *Ty, LinkageTypes Linkage, 170 const Twine &name, Module *ParentModule) 171 : GlobalValue(PointerType::getUnqual(Ty), 172 Value::FunctionVal, 0, 0, Linkage, name) { 173 assert(FunctionType::isValidReturnType(getReturnType()) && 174 "invalid return type"); 175 SymTab = new ValueSymbolTable(); 176 177 // If the function has arguments, mark them as lazily built. 178 if (Ty->getNumParams()) 179 setValueSubclassData(1); // Set the "has lazy arguments" bit. 180 181 // Make sure that we get added to a function 182 LeakDetector::addGarbageObject(this); 183 184 if (ParentModule) 185 ParentModule->getFunctionList().push_back(this); 186 187 // Ensure intrinsics have the right parameter attributes. 188 if (unsigned IID = getIntrinsicID()) 189 setAttributes(Intrinsic::getAttributes(getContext(), Intrinsic::ID(IID))); 190 191 } 192 193 Function::~Function() { 194 dropAllReferences(); // After this it is safe to delete instructions. 195 196 // Delete all of the method arguments and unlink from symbol table... 197 ArgumentList.clear(); 198 delete SymTab; 199 200 // Remove the function from the on-the-side GC table. 201 clearGC(); 202 } 203 204 void Function::BuildLazyArguments() const { 205 // Create the arguments vector, all arguments start out unnamed. 206 FunctionType *FT = getFunctionType(); 207 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) { 208 assert(!FT->getParamType(i)->isVoidTy() && 209 "Cannot have void typed arguments!"); 210 ArgumentList.push_back(new Argument(FT->getParamType(i))); 211 } 212 213 // Clear the lazy arguments bit. 214 unsigned SDC = getSubclassDataFromValue(); 215 const_cast<Function*>(this)->setValueSubclassData(SDC &= ~1); 216 } 217 218 size_t Function::arg_size() const { 219 return getFunctionType()->getNumParams(); 220 } 221 bool Function::arg_empty() const { 222 return getFunctionType()->getNumParams() == 0; 223 } 224 225 void Function::setParent(Module *parent) { 226 if (getParent()) 227 LeakDetector::addGarbageObject(this); 228 Parent = parent; 229 if (getParent()) 230 LeakDetector::removeGarbageObject(this); 231 } 232 233 // dropAllReferences() - This function causes all the subinstructions to "let 234 // go" of all references that they are maintaining. This allows one to 235 // 'delete' a whole class at a time, even though there may be circular 236 // references... first all references are dropped, and all use counts go to 237 // zero. Then everything is deleted for real. Note that no operations are 238 // valid on an object that has "dropped all references", except operator 239 // delete. 240 // 241 void Function::dropAllReferences() { 242 for (iterator I = begin(), E = end(); I != E; ++I) 243 I->dropAllReferences(); 244 245 // Delete all basic blocks. They are now unused, except possibly by 246 // blockaddresses, but BasicBlock's destructor takes care of those. 247 while (!BasicBlocks.empty()) 248 BasicBlocks.begin()->eraseFromParent(); 249 } 250 251 void Function::addAttribute(unsigned i, Attribute attr) { 252 AttributeSet PAL = getAttributes(); 253 PAL = PAL.addAttr(getContext(), i, attr); 254 setAttributes(PAL); 255 } 256 257 void Function::removeAttribute(unsigned i, Attribute attr) { 258 AttributeSet PAL = getAttributes(); 259 PAL = PAL.removeAttr(getContext(), i, attr); 260 setAttributes(PAL); 261 } 262 263 // Maintain the GC name for each function in an on-the-side table. This saves 264 // allocating an additional word in Function for programs which do not use GC 265 // (i.e., most programs) at the cost of increased overhead for clients which do 266 // use GC. 267 static DenseMap<const Function*,PooledStringPtr> *GCNames; 268 static StringPool *GCNamePool; 269 static ManagedStatic<sys::SmartRWMutex<true> > GCLock; 270 271 bool Function::hasGC() const { 272 sys::SmartScopedReader<true> Reader(*GCLock); 273 return GCNames && GCNames->count(this); 274 } 275 276 const char *Function::getGC() const { 277 assert(hasGC() && "Function has no collector"); 278 sys::SmartScopedReader<true> Reader(*GCLock); 279 return *(*GCNames)[this]; 280 } 281 282 void Function::setGC(const char *Str) { 283 sys::SmartScopedWriter<true> Writer(*GCLock); 284 if (!GCNamePool) 285 GCNamePool = new StringPool(); 286 if (!GCNames) 287 GCNames = new DenseMap<const Function*,PooledStringPtr>(); 288 (*GCNames)[this] = GCNamePool->intern(Str); 289 } 290 291 void Function::clearGC() { 292 sys::SmartScopedWriter<true> Writer(*GCLock); 293 if (GCNames) { 294 GCNames->erase(this); 295 if (GCNames->empty()) { 296 delete GCNames; 297 GCNames = 0; 298 if (GCNamePool->empty()) { 299 delete GCNamePool; 300 GCNamePool = 0; 301 } 302 } 303 } 304 } 305 306 /// copyAttributesFrom - copy all additional attributes (those not needed to 307 /// create a Function) from the Function Src to this one. 308 void Function::copyAttributesFrom(const GlobalValue *Src) { 309 assert(isa<Function>(Src) && "Expected a Function!"); 310 GlobalValue::copyAttributesFrom(Src); 311 const Function *SrcF = cast<Function>(Src); 312 setCallingConv(SrcF->getCallingConv()); 313 setAttributes(SrcF->getAttributes()); 314 if (SrcF->hasGC()) 315 setGC(SrcF->getGC()); 316 else 317 clearGC(); 318 } 319 320 /// getIntrinsicID - This method returns the ID number of the specified 321 /// function, or Intrinsic::not_intrinsic if the function is not an 322 /// intrinsic, or if the pointer is null. This value is always defined to be 323 /// zero to allow easy checking for whether a function is intrinsic or not. The 324 /// particular intrinsic functions which correspond to this value are defined in 325 /// llvm/Intrinsics.h. 326 /// 327 unsigned Function::getIntrinsicID() const { 328 const ValueName *ValName = this->getValueName(); 329 if (!ValName || !isIntrinsic()) 330 return 0; 331 unsigned Len = ValName->getKeyLength(); 332 const char *Name = ValName->getKeyData(); 333 334 #define GET_FUNCTION_RECOGNIZER 335 #include "llvm/IR/Intrinsics.gen" 336 #undef GET_FUNCTION_RECOGNIZER 337 return 0; 338 } 339 340 std::string Intrinsic::getName(ID id, ArrayRef<Type*> Tys) { 341 assert(id < num_intrinsics && "Invalid intrinsic ID!"); 342 static const char * const Table[] = { 343 "not_intrinsic", 344 #define GET_INTRINSIC_NAME_TABLE 345 #include "llvm/IR/Intrinsics.gen" 346 #undef GET_INTRINSIC_NAME_TABLE 347 }; 348 if (Tys.empty()) 349 return Table[id]; 350 std::string Result(Table[id]); 351 for (unsigned i = 0; i < Tys.size(); ++i) { 352 if (PointerType* PTyp = dyn_cast<PointerType>(Tys[i])) { 353 Result += ".p" + llvm::utostr(PTyp->getAddressSpace()) + 354 EVT::getEVT(PTyp->getElementType()).getEVTString(); 355 } 356 else if (Tys[i]) 357 Result += "." + EVT::getEVT(Tys[i]).getEVTString(); 358 } 359 return Result; 360 } 361 362 363 /// IIT_Info - These are enumerators that describe the entries returned by the 364 /// getIntrinsicInfoTableEntries function. 365 /// 366 /// NOTE: This must be kept in synch with the copy in TblGen/IntrinsicEmitter! 367 enum IIT_Info { 368 // Common values should be encoded with 0-15. 369 IIT_Done = 0, 370 IIT_I1 = 1, 371 IIT_I8 = 2, 372 IIT_I16 = 3, 373 IIT_I32 = 4, 374 IIT_I64 = 5, 375 IIT_F16 = 6, 376 IIT_F32 = 7, 377 IIT_F64 = 8, 378 IIT_V2 = 9, 379 IIT_V4 = 10, 380 IIT_V8 = 11, 381 IIT_V16 = 12, 382 IIT_V32 = 13, 383 IIT_PTR = 14, 384 IIT_ARG = 15, 385 386 // Values from 16+ are only encodable with the inefficient encoding. 387 IIT_MMX = 16, 388 IIT_METADATA = 17, 389 IIT_EMPTYSTRUCT = 18, 390 IIT_STRUCT2 = 19, 391 IIT_STRUCT3 = 20, 392 IIT_STRUCT4 = 21, 393 IIT_STRUCT5 = 22, 394 IIT_EXTEND_VEC_ARG = 23, 395 IIT_TRUNC_VEC_ARG = 24, 396 IIT_ANYPTR = 25 397 }; 398 399 400 static void DecodeIITType(unsigned &NextElt, ArrayRef<unsigned char> Infos, 401 SmallVectorImpl<Intrinsic::IITDescriptor> &OutputTable) { 402 IIT_Info Info = IIT_Info(Infos[NextElt++]); 403 unsigned StructElts = 2; 404 using namespace Intrinsic; 405 406 switch (Info) { 407 case IIT_Done: 408 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Void, 0)); 409 return; 410 case IIT_MMX: 411 OutputTable.push_back(IITDescriptor::get(IITDescriptor::MMX, 0)); 412 return; 413 case IIT_METADATA: 414 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Metadata, 0)); 415 return; 416 case IIT_F16: 417 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Half, 0)); 418 return; 419 case IIT_F32: 420 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Float, 0)); 421 return; 422 case IIT_F64: 423 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Double, 0)); 424 return; 425 case IIT_I1: 426 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 1)); 427 return; 428 case IIT_I8: 429 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 8)); 430 return; 431 case IIT_I16: 432 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer,16)); 433 return; 434 case IIT_I32: 435 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 32)); 436 return; 437 case IIT_I64: 438 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 64)); 439 return; 440 case IIT_V2: 441 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Vector, 2)); 442 DecodeIITType(NextElt, Infos, OutputTable); 443 return; 444 case IIT_V4: 445 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Vector, 4)); 446 DecodeIITType(NextElt, Infos, OutputTable); 447 return; 448 case IIT_V8: 449 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Vector, 8)); 450 DecodeIITType(NextElt, Infos, OutputTable); 451 return; 452 case IIT_V16: 453 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Vector, 16)); 454 DecodeIITType(NextElt, Infos, OutputTable); 455 return; 456 case IIT_V32: 457 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Vector, 32)); 458 DecodeIITType(NextElt, Infos, OutputTable); 459 return; 460 case IIT_PTR: 461 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Pointer, 0)); 462 DecodeIITType(NextElt, Infos, OutputTable); 463 return; 464 case IIT_ANYPTR: { // [ANYPTR addrspace, subtype] 465 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Pointer, 466 Infos[NextElt++])); 467 DecodeIITType(NextElt, Infos, OutputTable); 468 return; 469 } 470 case IIT_ARG: { 471 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); 472 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Argument, ArgInfo)); 473 return; 474 } 475 case IIT_EXTEND_VEC_ARG: { 476 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); 477 OutputTable.push_back(IITDescriptor::get(IITDescriptor::ExtendVecArgument, 478 ArgInfo)); 479 return; 480 } 481 case IIT_TRUNC_VEC_ARG: { 482 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); 483 OutputTable.push_back(IITDescriptor::get(IITDescriptor::TruncVecArgument, 484 ArgInfo)); 485 return; 486 } 487 case IIT_EMPTYSTRUCT: 488 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Struct, 0)); 489 return; 490 case IIT_STRUCT5: ++StructElts; // FALL THROUGH. 491 case IIT_STRUCT4: ++StructElts; // FALL THROUGH. 492 case IIT_STRUCT3: ++StructElts; // FALL THROUGH. 493 case IIT_STRUCT2: { 494 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Struct,StructElts)); 495 496 for (unsigned i = 0; i != StructElts; ++i) 497 DecodeIITType(NextElt, Infos, OutputTable); 498 return; 499 } 500 } 501 llvm_unreachable("unhandled"); 502 } 503 504 505 #define GET_INTRINSIC_GENERATOR_GLOBAL 506 #include "llvm/IR/Intrinsics.gen" 507 #undef GET_INTRINSIC_GENERATOR_GLOBAL 508 509 void Intrinsic::getIntrinsicInfoTableEntries(ID id, 510 SmallVectorImpl<IITDescriptor> &T){ 511 // Check to see if the intrinsic's type was expressible by the table. 512 unsigned TableVal = IIT_Table[id-1]; 513 514 // Decode the TableVal into an array of IITValues. 515 SmallVector<unsigned char, 8> IITValues; 516 ArrayRef<unsigned char> IITEntries; 517 unsigned NextElt = 0; 518 if ((TableVal >> 31) != 0) { 519 // This is an offset into the IIT_LongEncodingTable. 520 IITEntries = IIT_LongEncodingTable; 521 522 // Strip sentinel bit. 523 NextElt = (TableVal << 1) >> 1; 524 } else { 525 // Decode the TableVal into an array of IITValues. If the entry was encoded 526 // into a single word in the table itself, decode it now. 527 do { 528 IITValues.push_back(TableVal & 0xF); 529 TableVal >>= 4; 530 } while (TableVal); 531 532 IITEntries = IITValues; 533 NextElt = 0; 534 } 535 536 // Okay, decode the table into the output vector of IITDescriptors. 537 DecodeIITType(NextElt, IITEntries, T); 538 while (NextElt != IITEntries.size() && IITEntries[NextElt] != 0) 539 DecodeIITType(NextElt, IITEntries, T); 540 } 541 542 543 static Type *DecodeFixedType(ArrayRef<Intrinsic::IITDescriptor> &Infos, 544 ArrayRef<Type*> Tys, LLVMContext &Context) { 545 using namespace Intrinsic; 546 IITDescriptor D = Infos.front(); 547 Infos = Infos.slice(1); 548 549 switch (D.Kind) { 550 case IITDescriptor::Void: return Type::getVoidTy(Context); 551 case IITDescriptor::MMX: return Type::getX86_MMXTy(Context); 552 case IITDescriptor::Metadata: return Type::getMetadataTy(Context); 553 case IITDescriptor::Half: return Type::getHalfTy(Context); 554 case IITDescriptor::Float: return Type::getFloatTy(Context); 555 case IITDescriptor::Double: return Type::getDoubleTy(Context); 556 557 case IITDescriptor::Integer: 558 return IntegerType::get(Context, D.Integer_Width); 559 case IITDescriptor::Vector: 560 return VectorType::get(DecodeFixedType(Infos, Tys, Context),D.Vector_Width); 561 case IITDescriptor::Pointer: 562 return PointerType::get(DecodeFixedType(Infos, Tys, Context), 563 D.Pointer_AddressSpace); 564 case IITDescriptor::Struct: { 565 Type *Elts[5]; 566 assert(D.Struct_NumElements <= 5 && "Can't handle this yet"); 567 for (unsigned i = 0, e = D.Struct_NumElements; i != e; ++i) 568 Elts[i] = DecodeFixedType(Infos, Tys, Context); 569 return StructType::get(Context, ArrayRef<Type*>(Elts,D.Struct_NumElements)); 570 } 571 572 case IITDescriptor::Argument: 573 return Tys[D.getArgumentNumber()]; 574 case IITDescriptor::ExtendVecArgument: 575 return VectorType::getExtendedElementVectorType(cast<VectorType>( 576 Tys[D.getArgumentNumber()])); 577 578 case IITDescriptor::TruncVecArgument: 579 return VectorType::getTruncatedElementVectorType(cast<VectorType>( 580 Tys[D.getArgumentNumber()])); 581 } 582 llvm_unreachable("unhandled"); 583 } 584 585 586 587 FunctionType *Intrinsic::getType(LLVMContext &Context, 588 ID id, ArrayRef<Type*> Tys) { 589 SmallVector<IITDescriptor, 8> Table; 590 getIntrinsicInfoTableEntries(id, Table); 591 592 ArrayRef<IITDescriptor> TableRef = Table; 593 Type *ResultTy = DecodeFixedType(TableRef, Tys, Context); 594 595 SmallVector<Type*, 8> ArgTys; 596 while (!TableRef.empty()) 597 ArgTys.push_back(DecodeFixedType(TableRef, Tys, Context)); 598 599 return FunctionType::get(ResultTy, ArgTys, false); 600 } 601 602 bool Intrinsic::isOverloaded(ID id) { 603 #define GET_INTRINSIC_OVERLOAD_TABLE 604 #include "llvm/IR/Intrinsics.gen" 605 #undef GET_INTRINSIC_OVERLOAD_TABLE 606 } 607 608 /// This defines the "Intrinsic::getAttributes(ID id)" method. 609 #define GET_INTRINSIC_ATTRIBUTES 610 #include "llvm/IR/Intrinsics.gen" 611 #undef GET_INTRINSIC_ATTRIBUTES 612 613 Function *Intrinsic::getDeclaration(Module *M, ID id, ArrayRef<Type*> Tys) { 614 // There can never be multiple globals with the same name of different types, 615 // because intrinsics must be a specific type. 616 return 617 cast<Function>(M->getOrInsertFunction(getName(id, Tys), 618 getType(M->getContext(), id, Tys))); 619 } 620 621 // This defines the "Intrinsic::getIntrinsicForGCCBuiltin()" method. 622 #define GET_LLVM_INTRINSIC_FOR_GCC_BUILTIN 623 #include "llvm/IR/Intrinsics.gen" 624 #undef GET_LLVM_INTRINSIC_FOR_GCC_BUILTIN 625 626 /// hasAddressTaken - returns true if there are any uses of this function 627 /// other than direct calls or invokes to it. 628 bool Function::hasAddressTaken(const User* *PutOffender) const { 629 for (Value::const_use_iterator I = use_begin(), E = use_end(); I != E; ++I) { 630 const User *U = *I; 631 if (isa<BlockAddress>(U)) 632 continue; 633 if (!isa<CallInst>(U) && !isa<InvokeInst>(U)) 634 return PutOffender ? (*PutOffender = U, true) : true; 635 ImmutableCallSite CS(cast<Instruction>(U)); 636 if (!CS.isCallee(I)) 637 return PutOffender ? (*PutOffender = U, true) : true; 638 } 639 return false; 640 } 641 642 bool Function::isDefTriviallyDead() const { 643 // Check the linkage 644 if (!hasLinkOnceLinkage() && !hasLocalLinkage() && 645 !hasAvailableExternallyLinkage()) 646 return false; 647 648 // Check if the function is used by anything other than a blockaddress. 649 for (Value::const_use_iterator I = use_begin(), E = use_end(); I != E; ++I) 650 if (!isa<BlockAddress>(*I)) 651 return false; 652 653 return true; 654 } 655 656 /// callsFunctionThatReturnsTwice - Return true if the function has a call to 657 /// setjmp or other function that gcc recognizes as "returning twice". 658 bool Function::callsFunctionThatReturnsTwice() const { 659 for (const_inst_iterator 660 I = inst_begin(this), E = inst_end(this); I != E; ++I) { 661 const CallInst* callInst = dyn_cast<CallInst>(&*I); 662 if (!callInst) 663 continue; 664 if (callInst->canReturnTwice()) 665 return true; 666 } 667 668 return false; 669 } 670 671