Searched defs:IsGlobalInSmallSection (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Target/Hexagon/
H A DHexagonTargetObjectFile.cpp51 /// IsGlobalInSmallSection - Return true if this global value should be
53 bool HexagonTargetObjectFile::IsGlobalInSmallSection(const GlobalValue *GV, function in class:HexagonTargetObjectFile
63 return IsGlobalInSmallSection(GV, TM, getKindForGlobal(GV, TM));
66 /// IsGlobalInSmallSection - Return true if this global value should be
69 IsGlobalInSmallSection(const GlobalValue *GV, const TargetMachine &TM, function in class:HexagonTargetObjectFile
91 if (Kind.isBSS() && IsGlobalInSmallSection(GV, TM, Kind))
93 if (Kind.isData() && IsGlobalInSmallSection(GV, TM, Kind))
/external/llvm/lib/Target/Mips/
H A DMipsTargetObjectFile.cpp63 IsGlobalInSmallSection(const GlobalValue *GV, const TargetMachine &TM) const { function in class:MipsTargetObjectFile
70 return IsGlobalInSmallSection(GV, TM, getKindForGlobal(GV, TM));
76 IsGlobalInSmallSection(const GlobalValue *GV, const TargetMachine &TM, function in class:MipsTargetObjectFile
122 if (Kind.isBSS() && IsGlobalInSmallSection(GV, TM, Kind))
124 if (Kind.isData() && IsGlobalInSmallSection(GV, TM, Kind))

Completed in 74 milliseconds