Searched refs:GVA (Results 1 – 4 of 4) sorted by relevance
75 const auto *GVA = dyn_cast<GlobalVariable>(GO); in isGlobalInSmallSectionImpl() local78 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()
104 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GO); in IsGlobalInSmallSectionImpl() local105 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()
72 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GO); in isGlobalInSmallSection() local73 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()
163 def : DC<"GVA", 0b011, 0b0111, 0b0100, 0b011>;