mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-31 10:34:17 +00:00
Exhaustively test all triples in TripleTest.
Iteration over all permutations didn't really work, due to evolution of the underlying enums. Differential Revision: http://reviews.llvm.org/D9057 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236251 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2a18cece0d
commit
e52ba69038
@ -82,7 +82,8 @@ public:
|
||||
hsail64, // AMD HSAIL with 64-bit pointers
|
||||
spir, // SPIR: standard portable IR for OpenCL 32-bit version
|
||||
spir64, // SPIR: standard portable IR for OpenCL 64-bit version
|
||||
kalimba // Kalimba: generic kalimba
|
||||
kalimba, // Kalimba: generic kalimba
|
||||
LastArchType = kalimba
|
||||
};
|
||||
enum SubArchType {
|
||||
NoSubArch,
|
||||
@ -118,7 +119,8 @@ public:
|
||||
ImaginationTechnologies,
|
||||
MipsTechnologies,
|
||||
NVIDIA,
|
||||
CSR
|
||||
CSR,
|
||||
LastVendorType = CSR
|
||||
};
|
||||
enum OSType {
|
||||
UnknownOS,
|
||||
@ -146,7 +148,8 @@ public:
|
||||
CUDA, // NVIDIA CUDA
|
||||
NVCL, // NVIDIA OpenCL
|
||||
AMDHSA, // AMD HSA Runtime
|
||||
PS4
|
||||
PS4,
|
||||
LastOSType = PS4
|
||||
};
|
||||
enum EnvironmentType {
|
||||
UnknownEnvironment,
|
||||
@ -163,6 +166,7 @@ public:
|
||||
MSVC,
|
||||
Itanium,
|
||||
Cygnus,
|
||||
LastEnvironmentType = Cygnus
|
||||
};
|
||||
enum ObjectFormatType {
|
||||
UnknownObjectFormat,
|
||||
|
@ -225,12 +225,12 @@ TEST(TripleTest, Normalization) {
|
||||
// Check that normalizing a permutated set of valid components returns a
|
||||
// triple with the unpermuted components.
|
||||
StringRef C[4];
|
||||
for (int Arch = 1+Triple::UnknownArch; Arch <= Triple::amdil; ++Arch) {
|
||||
for (int Arch = 1+Triple::UnknownArch; Arch <= Triple::LastArchType; ++Arch) {
|
||||
C[0] = Triple::getArchTypeName(Triple::ArchType(Arch));
|
||||
for (int Vendor = 1+Triple::UnknownVendor; Vendor <= Triple::PC;
|
||||
for (int Vendor = 1+Triple::UnknownVendor; Vendor <= Triple::LastVendorType;
|
||||
++Vendor) {
|
||||
C[1] = Triple::getVendorTypeName(Triple::VendorType(Vendor));
|
||||
for (int OS = 1+Triple::UnknownOS; OS <= Triple::Minix; ++OS) {
|
||||
for (int OS = 1+Triple::UnknownOS; OS <= Triple::LastOSType; ++OS) {
|
||||
if (OS == Triple::Win32)
|
||||
continue;
|
||||
|
||||
@ -245,7 +245,7 @@ TEST(TripleTest, Normalization) {
|
||||
EXPECT_EQ(E, Triple::normalize(Join(C[2], C[0], C[1])));
|
||||
EXPECT_EQ(E, Triple::normalize(Join(C[2], C[1], C[0])));
|
||||
|
||||
for (int Env = 1 + Triple::UnknownEnvironment; Env <= Triple::Android;
|
||||
for (int Env = 1 + Triple::UnknownEnvironment; Env <= Triple::LastEnvironmentType;
|
||||
++Env) {
|
||||
C[3] = Triple::getEnvironmentTypeName(Triple::EnvironmentType(Env));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user