Home | History | Annotate | Download | only in IR

Lines Matching refs:GA

415   if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
416 return new SlotTracker(GA->getParent());
1501 void AssemblyWriter::printAlias(const GlobalAlias *GA) {
1502 if (GA->isMaterializable())
1505 // Don't crash when dumping partially built GA
1506 if (!GA->hasName())
1509 PrintLLVMName(Out, GA);
1512 PrintVisibility(GA->getVisibility(), Out);
1513 PrintDLLStorageClass(GA->getDLLStorageClass(), Out);
1514 PrintThreadLocalModel(GA->getThreadLocalMode(), Out);
1515 if (GA->hasUnnamedAddr())
1520 PrintLinkage(GA->getLinkage(), Out);
1522 const Constant *Aliasee = GA->getAliasee();
1525 TypePrinter.print(GA->getType(), Out);
1531 printInfoComment(*GA);