Home
last modified time | relevance | path

Searched refs:getComdat (Results 1 – 19 of 19) sorted by relevance

/external/llvm/include/llvm/IR/
DGlobalObject.h60 bool hasComdat() const { return getComdat() != nullptr; } in hasComdat()
61 const Comdat *getComdat() const { return ObjComdat; } in getComdat() function
62 Comdat *getComdat() { return ObjComdat; } in getComdat() function
DGlobalValue.h116 bool hasComdat() const { return getComdat() != nullptr; } in hasComdat()
117 Comdat *getComdat();
118 const Comdat *getComdat() const { in getComdat() function
119 return const_cast<GlobalValue *>(this)->getComdat(); in getComdat()
/external/llvm/lib/Transforms/IPO/
DGlobalDCE.cpp85 if (Comdat *C = F.getComdat()) in runOnModule()
88 if (Comdat *C = GV.getComdat()) in runOnModule()
91 if (Comdat *C = GA.getComdat()) in runOnModule()
205 if (Comdat *C = G->getComdat()) { in GlobalIsNeeded()
DGlobalOpt.cpp1908 const Comdat *C = F->getComdat(); in OptimizeFunctions()
1959 if (const Comdat *C = GV->getComdat()) in OptimizeGlobalVars()
3048 if (const Comdat *C = GV.getComdat()) in runOnModule()
3052 if (const Comdat *C = F.getComdat()) in runOnModule()
3056 if (const Comdat *C = GA.getComdat()) in runOnModule()
/external/llvm/lib/IR/
DGlobals.cpp112 Comdat *GlobalValue::getComdat() { in getComdat() function in GlobalValue
116 return const_cast<GlobalObject *>(GO)->getComdat(); in getComdat()
119 return cast<GlobalObject>(this)->getComdat(); in getComdat()
DAsmWriter.cpp2001 if (const Comdat *C = F.getComdat()) in init()
2004 if (const Comdat *C = GV.getComdat()) in init()
2294 const Comdat *C = GO.getComdat(); in maybePrintComdat()
/external/llvm/lib/CodeGen/
DTargetLoweringObjectFileImpl.cpp193 const Comdat *C = GV->getComdat(); in getELFComdat()
335 const Comdat *C = F.getComdat(); in getSectionForJumpTable()
535 const Comdat *C = GV->getComdat(); in checkMachOComdat()
821 const Comdat *C = GV->getComdat(); in getComdatGVForCOFF()
830 if (ComdatGV->getComdat() != C) in getComdatGVForCOFF()
838 if (const Comdat *C = GV->getComdat()) { in getSelectionForCOFF()
978 const Comdat *C = F.getComdat(); in getSectionForJumpTable()
/external/llvm/lib/Transforms/Utils/
DSymbolRewriter.cpp85 if (Comdat *CD = GO->getComdat()) { in rewriteComdat()
/external/llvm/lib/AsmParser/
DLLParser.h162 Comdat *getComdat(const std::string &N, LocTy Loc);
DLLParser.cpp1090 Comdat *LLParser::getComdat(const std::string &Name, LocTy Loc) { in getComdat() function in LLParser
2927 C = getComdat(Lex.getStrVal(), Lex.getLoc()); in parseOptionalComdat()
2934 C = getComdat(GlobalName, KwLoc); in parseOptionalComdat()
/external/clang/lib/CodeGen/
DCGDeclCXX.cpp293 if (llvm::Comdat *C = GV->getComdat()) in EmitPointerToInitFunc()
DCGException.cpp1455 if (llvm::Comdat *C = ParentFn->getComdat()) { in startOutlinedSEHHelper()
DItaniumCXXABI.cpp1795 llvm::Comdat *C = var->getComdat(); in EmitGuardedInit()
DMicrosoftCXXABI.cpp1993 if (llvm::Comdat *C = GV->getComdat()) in EmitThreadLocalInitFuncs()
/external/llvm/lib/Linker/
DLinkModules.cpp604 if (Comdat *SC = SGV->getComdat()) { in materializeValueFor()
1037 if (const Comdat *SC = SGV->getComdat()) { in linkGlobalValueProto()
/external/llvm/tools/gold/
Dgold-plugin.cpp421 const Comdat *C = Base->getComdat(); in claim_file_hook()
/external/llvm/lib/Bitcode/Writer/
DValueEnumerator.cpp586 if (const Comdat *C = GO->getComdat()) in EnumerateValue()
DBitcodeWriter.cpp679 Vals.push_back(GV.hasComdat() ? VE.getComdatID(GV.getComdat()) : 0); in WriteModuleInfo()
706 Vals.push_back(F.hasComdat() ? VE.getComdatID(F.getComdat()) : 0); in WriteModuleInfo()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp1524 if (GO->getComdat() == reinterpret_cast<Comdat *>(1)) { in ParseValueSymbolTable()