HomeSort by relevance Sort by last modified time
    Searched refs:getComdat (Results 1 - 25 of 25) sorted by null

  /external/llvm/include/llvm/IR/
GlobalObject.h 62 bool hasComdat() const { return getComdat() != nullptr; }
63 const Comdat *getComdat() const { return ObjComdat; }
64 Comdat *getComdat() { return ObjComdat; }
GlobalValue.h 134 bool hasComdat() const { return getComdat() != nullptr; }
135 Comdat *getComdat();
136 const Comdat *getComdat() const {
137 return const_cast<GlobalValue *>(this)->getComdat();
  /external/llvm/lib/Transforms/IPO/
GlobalDCE.cpp 85 if (Comdat *C = F.getComdat())
88 if (Comdat *C = GV.getComdat())
91 if (Comdat *C = GA.getComdat())
198 if (Comdat *C = G->getComdat()) {
Internalize.cpp 137 if (Comdat *C = GV.getComdat()) {
164 Comdat *C = GV.getComdat();
Inliner.cpp 715 if (const Comdat *C = F->getComdat()) {
732 if (const Comdat *C = F.getComdat())
735 if (const Comdat *C = GV.getComdat())
738 if (const Comdat *C = GA.getComdat())
742 const Comdat *C = F->getComdat();
    [all...]
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SplitModule.cpp 48 if (const Comdat *C = GV->getComdat())
SymbolRewriter.cpp 84 if (Comdat *CD = GO->getComdat()) {
  /external/llvm/lib/CodeGen/
LowerEmuTLS.cpp 49 to->getComdat()->setSelectionKind(from->getComdat()->getSelectionKind());
TargetLoweringObjectFileImpl.cpp 193 const Comdat *C = GV->getComdat();
329 const Comdat *C = F.getComdat();
513 const Comdat *C = GV->getComdat();
823 const Comdat *C = GV->getComdat();
832 if (ComdatGV->getComdat() != C)
840 if (const Comdat *C = GV->getComdat()) {
    [all...]
  /external/llvm/lib/IR/
Globals.cpp 111 Comdat *GlobalValue::getComdat() {
115 return const_cast<GlobalObject *>(GO)->getComdat();
118 return cast<GlobalObject>(this)->getComdat();
AsmWriter.cpp     [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 619 if (const Comdat *SC = GV.getComdat()) {
645 const Comdat *SC = GV.getComdat();
691 if (const Comdat *SC = GV.getComdat())
695 if (const Comdat *SC = SF.getComdat())
699 if (const Comdat *SC = GA.getComdat())
720 const Comdat *SC = GV->getComdat();
IRMover.cpp     [all...]
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 299 if (llvm::Comdat *C = GV->getComdat())
CGDecl.cpp 316 GV->setComdat(OldGV->getComdat());
    [all...]
CGException.cpp     [all...]
ItaniumCXXABI.cpp     [all...]
MicrosoftCXXABI.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.h 174 Comdat *getComdat(const std::string &N, LocTy Loc);
LLParser.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 575 if (const Comdat *C = GO->getComdat())
BitcodeWriter.cpp 729 Vals.push_back(GV.hasComdat() ? VE.getComdatID(GV.getComdat()) : 0);
756 Vals.push_back(F.hasComdat() ? VE.getComdatID(F.getComdat()) : 0);
    [all...]
  /external/llvm/tools/gold/
gold-plugin.cpp 506 const Comdat *C = Base->getComdat();
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]

Completed in 1341 milliseconds