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

  /external/llvm/include/llvm/IR/
GlobalObject.h 48 bool hasComdat() const { return getComdat() != nullptr; }
49 const Comdat *getComdat() const { return ObjComdat; }
50 Comdat *getComdat() { return ObjComdat; }
GlobalValue.h 114 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/
Globals.cpp 101 Comdat *GlobalValue::getComdat() {
105 return const_cast<GlobalObject *>(GO)->getComdat();
108 return cast<GlobalObject>(this)->getComdat();
AsmWriter.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalDCE.cpp 90 else if (const Comdat *C = I->getComdat())
103 else if (const Comdat *C = I->getComdat())
114 } else if (const Comdat *C = I->getComdat()) {
GlobalOpt.cpp     [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 196 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()) {
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.h 163 Comdat *getComdat(const std::string &N, LocTy Loc);
LLParser.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 317 if (const Comdat *C = GO->getComdat())
BitcodeWriter.cpp 664 Vals.push_back(GV.hasComdat() ? VE.getComdatID(GV.getComdat()) : 0);
690 Vals.push_back(F.hasComdat() ? VE.getComdatID(F.getComdat()) : 0);
    [all...]

Completed in 800 milliseconds