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

  /external/swiftshader/third_party/LLVM/lib/Linker/
LinkModules.cpp 374 GlobalValue *DGV = DstM->getNamedValue(SrcGV->getName());
375 if (DGV == 0) return 0;
379 if (DGV->hasLocalLinkage())
383 return DGV;
523 GlobalValue *DGV = getLinkedToGlobal(I);
524 if (DGV == 0) continue;
526 if (!DGV->hasAppendingLinkage() || !I->hasAppendingLinkage()) {
527 TypeMap.addTypeMapping(DGV->getType(), I->getType());
532 ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType());
539 if (GlobalValue *DGV = getLinkedToGlobal(I)
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 91 GlobalValue *DGV = DstM.getNamedValue(SrcGV->getName());
92 if (!DGV)
97 if (DGV->hasLocalLinkage())
101 return DGV;
354 GlobalValue *DGV = getLinkedToGlobal(&GV);
356 if (shouldLinkOnlyNeeded() && !(DGV && DGV->isDeclaration()))
359 if (DGV && !GV.hasLocalLinkage() && !GV.hasAppendingLinkage()) {
360 auto *DGVar = dyn_cast<GlobalVariable>(DGV);
376 getMinVisibility(DGV->getVisibility(), GV.getVisibility())
    [all...]
IRMover.cpp 440 GlobalValue *DGV = DstM.getNamedValue(SrcGV->getName());
441 if (!DGV)
446 if (DGV->hasLocalLinkage())
450 return DGV;
459 /// GlobalValue \p DGV (if any), return true if the linker will pull \p SGV
463 bool shouldLink(GlobalValue *DGV, GlobalValue &SGV);
665 GlobalValue *DGV = getLinkedToGlobal(&SGV);
666 if (!DGV)
669 if (!DGV->hasAppendingLinkage() || !SGV.hasAppendingLinkage()) {
670 TypeMap.addTypeMapping(DGV->getType(), SGV.getType())
    [all...]

Completed in 8063 milliseconds