Home
last modified time | relevance | path

Searched refs:GVA (Results 1 – 4 of 4) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
DRISCVTargetObjectFile.cpp41 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GO); in isGlobalInSmallSection() local
42 if (!GVA) in isGlobalInSmallSection()
46 if (GVA->hasSection()) { in isGlobalInSmallSection()
47 StringRef Section = GVA->getSection(); in isGlobalInSmallSection()
59 if (((GVA->hasExternalLinkage() && GVA->isDeclaration()) || in isGlobalInSmallSection()
60 GVA->hasCommonLinkage())) in isGlobalInSmallSection()
63 Type *Ty = GVA->getValueType(); in isGlobalInSmallSection()
71 GVA->getParent()->getDataLayout().getTypeAllocSize(Ty)); in isGlobalInSmallSection()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/
DMipsTargetObjectFile.cpp104 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GO); in IsGlobalInSmallSectionImpl() local
105 if (!GVA) in IsGlobalInSmallSectionImpl()
110 if (GVA->hasSection()) { in IsGlobalInSmallSectionImpl()
111 StringRef Section = GVA->getSection(); in IsGlobalInSmallSectionImpl()
125 if (!LocalSData && GVA->hasLocalLinkage()) in IsGlobalInSmallSectionImpl()
129 if (!ExternSData && ((GVA->hasExternalLinkage() && GVA->isDeclaration()) || in IsGlobalInSmallSectionImpl()
130 GVA->hasCommonLinkage())) in IsGlobalInSmallSectionImpl()
134 if (EmbeddedData && GVA->isConstant()) in IsGlobalInSmallSectionImpl()
137 Type *Ty = GVA->getValueType(); in IsGlobalInSmallSectionImpl()
146 GVA->getParent()->getDataLayout().getTypeAllocSize(Ty)); in IsGlobalInSmallSectionImpl()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
DLanaiTargetObjectFile.cpp75 const auto *GVA = dyn_cast<GlobalVariable>(GO); in isGlobalInSmallSectionImpl() local
78 if (!GVA) return TM.getCodeModel() == CodeModel::Small; in isGlobalInSmallSectionImpl()
83 if (GVA->getSection().startswith(".ldata")) in isGlobalInSmallSectionImpl()
89 if (GVA->hasLocalLinkage()) in isGlobalInSmallSectionImpl()
92 if (((GVA->hasExternalLinkage() && GVA->isDeclaration()) || in isGlobalInSmallSectionImpl()
93 GVA->hasCommonLinkage())) in isGlobalInSmallSectionImpl()
96 Type *Ty = GVA->getValueType(); in isGlobalInSmallSectionImpl()
98 GVA->getParent()->getDataLayout().getTypeAllocSize(Ty)); in isGlobalInSmallSectionImpl()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
DAArch64SystemOperands.td158 def : DC<"GVA", 0b011, 0b0111, 0b0100, 0b011>;