Home
last modified time | relevance | path

Searched refs:LegalIntWidths (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/Target/
DTargetData.h82 SmallVector<unsigned char, 8> LegalIntWidths; ///< Legal Integers. variable
137 LegalIntWidths(TD.LegalIntWidths), in TargetData()
164 for (unsigned i = 0, e = (unsigned)LegalIntWidths.size(); i != e; ++i) in isLegalInteger()
165 if (LegalIntWidths[i] == Width) in isLegalInteger()
184 for (unsigned i = 0, e = (unsigned)LegalIntWidths.size(); i != e; ++i) in fitsInLegalInteger()
185 if (Width <= LegalIntWidths[i]) in fitsInLegalInteger()
/external/llvm/include/llvm/IR/
DDataLayout.h118 SmallVector<unsigned char, 8> LegalIntWidths; variable
199 LegalIntWidths = DL.LegalIntWidths;
237 for (unsigned LegalIntWidth : LegalIntWidths) in isLegalInteger()
302 for (unsigned LegalIntWidth : LegalIntWidths) in fitsInLegalInteger()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DDataLayout.h130 SmallVector<unsigned char, 8> LegalIntWidths; variable
205 LegalIntWidths = DL.LegalIntWidths;
244 for (unsigned LegalIntWidth : LegalIntWidths) in isLegalInteger()
318 for (unsigned LegalIntWidth : LegalIntWidths) in fitsInLegalInteger()
/external/llvm/lib/IR/
DDataLayout.cpp337 LegalIntWidths.push_back(Width); in parseSpecifier()
391 LegalIntWidths == Other.LegalIntWidths && in operator ==()
545 LegalIntWidths.clear(); in clear()
715 for (unsigned LegalIntWidth : LegalIntWidths) in getSmallestLegalIntType()
722 auto Max = std::max_element(LegalIntWidths.begin(), LegalIntWidths.end()); in getLargestLegalIntTypeSizeInBits()
723 return Max != LegalIntWidths.end() ? *Max : 0; in getLargestLegalIntTypeSizeInBits()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DDataLayout.cpp373 LegalIntWidths.push_back(Width); in parseSpecifier()
437 LegalIntWidths == Other.LegalIntWidths && in operator ==()
577 LegalIntWidths.clear(); in clear()
758 for (unsigned LegalIntWidth : LegalIntWidths) in getSmallestLegalIntType()
765 auto Max = std::max_element(LegalIntWidths.begin(), LegalIntWidths.end()); in getLargestLegalIntTypeSizeInBits()
766 return Max != LegalIntWidths.end() ? *Max : 0; in getLargestLegalIntTypeSizeInBits()
/external/swiftshader/third_party/LLVM/lib/Target/
DTargetData.cpp216 LegalIntWidths.push_back(Width); in init()
390 if (!LegalIntWidths.empty()) { in getStringRepresentation()
391 OS << "-n" << (unsigned)LegalIntWidths[0]; in getStringRepresentation()
393 for (unsigned i = 1, e = LegalIntWidths.size(); i != e; ++i) in getStringRepresentation()
394 OS << ':' << (unsigned)LegalIntWidths[i]; in getStringRepresentation()