HomeSort by: relevance | last modified time | path
    Searched refs:DGV (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Linker/
LinkModules.cpp 88 GlobalValue *DGV = DstM.getNamedValue(SrcGV->getName());
89 if (!DGV)
94 if (DGV->hasLocalLinkage())
98 return DGV;
329 GlobalValue *DGV = getLinkedToGlobal(&GV);
336 if (!DGV)
339 if (!DGV->isDeclaration())
344 if (DGV && !GV.hasLocalLinkage() && !GV.hasAppendingLinkage()) {
345 auto *DGVar = dyn_cast<GlobalVariable>(DGV);
362 getMinVisibility(DGV->getVisibility(), GV.getVisibility())
    [all...]
IRMover.cpp 454 GlobalValue *DGV = DstM.getNamedValue(SrcGV->getName());
455 if (!DGV)
460 if (DGV->hasLocalLinkage())
465 if (auto *FDGV = dyn_cast<Function>(DGV))
472 return DGV;
481 /// GlobalValue \p DGV (if any), return true if the linker will pull \p SGV
485 bool shouldLink(GlobalValue *DGV, GlobalValue &SGV);
758 GlobalValue *DGV = getLinkedToGlobal(&SGV);
759 if (!DGV)
762 if (!DGV->hasAppendingLinkage() || !SGV.hasAppendingLinkage())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
MetadataLoader.cpp 529 if (auto *DGV = dyn_cast<DIGlobalVariable>(MD)) {
531 Context, DGV, DIExpression::get(Context, {}));
1910 DIGlobalVariable *DGV = GET_OR_DISTINCT(
1920 Context, DGV, Expr ? Expr : DIExpression::get(Context, {}));
1924 auto *MDNode = Expr ? cast<Metadata>(DGVE) : cast<Metadata>(DGV);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Core.cpp 1282 if (const DIGlobalVariable *DGV = GVEs[0]->getVariable())
1283 S = DGV->getDirectory();
1306 if (const DIGlobalVariable *DGV = GVEs[0]->getVariable())
1307 S = DGV->getFilename();
1329 if (const DIGlobalVariable *DGV = GVEs[0]->getVariable())
1330 L = DGV->getLine();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 1185 DIGlobalVariable *DGV = GVe->getVariable();
1207 DIGlobalVariableExpression::get(NewGV->getContext(), DGV, E);

Completed in 22 milliseconds