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

  /external/llvm/lib/Linker/
LinkModules.cpp 104 GlobalValue *DGV = DstM.getNamedValue(getName(SrcGV));
105 if (!DGV)
110 if (DGV->hasLocalLinkage())
114 return DGV;
570 GlobalValue *DGV = getLinkedToGlobal(&GV);
572 if (shouldLinkOnlyNeeded() && !(DGV && DGV->isDeclaration()))
575 if (DGV && !GV.hasLocalLinkage() && !GV.hasAppendingLinkage()) {
576 auto *DGVar = dyn_cast<GlobalVariable>(DGV);
592 getMinVisibility(DGV->getVisibility(), GV.getVisibility())
    [all...]
IRMover.cpp 462 GlobalValue *DGV = DstM.getNamedValue(SrcGV->getName());
463 if (!DGV)
468 if (DGV->hasLocalLinkage())
472 return DGV;
480 bool shouldLink(GlobalValue *DGV, GlobalValue &SGV);
768 GlobalValue *DGV = getLinkedToGlobal(&SGV);
769 if (!DGV)
772 if (!DGV->hasAppendingLinkage() || !SGV.hasAppendingLinkage()) {
773 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
778 ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType())
    [all...]

Completed in 62 milliseconds