| /minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/ |
| H A 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
|
| H A 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()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Transforms/IPO/ |
| H A D | GlobalDCE.cpp | 192 if (Comdat *C = G->getComdat()) { in GlobalIsNeeded() 194 if (F.getComdat() == C) in GlobalIsNeeded() 197 if (GV.getComdat() == C) in GlobalIsNeeded() 200 if (GA.getComdat() == C) in GlobalIsNeeded()
|
| H A D | GlobalOpt.cpp | 1913 const Comdat *C = F->getComdat(); in OptimizeFunctions() 1963 if (const Comdat *C = GV->getComdat()) in OptimizeGlobalVars() 3053 if (const Comdat *C = GV.getComdat()) in runOnModule() 3057 if (const Comdat *C = F.getComdat()) in runOnModule() 3061 if (const Comdat *C = GA.getComdat()) in runOnModule()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/IR/ |
| H A D | Globals.cpp | 116 Comdat *GlobalValue::getComdat() { in getComdat() function in GlobalValue 120 return const_cast<GlobalObject *>(GO)->getComdat(); in getComdat() 123 return cast<GlobalObject>(this)->getComdat(); in getComdat()
|
| H A D | AsmWriter.cpp | 1448 if (const Comdat *C = F.getComdat()) in init() 1451 if (const Comdat *C = GV.getComdat()) in init() 1741 const Comdat *C = GO.getComdat(); in maybePrintComdat()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/ |
| H A D | TargetLoweringObjectFileImpl.cpp | 198 const Comdat *C = GV->getComdat(); in getELFComdat() 526 const Comdat *C = GV->getComdat(); in checkMachOComdat() 754 const Comdat *C = GV->getComdat(); in getComdatGVForCOFF() 763 if (ComdatGV->getComdat() != C) in getComdatGVForCOFF() 771 if (const Comdat *C = GV->getComdat()) { in getSelectionForCOFF()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Utils/ |
| H A D | SymbolRewriter.cpp | 84 if (Comdat *CD = GO->getComdat()) { in rewriteComdat()
|
| /minix3/external/bsd/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGDeclCXX.cpp | 270 llvm::Comdat *C = GV->getComdat(); in EmitPointerToInitFunc()
|
| H A D | MicrosoftCXXABI.cpp | 1838 llvm::Comdat *C = GV->getComdat(); in EmitThreadLocalInitFuncs()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/AsmParser/ |
| H A D | LLParser.h | 187 Comdat *getComdat(const std::string &N, LocTy Loc);
|
| H A D | LLParser.cpp | 1095 Comdat *LLParser::getComdat(const std::string &Name, LocTy Loc) { in getComdat() function in LLParser 2860 C = getComdat(Lex.getStrVal(), Lex.getLoc()); in parseOptionalComdat() 2867 C = getComdat(GlobalName, KwLoc); in parseOptionalComdat()
|
| /minix3/external/bsd/llvm/dist/llvm/tools/gold/ |
| H A D | gold-plugin.cpp | 401 const Comdat *C = Base->getComdat(); in claim_file_hook()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Linker/ |
| H A D | LinkModules.cpp | 602 if (Comdat *SC = SGV->getComdat()) { in materializeValueFor() 1042 if (const Comdat *SC = SGV->getComdat()) { in linkGlobalValueProto()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Bitcode/Writer/ |
| H A D | ValueEnumerator.cpp | 590 if (const Comdat *C = GO->getComdat()) in EnumerateValue()
|
| H A D | BitcodeWriter.cpp | 672 Vals.push_back(GV.hasComdat() ? VE.getComdatID(GV.getComdat()) : 0); in WriteModuleInfo() 699 Vals.push_back(F.hasComdat() ? VE.getComdatID(F.getComdat()) : 0); in WriteModuleInfo()
|