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

/external/llvm/lib/Target/Hexagon/
H A DHexagonTargetObjectFile.cpp49 /// IsGlobalInSmallSection - Return true if this global value should be
51 bool HexagonTargetObjectFile::IsGlobalInSmallSection(const GlobalValue *GV, function in class:HexagonTargetObjectFile
61 return IsGlobalInSmallSection(GV, TM, getKindForGlobal(GV, TM));
64 /// IsGlobalInSmallSection - Return true if this global value should be
67 IsGlobalInSmallSection(const GlobalValue *GV, const TargetMachine &TM, function in class:HexagonTargetObjectFile
87 if (Kind.isBSS() && IsGlobalInSmallSection(GV, TM, Kind))
89 if (Kind.isDataNoRel() && IsGlobalInSmallSection(GV, TM, Kind))
/external/llvm/lib/Target/MBlaze/
H A DMBlazeTargetObjectFile.cpp46 IsGlobalInSmallSection(const GlobalValue *GV, const TargetMachine &TM) const { function in class:MBlazeTargetObjectFile
50 return IsGlobalInSmallSection(GV, TM, getKindForGlobal(GV, TM));
53 /// IsGlobalInSmallSection - Return true if this global address should be
56 IsGlobalInSmallSection(const GlobalValue *GV, const TargetMachine &TM, function in class:MBlazeTargetObjectFile
83 if (Kind.isBSS() && IsGlobalInSmallSection(GV, TM, Kind))
85 if (Kind.isDataNoRel() && IsGlobalInSmallSection(GV, TM, Kind))
/external/llvm/lib/Target/Mips/
H A DMipsTargetObjectFile.cpp49 bool MipsTargetObjectFile::IsGlobalInSmallSection(const GlobalValue *GV, function in class:MipsTargetObjectFile
54 return IsGlobalInSmallSection(GV, TM, getKindForGlobal(GV, TM));
57 /// IsGlobalInSmallSection - Return true if this global address should be
60 IsGlobalInSmallSection(const GlobalValue *GV, const TargetMachine &TM, function in class:MipsTargetObjectFile
95 if (Kind.isBSS() && IsGlobalInSmallSection(GV, TM, Kind))
97 if (Kind.isDataNoRel() && IsGlobalInSmallSection(GV, TM, Kind))

Completed in 325 milliseconds