/external/llvm/include/llvm/IR/ |
D | GlobalObject.h | 60 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
|
D | GlobalValue.h | 116 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/ |
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() 205 if (Comdat *C = G->getComdat()) { in GlobalIsNeeded()
|
D | GlobalOpt.cpp | 1908 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/ |
D | Globals.cpp | 112 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()
|
D | AsmWriter.cpp | 2001 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/ |
D | TargetLoweringObjectFileImpl.cpp | 193 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/ |
D | SymbolRewriter.cpp | 85 if (Comdat *CD = GO->getComdat()) { in rewriteComdat()
|
/external/llvm/lib/AsmParser/ |
D | LLParser.h | 162 Comdat *getComdat(const std::string &N, LocTy Loc);
|
D | LLParser.cpp | 1090 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/ |
D | CGDeclCXX.cpp | 293 if (llvm::Comdat *C = GV->getComdat()) in EmitPointerToInitFunc()
|
D | CGException.cpp | 1455 if (llvm::Comdat *C = ParentFn->getComdat()) { in startOutlinedSEHHelper()
|
D | ItaniumCXXABI.cpp | 1795 llvm::Comdat *C = var->getComdat(); in EmitGuardedInit()
|
D | MicrosoftCXXABI.cpp | 1993 if (llvm::Comdat *C = GV->getComdat()) in EmitThreadLocalInitFuncs()
|
/external/llvm/lib/Linker/ |
D | LinkModules.cpp | 604 if (Comdat *SC = SGV->getComdat()) { in materializeValueFor() 1037 if (const Comdat *SC = SGV->getComdat()) { in linkGlobalValueProto()
|
/external/llvm/tools/gold/ |
D | gold-plugin.cpp | 421 const Comdat *C = Base->getComdat(); in claim_file_hook()
|
/external/llvm/lib/Bitcode/Writer/ |
D | ValueEnumerator.cpp | 586 if (const Comdat *C = GO->getComdat()) in EnumerateValue()
|
D | BitcodeWriter.cpp | 679 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/ |
D | BitcodeReader.cpp | 1524 if (GO->getComdat() == reinterpret_cast<Comdat *>(1)) { in ParseValueSymbolTable()
|