HomeSort by relevance Sort by last modified time
    Searched defs:SrcGV (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Transforms/IPO/
FunctionImport.cpp 133 auto *SrcGV = DestModule.getNamedValue(ImportedName);
134 if (SrcGV) {
135 assert(isa<Function>(SrcGV) && "Name collision during import");
136 if (!cast<Function>(SrcGV)->isDeclaration()) {
  /external/llvm/lib/Linker/
LinkModules.cpp 96 GlobalValue *getLinkedToGlobal(const GlobalValue *SrcGV) {
100 if (!SrcGV->hasName() || GlobalValue::isLocalLinkage(getLinkage(SrcGV)))
104 GlobalValue *DGV = DstM.getNamedValue(getName(SrcGV));
402 const GlobalVariable *SrcGV;
404 getComdatLeader(SrcM, ComdatName, SrcGV))
412 SrcDL.getTypeAllocSize(SrcGV->getType()->getPointerElementType());
414 if (SrcGV->getInitializer() != DstGV->getInitializer())

Completed in 77 milliseconds