HomeSort by: relevance | last modified time | path
    Searched refs:GIS (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SplitModule.cpp 128 if (auto *GIS = dyn_cast<GlobalIndirectSymbol>(&GV)) {
129 if (const GlobalObject *Base = GIS->getBaseObject())
228 if (auto *GIS = dyn_cast<GlobalIndirectSymbol>(GV))
229 if (const GlobalObject *Base = GIS->getBaseObject())
ValueMapper.cpp 83 GlobalIndirectSymbol *GIS;
166 void scheduleMapGlobalIndirectSymbol(GlobalIndirectSymbol &GIS, Constant &Target,
877 E.Data.GlobalIndirectSymbol.GIS->setIndirectSymbol(
1071 void Mapper::scheduleMapGlobalIndirectSymbol(GlobalIndirectSymbol &GIS,
1073 assert(AlreadyScheduled.insert(&GIS).second && "Should not reschedule");
1079 WE.Data.GlobalIndirectSymbol.GIS = &GIS;
1177 void ValueMapper::scheduleMapGlobalIndirectSymbol(GlobalIndirectSymbol &GIS,
1180 getAsMapper(pImpl)->scheduleMapGlobalIndirectSymbol(GIS, Target, MCID);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
ValueMapper.h 185 void scheduleMapGlobalIndirectSymbol(GlobalIndirectSymbol &GIS,
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 1594 const GlobalIndirectSymbol& GIS) {
1595 MCSymbol *Name = getSymbol(&GIS);
1596 bool IsFunction = GIS.getValueType()->isFunctionTy();
1600 if (auto *CE = dyn_cast<ConstantExpr>(GIS.getIndirectSymbol()))
1610 assert(!isa<GlobalIFunc>(GIS) && "IFunc is not supported on AIX.");
1613 emitLinkage(&GIS, Name);
1617 emitLinkage(&GIS,
1618 getObjFileLowering().getFunctionEntryPointSymbol(&GIS, TM));
1622 if (GIS.hasExternalLinkage() || !MAI->getWeakRefDirective())
1624 else if (GIS.hasWeakLinkage() || GIS.hasLinkOnceLinkage()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
AsmWriter.cpp 2632 void printIndirectSymbol(const GlobalIndirectSymbol *GIS);
3611 void AssemblyWriter::printIndirectSymbol(const GlobalIndirectSymbol *GIS) {
3612 if (GIS->isMaterializable())
3615 WriteAsOperandInternal(Out, GIS, &TypePrinter, &Machine, GIS->getParent());
3618 Out << getLinkageNameWithSpace(GIS->getLinkage());
3619 PrintDSOLocation(*GIS, Out);
3620 PrintVisibility(GIS->getVisibility(), Out);
3621 PrintDLLStorageClass(GIS->getDLLStorageClass(), Out);
3622 PrintThreadLocalModel(GIS->getThreadLocalMode(), Out)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Linker/
IRMover.cpp 684 GlobalIndirectSymbol *GIS;
686 GIS = GlobalAlias::create(Ty, SGIS->getAddressSpace(),
690 GIS = GlobalIFunc::create(Ty, SGIS->getAddressSpace(),
693 GIS->copyAttributesFrom(SGIS);
694 return GIS;
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
AsmPrinter.h 799 void emitGlobalIndirectSymbol(Module &M, const GlobalIndirectSymbol &GIS);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
LowerTypeTests.cpp 360 for (auto &GIS : concat<GlobalIndirectSymbol>(M.aliases(), M.ifuncs())) {
364 dyn_cast<Function>(GIS.getIndirectSymbol()->stripPointerCasts()))
365 FunctionAliases.push_back({&GIS, F});
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 2304 GlobalIndirectSymbol *GIS = IndirectSymbolInitWorklist.back().first;
2305 if (isa<GlobalAlias>(GIS) && C->getType() != GIS->getType())
2307 GIS->setIndirectSymbol(C);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenModule.cpp 319 const llvm::GlobalIndirectSymbol &GIS) {
321 const llvm::Constant *C = &GIS;

Completed in 35 milliseconds