Home | History | Annotate | Download | only in VMCore

Lines Matching refs:GA

398   if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
399 return new SlotTracker(GA->getParent());
1388 void AssemblyWriter::printAlias(const GlobalAlias *GA) {
1389 if (GA->isMaterializable())
1392 // Don't crash when dumping partially built GA
1393 if (!GA->hasName())
1396 PrintLLVMName(Out, GA);
1399 PrintVisibility(GA->getVisibility(), Out);
1403 PrintLinkage(GA->getLinkage(), Out);
1405 const Constant *Aliasee = GA->getAliasee();
1408 TypePrinter.print(GA->getType(), Out);
1414 printInfoComment(*GA);