Searched defs:IsGlobalInSmallSection (Results 1 - 2 of 2) sorted by relevance
/external/llvm/lib/Target/Hexagon/ |
H A D | HexagonTargetObjectFile.cpp | 51 /// 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 D | MipsTargetObjectFile.cpp | 63 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 255 milliseconds