Searched refs:GVA (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVTargetObjectFile.cpp41 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GO); local
42 if (!GVA)
46 if (GVA->hasSection()) {
47 StringRef Section = GVA->getSection();
59 if (((GVA->hasExternalLinkage() && GVA->isDeclaration()) ||
60 GVA->hasCommonLinkage()))
63 Type *Ty = GVA->getValueType();
71 GVA->getParent()->getDataLayout().getTypeAllocSize(Ty));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiTargetObjectFile.cpp75 const auto *GVA = dyn_cast<GlobalVariable>(GO); local
78 if (!GVA) return TM.getCodeModel() == CodeModel::Small;
83 if (GVA->getSection().startswith(".ldata"))
89 if (GVA->hasLocalLinkage())
92 if (((GVA->hasExternalLinkage() && GVA->isDeclaration()) ||
93 GVA->hasCommonLinkage()))
96 Type *Ty = GVA->getValueType();
98 GVA->getParent()->getDataLayout().getTypeAllocSize(Ty));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsTargetObjectFile.cpp104 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GO); local
105 if (!GVA)
110 if (GVA->hasSection()) {
111 StringRef Section = GVA->getSection();
125 if (!LocalSData && GVA->hasLocalLinkage())
129 if (!ExternSData && ((GVA->hasExternalLinkage() && GVA->isDeclaration()) ||
130 GVA->hasCommonLinkage()))
134 if (EmbeddedData && GVA->isConstant())
137 Type *Ty = GVA
[all...]

Completed in 115 milliseconds