Simon Atanasyan | 4938ddb | 2013-04-21 13:30:10 +0000 | [diff] [blame] | 1 | // Check passing Mips ABI options to the backend. |
| 2 | // |
Simon Atanasyan | a42a84e | 2014-07-02 13:20:36 +0000 | [diff] [blame] | 3 | // RUN: %clang -target mips-linux-gnu -### -c %s 2>&1 \ |
| 4 | // RUN: | FileCheck -check-prefix=MIPS-DEF %s |
| 5 | // MIPS-DEF: "-target-cpu" "mips32r2" |
| 6 | // MIPS-DEF: "-target-abi" "o32" |
| 7 | // |
| 8 | // RUN: %clang -target mips64-linux-gnu -### -c %s 2>&1 \ |
| 9 | // RUN: | FileCheck -check-prefix=MIPS64-DEF %s |
| 10 | // MIPS64-DEF: "-target-cpu" "mips64r2" |
| 11 | // MIPS64-DEF: "-target-abi" "n64" |
| 12 | // |
Simon Atanasyan | 4938ddb | 2013-04-21 13:30:10 +0000 | [diff] [blame] | 13 | // RUN: %clang -target mips-linux-gnu -### -c %s \ |
| 14 | // RUN: -mabi=32 2>&1 \ |
| 15 | // RUN: | FileCheck -check-prefix=MIPS-ABI-32 %s |
Simon Atanasyan | 08c165b | 2014-06-30 08:09:54 +0000 | [diff] [blame] | 16 | // MIPS-ABI-32: "-target-cpu" "mips32r2" |
Simon Atanasyan | 4938ddb | 2013-04-21 13:30:10 +0000 | [diff] [blame] | 17 | // MIPS-ABI-32: "-target-abi" "o32" |
| 18 | // |
| 19 | // RUN: %clang -target mips-linux-gnu -### -c %s \ |
| 20 | // RUN: -mabi=o32 2>&1 \ |
| 21 | // RUN: | FileCheck -check-prefix=MIPS-ABI-O32 %s |
Simon Atanasyan | 08c165b | 2014-06-30 08:09:54 +0000 | [diff] [blame] | 22 | // MIPS-ABI-O32: "-target-cpu" "mips32r2" |
Simon Atanasyan | 4938ddb | 2013-04-21 13:30:10 +0000 | [diff] [blame] | 23 | // MIPS-ABI-O32: "-target-abi" "o32" |
| 24 | // |
| 25 | // RUN: %clang -target mips-linux-gnu -### -c %s \ |
| 26 | // RUN: -mabi=n32 2>&1 \ |
| 27 | // RUN: | FileCheck -check-prefix=MIPS-ABI-N32 %s |
Simon Atanasyan | 08c165b | 2014-06-30 08:09:54 +0000 | [diff] [blame] | 28 | // MIPS-ABI-N32: "-target-cpu" "mips64r2" |
Simon Atanasyan | 4938ddb | 2013-04-21 13:30:10 +0000 | [diff] [blame] | 29 | // MIPS-ABI-N32: "-target-abi" "n32" |
| 30 | // |
| 31 | // RUN: %clang -target mips64-linux-gnu -### -c %s \ |
| 32 | // RUN: -mabi=64 2>&1 \ |
| 33 | // RUN: | FileCheck -check-prefix=MIPS-ABI-64 %s |
Simon Atanasyan | 08c165b | 2014-06-30 08:09:54 +0000 | [diff] [blame] | 34 | // MIPS-ABI-64: "-target-cpu" "mips64r2" |
Simon Atanasyan | 4938ddb | 2013-04-21 13:30:10 +0000 | [diff] [blame] | 35 | // MIPS-ABI-64: "-target-abi" "n64" |
| 36 | // |
| 37 | // RUN: %clang -target mips64-linux-gnu -### -c %s \ |
| 38 | // RUN: -mabi=n64 2>&1 \ |
| 39 | // RUN: | FileCheck -check-prefix=MIPS-ABI-N64 %s |
Simon Atanasyan | 08c165b | 2014-06-30 08:09:54 +0000 | [diff] [blame] | 40 | // MIPS-ABI-N64: "-target-cpu" "mips64r2" |
Simon Atanasyan | 4938ddb | 2013-04-21 13:30:10 +0000 | [diff] [blame] | 41 | // MIPS-ABI-N64: "-target-abi" "n64" |
| 42 | // |
Simon Atanasyan | 08c165b | 2014-06-30 08:09:54 +0000 | [diff] [blame] | 43 | // RUN: not %clang -target mips64-linux-gnu -c %s \ |
Simon Atanasyan | 4938ddb | 2013-04-21 13:30:10 +0000 | [diff] [blame] | 44 | // RUN: -mabi=o64 2>&1 \ |
| 45 | // RUN: | FileCheck -check-prefix=MIPS-ABI-O64 %s |
Simon Atanasyan | 08c165b | 2014-06-30 08:09:54 +0000 | [diff] [blame] | 46 | // MIPS-ABI-O64: error: unknown target ABI 'o64' |
Simon Atanasyan | 4938ddb | 2013-04-21 13:30:10 +0000 | [diff] [blame] | 47 | // |
| 48 | // RUN: %clang -target mips-linux-gnu -### -c %s \ |
| 49 | // RUN: -mabi=eabi 2>&1 \ |
| 50 | // RUN: | FileCheck -check-prefix=MIPS-ABI-EABI %s |
Simon Atanasyan | 08c165b | 2014-06-30 08:09:54 +0000 | [diff] [blame] | 51 | // MIPS-ABI-EABI: "-target-cpu" "mips32r2" |
Simon Atanasyan | 4938ddb | 2013-04-21 13:30:10 +0000 | [diff] [blame] | 52 | // MIPS-ABI-EABI: "-target-abi" "eabi" |
Simon Atanasyan | 08c165b | 2014-06-30 08:09:54 +0000 | [diff] [blame] | 53 | // |
| 54 | // RUN: not %clang -target mips-linux-gnu -c %s \ |
| 55 | // RUN: -mabi=unknown 2>&1 \ |
| 56 | // RUN: | FileCheck -check-prefix=MIPS-ABI-UNKNOWN %s |
| 57 | // MIPS-ABI-UNKNOWN: error: unknown target ABI 'unknown' |
Simon Atanasyan | a42a84e | 2014-07-02 13:20:36 +0000 | [diff] [blame] | 58 | // |
| 59 | // RUN: %clang -target mips-linux-gnu -### -c %s \ |
Simon Atanasyan | 26610c5 | 2014-07-04 12:36:56 +0000 | [diff] [blame^] | 60 | // RUN: -march=mips1 2>&1 \ |
| 61 | // RUN: | FileCheck -check-prefix=MIPS-ARCH-1 %s |
| 62 | // MIPS-ARCH-1: "-target-cpu" "mips1" |
| 63 | // MIPS-ARCH-1: "-target-abi" "o32" |
| 64 | // |
| 65 | // RUN: %clang -target mips-linux-gnu -### -c %s \ |
| 66 | // RUN: -march=mips2 2>&1 \ |
| 67 | // RUN: | FileCheck -check-prefix=MIPS-ARCH-2 %s |
| 68 | // MIPS-ARCH-2: "-target-cpu" "mips2" |
| 69 | // MIPS-ARCH-2: "-target-abi" "o32" |
| 70 | // |
| 71 | // RUN: %clang -target mips-linux-gnu -### -c %s \ |
| 72 | // RUN: -march=mips3 2>&1 \ |
| 73 | // RUN: | FileCheck -check-prefix=MIPS-ARCH-3 %s |
| 74 | // MIPS-ARCH-3: "-target-cpu" "mips3" |
| 75 | // MIPS-ARCH-3: "-target-abi" "o32" |
| 76 | // |
| 77 | // RUN: %clang -target mips-linux-gnu -### -c %s \ |
| 78 | // RUN: -march=mips4 2>&1 \ |
| 79 | // RUN: | FileCheck -check-prefix=MIPS-ARCH-4 %s |
| 80 | // MIPS-ARCH-4: "-target-cpu" "mips4" |
| 81 | // MIPS-ARCH-4: "-target-abi" "o32" |
| 82 | // |
| 83 | // RUN: %clang -target mips-linux-gnu -### -c %s \ |
| 84 | // RUN: -march=mips5 2>&1 \ |
| 85 | // RUN: | FileCheck -check-prefix=MIPS-ARCH-5 %s |
| 86 | // MIPS-ARCH-5: "-target-cpu" "mips5" |
| 87 | // MIPS-ARCH-5: "-target-abi" "o32" |
| 88 | // |
| 89 | // RUN: %clang -target mips-linux-gnu -### -c %s \ |
Simon Atanasyan | a42a84e | 2014-07-02 13:20:36 +0000 | [diff] [blame] | 90 | // RUN: -march=mips32 2>&1 \ |
| 91 | // RUN: | FileCheck -check-prefix=MIPS-ARCH-32 %s |
| 92 | // MIPS-ARCH-32: "-target-cpu" "mips32" |
| 93 | // MIPS-ARCH-32: "-target-abi" "o32" |
| 94 | // |
| 95 | // RUN: %clang -target mips-linux-gnu -### -c %s \ |
| 96 | // RUN: -march=mips32r2 2>&1 \ |
| 97 | // RUN: | FileCheck -check-prefix=MIPS-ARCH-32R2 %s |
| 98 | // MIPS-ARCH-32R2: "-target-cpu" "mips32r2" |
| 99 | // MIPS-ARCH-32R2: "-target-abi" "o32" |
| 100 | // |
| 101 | // RUN: %clang -target mips-linux-gnu -### -c %s \ |
| 102 | // RUN: -march=mips64 2>&1 \ |
| 103 | // RUN: | FileCheck -check-prefix=MIPS-ARCH-3264 %s |
| 104 | // MIPS-ARCH-3264: "-target-cpu" "mips64" |
| 105 | // MIPS-ARCH-3264: "-target-abi" "o32" |
| 106 | // |
| 107 | // RUN: %clang -target mips64-linux-gnu -### -c %s \ |
| 108 | // RUN: -march=mips64 2>&1 \ |
| 109 | // RUN: | FileCheck -check-prefix=MIPS-ARCH-64 %s |
| 110 | // MIPS-ARCH-64: "-target-cpu" "mips64" |
| 111 | // MIPS-ARCH-64: "-target-abi" "n64" |
| 112 | // |
| 113 | // RUN: %clang -target mips64-linux-gnu -### -c %s \ |
| 114 | // RUN: -march=mips64r2 2>&1 \ |
| 115 | // RUN: | FileCheck -check-prefix=MIPS-ARCH-64R2 %s |
| 116 | // MIPS-ARCH-64R2: "-target-cpu" "mips64r2" |
| 117 | // MIPS-ARCH-64R2: "-target-abi" "n64" |
Simon Atanasyan | 6b3544e | 2014-07-03 08:31:23 +0000 | [diff] [blame] | 118 | // |
| 119 | // RUN: not %clang -target mips64-linux-gnu -c %s \ |
| 120 | // RUN: -march=mips32 2>&1 \ |
| 121 | // RUN: | FileCheck -check-prefix=MIPS-ARCH-6432 %s |
| 122 | // MIPS-ARCH-6432: error: unknown target CPU 'mips32' |
| 123 | // |
| 124 | // RUN: not %clang -target mips-linux-gnu -c %s \ |
| 125 | // RUN: -march=unknown 2>&1 \ |
| 126 | // RUN: | FileCheck -check-prefix=MIPS-ARCH-UNKNOWN %s |
| 127 | // MIPS-ARCH-UNKNOWN: error: unknown target CPU 'unknown' |