Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/
H A 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().starts_with(".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->getDataLayout().getTypeAllocSize(Ty)); in isGlobalInSmallSectionImpl()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A 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->getDataLayout().getTypeAllocSize(Ty)); in IsGlobalInSmallSectionImpl()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVTargetObjectFile.cpp72 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GO); in isGlobalInSmallSection() local
73 if (!GVA) in isGlobalInSmallSection()
77 if (GVA->hasSection()) { in isGlobalInSmallSection()
78 StringRef Section = GVA->getSection(); in isGlobalInSmallSection()
90 if (((GVA->hasExternalLinkage() && GVA->isDeclaration()) || in isGlobalInSmallSection()
91 GVA->hasCommonLinkage())) in isGlobalInSmallSection()
94 Type *Ty = GVA->getValueType(); in isGlobalInSmallSection()
102 GVA->getDataLayout().getTypeAllocSize(Ty)); in isGlobalInSmallSection()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64SystemOperands.td163 def : DC<"GVA", 0b011, 0b0111, 0b0100, 0b011>;