Home | History | Annotate | Download | only in Mips

Lines Matching refs:GV

64 bool MipsTargetObjectFile::IsGlobalInSmallSection(const GlobalValue *GV,
66 if (GV->isDeclaration() || GV->hasAvailableExternallyLinkage())
69 return IsGlobalInSmallSection(GV, TM, getKindForGlobal(GV, TM));
75 IsGlobalInSmallSection(const GlobalValue *GV, const TargetMachine &TM,
85 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GV);
98 Type *Ty = GV->getType()->getElementType();
105 SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
111 if (Kind.isBSS() && IsGlobalInSmallSection(GV, TM, Kind))
113 if (Kind.isDataNoRel() && IsGlobalInSmallSection(GV, TM, Kind))
117 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GV, Kind, Mang,TM);