/external/llvm/include/llvm/IR/ |
D | GlobalObject.h | 62 bool hasComdat() const { return getComdat() != nullptr; } in hasComdat() 63 const Comdat *getComdat() const { return ObjComdat; } in getComdat() function 64 Comdat *getComdat() { return ObjComdat; } in getComdat() function
|
D | GlobalValue.h | 134 bool hasComdat() const { return getComdat() != nullptr; } in hasComdat() 135 Comdat *getComdat(); 136 const Comdat *getComdat() const { in getComdat() function 137 return const_cast<GlobalValue *>(this)->getComdat(); in getComdat()
|
/external/llvm/lib/Transforms/IPO/ |
D | GlobalDCE.cpp | 85 if (Comdat *C = F.getComdat()) in runOnModule() 88 if (Comdat *C = GV.getComdat()) in runOnModule() 91 if (Comdat *C = GA.getComdat()) in runOnModule() 198 if (Comdat *C = G->getComdat()) { in GlobalIsNeeded()
|
D | Inliner.cpp | 715 if (const Comdat *C = F->getComdat()) { in removeDeadFunctions() 732 if (const Comdat *C = F.getComdat()) in removeDeadFunctions() 735 if (const Comdat *C = GV.getComdat()) in removeDeadFunctions() 738 if (const Comdat *C = GA.getComdat()) in removeDeadFunctions() 742 const Comdat *C = F->getComdat(); in removeDeadFunctions()
|
D | Internalize.cpp | 137 if (Comdat *C = GV.getComdat()) { in maybeInternalize() 164 Comdat *C = GV.getComdat(); in checkComdatVisibility()
|
D | GlobalOpt.cpp | 2044 const Comdat *C = F->getComdat(); in OptimizeFunctions() 2095 if (const Comdat *C = GV->getComdat()) in OptimizeGlobalVars() 3185 if (const Comdat *C = GV.getComdat()) in runOnModule() 3189 if (const Comdat *C = F.getComdat()) in runOnModule() 3193 if (const Comdat *C = GA.getComdat()) in runOnModule()
|
/external/llvm/lib/IR/ |
D | Globals.cpp | 111 Comdat *GlobalValue::getComdat() { in getComdat() function in GlobalValue 115 return const_cast<GlobalObject *>(GO)->getComdat(); in getComdat() 118 return cast<GlobalObject>(this)->getComdat(); in getComdat()
|
D | AsmWriter.cpp | 2077 if (const Comdat *C = F.getComdat()) in AssemblyWriter() 2080 if (const Comdat *C = GV.getComdat()) in AssemblyWriter() 2382 const Comdat *C = GO.getComdat(); in maybePrintComdat()
|
/external/llvm/lib/Linker/ |
D | LinkModules.cpp | 619 if (const Comdat *SC = GV.getComdat()) { in linkIfNeeded() 645 const Comdat *SC = GV.getComdat(); in addLazyFor() 691 if (const Comdat *SC = GV.getComdat()) in run() 695 if (const Comdat *SC = SF.getComdat()) in run() 699 if (const Comdat *SC = GA.getComdat()) in run() 720 const Comdat *SC = GV->getComdat(); in run()
|
D | IRMover.cpp | 1067 if (const Comdat *SC = SGV->getComdat()) { in linkGlobalValueProto()
|
/external/llvm/lib/CodeGen/ |
D | LowerEmuTLS.cpp | 49 to->getComdat()->setSelectionKind(from->getComdat()->getSelectionKind()); in copyLinkageVisibility()
|
D | TargetLoweringObjectFileImpl.cpp | 193 const Comdat *C = GV->getComdat(); in getELFComdat() 329 const Comdat *C = F.getComdat(); in getSectionForJumpTable() 513 const Comdat *C = GV->getComdat(); in checkMachOComdat() 823 const Comdat *C = GV->getComdat(); in getComdatGVForCOFF() 832 if (ComdatGV->getComdat() != C) in getComdatGVForCOFF() 840 if (const Comdat *C = GV->getComdat()) { in getSelectionForCOFF() 978 const Comdat *C = F.getComdat(); in getSectionForJumpTable()
|
/external/llvm/lib/Transforms/Utils/ |
D | SplitModule.cpp | 48 if (const Comdat *C = GV->getComdat()) in isInPartition()
|
D | SymbolRewriter.cpp | 84 if (Comdat *CD = GO->getComdat()) { in rewriteComdat()
|
/external/llvm/lib/AsmParser/ |
D | LLParser.h | 174 Comdat *getComdat(const std::string &N, LocTy Loc);
|
D | LLParser.cpp | 1151 Comdat *LLParser::getComdat(const std::string &Name, LocTy Loc) { in getComdat() function in LLParser 3104 C = getComdat(Lex.getStrVal(), Lex.getLoc()); in parseOptionalComdat() 3111 C = getComdat(GlobalName, KwLoc); in parseOptionalComdat()
|
/external/clang/lib/CodeGen/ |
D | CGDeclCXX.cpp | 299 if (llvm::Comdat *C = GV->getComdat()) in EmitPointerToInitFunc()
|
D | CGDecl.cpp | 316 GV->setComdat(OldGV->getComdat()); in AddInitializerToStaticVarDecl()
|
D | CGException.cpp | 1666 if (llvm::Comdat *C = ParentFn->getComdat()) { in startOutlinedSEHHelper()
|
D | ItaniumCXXABI.cpp | 1969 llvm::Comdat *C = var->getComdat(); in EmitGuardedInit()
|
D | MicrosoftCXXABI.cpp | 2220 if (llvm::Comdat *C = GV->getComdat()) in EmitThreadLocalInitFuncs()
|
/external/llvm/lib/Bitcode/Writer/ |
D | ValueEnumerator.cpp | 575 if (const Comdat *C = GO->getComdat()) in EnumerateValue()
|
D | BitcodeWriter.cpp | 729 Vals.push_back(GV.hasComdat() ? VE.getComdatID(GV.getComdat()) : 0); in WriteModuleInfo() 756 Vals.push_back(F.hasComdat() ? VE.getComdatID(F.getComdat()) : 0); in WriteModuleInfo()
|
/external/llvm/tools/gold/ |
D | gold-plugin.cpp | 506 const Comdat *C = Base->getComdat(); in claim_file_hook()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 1720 if (GO->getComdat() == reinterpret_cast<Comdat *>(1)) { in recordValue()
|