Searched refs:getComdat (Results 1 - 12 of 12) sorted by relevance

/external/llvm/include/llvm/IR/
H A DGlobalObject.h48 bool hasComdat() const { return getComdat() != nullptr; }
49 const Comdat *getComdat() const { return ObjComdat; } function in class:llvm::GlobalObject
50 Comdat *getComdat() { return ObjComdat; } function in class:llvm::GlobalObject
H A DGlobalValue.h114 bool hasComdat() const { return getComdat() != nullptr; }
115 Comdat *getComdat();
116 const Comdat *getComdat() const {
117 return const_cast<GlobalValue *>(this)->getComdat();
/external/llvm/lib/IR/
H A DGlobals.cpp101 Comdat *GlobalValue::getComdat() { function in class:GlobalValue
105 return const_cast<GlobalObject *>(GO)->getComdat();
108 return cast<GlobalObject>(this)->getComdat();
H A DAsmWriter.cpp1174 if (const Comdat *C = F.getComdat())
1177 if (const Comdat *C = GV.getComdat())
1493 PrintLLVMName(Out, GV->getComdat()->getName(), ComdatPrefix);
1678 PrintLLVMName(Out, F->getComdat()->getName(), ComdatPrefix);
/external/llvm/lib/Transforms/IPO/
H A DGlobalDCE.cpp90 else if (const Comdat *C = I->getComdat())
103 else if (const Comdat *C = I->getComdat())
114 } else if (const Comdat *C = I->getComdat()) {
H A DGlobalOpt.cpp1948 if (const Comdat *C = GV.getComdat())
1967 if (const Comdat *C = GV->getComdat())
/external/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp196 const Comdat *C = GV->getComdat();
506 const Comdat *C = GV->getComdat();
764 const Comdat *C = GV->getComdat();
773 if (ComdatGV->getComdat() != C)
781 if (const Comdat *C = GV->getComdat()) {
/external/llvm/lib/Linker/
H A DLinkModules.cpp891 if (const Comdat *SC = SGV->getComdat()) {
984 if (const Comdat *SC = SF->getComdat()) {
1065 if (const Comdat *SC = SGA->getComdat()) {
/external/llvm/lib/AsmParser/
H A DLLParser.h163 Comdat *getComdat(const std::string &N, LocTy Loc);
H A DLLParser.cpp1165 Comdat *LLParser::getComdat(const std::string &Name, LocTy Loc) {
2881 C = getComdat(Name, Loc);
/external/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp317 if (const Comdat *C = GO->getComdat())
H A DBitcodeWriter.cpp664 Vals.push_back(GV.hasComdat() ? VE.getComdatID(GV.getComdat()) : 0);
690 Vals.push_back(F.hasComdat() ? VE.getComdatID(F.getComdat()) : 0);

Completed in 269 milliseconds