Home | History | Annotate | Download | only in MBlaze

Lines Matching refs:GV

46 IsGlobalInSmallSection(const GlobalValue *GV, const TargetMachine &TM) const {
47 if (GV->isDeclaration() || GV->hasAvailableExternallyLinkage())
50 return IsGlobalInSmallSection(GV, TM, getKindForGlobal(GV, TM));
56 IsGlobalInSmallSection(const GlobalValue *GV, const TargetMachine &TM,
59 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GV);
72 Type *Ty = GV->getType()->getElementType();
77 SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
83 if (Kind.isBSS() && IsGlobalInSmallSection(GV, TM, Kind))
85 if (Kind.isDataNoRel() && IsGlobalInSmallSection(GV, TM, Kind))
89 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GV, Kind, Mang,TM);