reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/AsmParser/LLParser.cpp
  956     GA.reset(GlobalAlias::create(Ty, AddrSpace,
  960     GA.reset(GlobalIFunc::create(Ty, AddrSpace,
  963   GA->setThreadLocalMode(TLM);
  964   GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
  965   GA->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
  966   GA->setUnnamedAddr(UnnamedAddr);
  967   maybeSetDSOLocal(DSOLocal, *GA);
  976       GA->setPartition(Lex.getStrVal());
  985     NumberedVals.push_back(GA.get());
  989     if (GVal->getType() != GA->getType())
  996     GVal->replaceAllUsesWith(GA.get());
 1002     M->getAliasList().push_back(cast<GlobalAlias>(GA.get()));
 1004     M->getIFuncList().push_back(cast<GlobalIFunc>(GA.get()));
 1005   assert(GA->getName() == Name && "Should not be a name conflict!");
 1008   GA.release();