blob: b206e1cf36fd94dd270542dec55019044f356fd2 [file] [log] [blame]
James Y Knight3508b222016-04-01 21:33:20 +00001// RUN: %clang -target armv8a-none-linux-gnu -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=CHECK-V8A %s
2// CHECK-V8A: #define __ARMEL__ 1
3// CHECK-V8A: #define __ARM_ARCH 8
4// CHECK-V8A: #define __ARM_ARCH_8A__ 1
5// CHECK-V8A: #define __ARM_FEATURE_CRC32 1
6// CHECK-V8A: #define __ARM_FEATURE_DIRECTED_ROUNDING 1
7// CHECK-V8A: #define __ARM_FEATURE_NUMERIC_MAXMIN 1
8// CHECK-V8A: #define __ARM_FP 0xE
9// CHECK-V8A: #define __ARM_FP16_ARGS 1
10// CHECK-V8A: #define __ARM_FP16_FORMAT_IEEE 1
Joey Gouly1e8637b2013-09-18 10:07:09 +000011
Javed Absar00b74442016-10-07 12:08:41 +000012// RUN: %clang -target armv8r-none-linux-gnu -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=CHECK-V8R %s
13// CHECK-V8R: #define __ARMEL__ 1
14// CHECK-V8R: #define __ARM_ARCH 8
15// CHECK-V8R: #define __ARM_ARCH_8R__ 1
16// CHECK-V8R: #define __ARM_FEATURE_CRC32 1
17// CHECK-V8R: #define __ARM_FEATURE_DIRECTED_ROUNDING 1
18// CHECK-V8R: #define __ARM_FEATURE_NUMERIC_MAXMIN 1
19// CHECK-V8R: #define __ARM_FP 0xE
20
James Y Knight3508b222016-04-01 21:33:20 +000021// RUN: %clang -target armv7a-none-linux-gnu -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=CHECK-V7 %s
22// CHECK-V7: #define __ARMEL__ 1
23// CHECK-V7: #define __ARM_ARCH 7
24// CHECK-V7: #define __ARM_ARCH_7A__ 1
Nico Riecke6a158252014-02-16 07:29:41 +000025// CHECK-V7-NOT: __ARM_FEATURE_CRC32
Pablo Barrio1c1b2512016-03-15 19:03:09 +000026// CHECK-V7-NOT: __ARM_FEATURE_NUMERIC_MAXMIN
James Molloy0ffb0932014-09-15 11:25:38 +000027// CHECK-V7-NOT: __ARM_FEATURE_DIRECTED_ROUNDING
James Y Knight3508b222016-04-01 21:33:20 +000028// CHECK-V7: #define __ARM_FP 0xC
Silviu Barangae5690462013-10-21 10:59:33 +000029
George Burgess IVfc970562017-02-09 23:30:10 +000030// RUN: %clang -target armv7ve-none-linux-gnu -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=CHECK-V7VE %s
31// CHECK-V7VE: #define __ARMEL__ 1
32// CHECK-V7VE: #define __ARM_ARCH 7
33// CHECK-V7VE: #define __ARM_ARCH_7VE__ 1
34// CHECK-V7VE: #define __ARM_ARCH_EXT_IDIV__ 1
35// CHECK-V7VE: #define __ARM_FP 0xC
36
James Y Knight3508b222016-04-01 21:33:20 +000037// RUN: %clang -target x86_64-apple-macosx10.10 -arch armv7s -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=CHECK-V7S %s
38// CHECK-V7S: #define __ARMEL__ 1
39// CHECK-V7S: #define __ARM_ARCH 7
40// CHECK-V7S: #define __ARM_ARCH_7S__ 1
Tim Northover525c73c2015-07-21 21:47:33 +000041// CHECK-V7S-NOT: __ARM_FEATURE_CRC32
42// CHECK-V7S-NOT: __ARM_FEATURE_NUMERIC_MAXMIN
43// CHECK-V7S-NOT: __ARM_FEATURE_DIRECTED_ROUNDING
James Y Knight3508b222016-04-01 21:33:20 +000044// CHECK-V7S: #define __ARM_FP 0xE
Tim Northover525c73c2015-07-21 21:47:33 +000045
James Y Knight3508b222016-04-01 21:33:20 +000046// RUN: %clang -target armv8a -mfloat-abi=hard -x c -E -dM %s | FileCheck -match-full-lines --check-prefix=CHECK-V8-BAREHF %s
47// CHECK-V8-BAREHF: #define __ARMEL__ 1
48// CHECK-V8-BAREHF: #define __ARM_ARCH 8
49// CHECK-V8-BAREHF: #define __ARM_ARCH_8A__ 1
50// CHECK-V8-BAREHF: #define __ARM_FEATURE_CRC32 1
51// CHECK-V8-BAREHF: #define __ARM_FEATURE_DIRECTED_ROUNDING 1
52// CHECK-V8-BAREHF: #define __ARM_FEATURE_NUMERIC_MAXMIN 1
53// CHECK-V8-BAREHP: #define __ARM_FP 0xE
54// CHECK-V8-BAREHF: #define __ARM_NEON__ 1
55// CHECK-V8-BAREHF: #define __ARM_PCS_VFP 1
56// CHECK-V8-BAREHF: #define __VFP_FP__ 1
Bernard Ogdenda13af32013-10-24 18:32:51 +000057
James Y Knight3508b222016-04-01 21:33:20 +000058// RUN: %clang -target armv8a -mfloat-abi=hard -mfpu=fp-armv8 -x c -E -dM %s | FileCheck -match-full-lines --check-prefix=CHECK-V8-BAREHF-FP %s
Bernard Ogdenda13af32013-10-24 18:32:51 +000059// CHECK-V8-BAREHF-FP-NOT: __ARM_NEON__ 1
James Y Knight3508b222016-04-01 21:33:20 +000060// CHECK-V8-BAREHP-FP: #define __ARM_FP 0xE
61// CHECK-V8-BAREHF-FP: #define __VFP_FP__ 1
Bernard Ogdenda13af32013-10-24 18:32:51 +000062
James Y Knight3508b222016-04-01 21:33:20 +000063// RUN: %clang -target armv8a -mfloat-abi=hard -mfpu=neon-fp-armv8 -x c -E -dM %s | FileCheck -match-full-lines --check-prefix=CHECK-V8-BAREHF-NEON-FP %s
64// RUN: %clang -target armv8a -mfloat-abi=hard -mfpu=crypto-neon-fp-armv8 -x c -E -dM %s | FileCheck -match-full-lines --check-prefix=CHECK-V8-BAREHF-NEON-FP %s
65// CHECK-V8-BAREHP-NEON-FP: #define __ARM_FP 0xE
66// CHECK-V8-BAREHF-NEON-FP: #define __ARM_NEON__ 1
67// CHECK-V8-BAREHF-NEON-FP: #define __VFP_FP__ 1
Bernard Ogdenda13af32013-10-24 18:32:51 +000068
James Y Knight3508b222016-04-01 21:33:20 +000069// RUN: %clang -target armv8a -mnocrc -x c -E -dM %s | FileCheck -match-full-lines --check-prefix=CHECK-V8-NOCRC %s
Bernard Ogden18b57012013-10-29 09:47:51 +000070// CHECK-V8-NOCRC-NOT: __ARM_FEATURE_CRC32 1
71
Silviu Barangae5690462013-10-21 10:59:33 +000072// Check that -mhwdiv works properly for armv8/thumbv8 (enabled by default).
73
James Y Knight3508b222016-04-01 21:33:20 +000074// RUN: %clang -target armv8 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=V8 %s
75// RUN: %clang -target armv8 -mthumb -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=V8 %s
76// RUN: %clang -target armv8-eabi -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=V8 %s
77// RUN: %clang -target armv8-eabi -mthumb -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=V8 %s
Artyom Skrobov59f43bb2016-03-23 13:32:33 +000078// V8:#define __ARM_ARCH_EXT_IDIV__ 1
Silviu Barangae5690462013-10-21 10:59:33 +000079
James Y Knight3508b222016-04-01 21:33:20 +000080// RUN: %clang -target armv8 -mhwdiv=none -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=NOHWDIV-V8 %s
81// RUN: %clang -target armv8 -mthumb -mhwdiv=none -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=NOHWDIV-V8 %s
82// RUN: %clang -target armv8 -mhwdiv=thumb -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=NOHWDIV-V8 %s
83// RUN: %clang -target armv8 -mthumb -mhwdiv=arm -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=NOHWDIV-V8 %s
Artyom Skrobov59f43bb2016-03-23 13:32:33 +000084// NOHWDIV-V8-NOT:#define __ARM_ARCH_EXT_IDIV__
Silviu Barangae5690462013-10-21 10:59:33 +000085
James Y Knight3508b222016-04-01 21:33:20 +000086// RUN: %clang -target armv8a -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=V8A %s
87// RUN: %clang -target armv8a -mthumb -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=V8A %s
88// RUN: %clang -target armv8a-eabi -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=V8A %s
89// RUN: %clang -target armv8a-eabi -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=V8A %s
Artyom Skrobov59f43bb2016-03-23 13:32:33 +000090// V8A:#define __ARM_ARCH_EXT_IDIV__ 1
91// V8A:#define __ARM_FP 0xE
Silviu Barangae5690462013-10-21 10:59:33 +000092
James Y Knight3508b222016-04-01 21:33:20 +000093// RUN: %clang -target armv8m.base-none-linux-gnu -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=V8M_BASELINE %s
94// V8M_BASELINE: #define __ARM_ARCH 8
95// V8M_BASELINE: #define __ARM_ARCH_8M_BASE__ 1
96// V8M_BASELINE: #define __ARM_ARCH_EXT_IDIV__ 1
Bradley Smithf4affc12016-03-03 13:52:22 +000097// V8M_BASELINE-NOT: __ARM_ARCH_ISA_ARM
James Y Knight3508b222016-04-01 21:33:20 +000098// V8M_BASELINE: #define __ARM_ARCH_ISA_THUMB 1
99// V8M_BASELINE: #define __ARM_ARCH_PROFILE 'M'
Bradley Smithf4affc12016-03-03 13:52:22 +0000100// V8M_BASELINE-NOT: __ARM_FEATURE_CRC32
101// V8M_BASELINE-NOT: __ARM_FEATURE_DSP
102// V8M_BASELINE-NOT: __ARM_FP 0x{{.*}}
103// V8M_BASELINE-NOT: __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1
104
James Y Knight3508b222016-04-01 21:33:20 +0000105// RUN: %clang -target armv8m.main-none-linux-gnu -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=V8M_MAINLINE %s
106// V8M_MAINLINE: #define __ARM_ARCH 8
107// V8M_MAINLINE: #define __ARM_ARCH_8M_MAIN__ 1
108// V8M_MAINLINE: #define __ARM_ARCH_EXT_IDIV__ 1
Bradley Smithf4affc12016-03-03 13:52:22 +0000109// V8M_MAINLINE-NOT: __ARM_ARCH_ISA_ARM
James Y Knight3508b222016-04-01 21:33:20 +0000110// V8M_MAINLINE: #define __ARM_ARCH_ISA_THUMB 2
111// V8M_MAINLINE: #define __ARM_ARCH_PROFILE 'M'
Bradley Smithf4affc12016-03-03 13:52:22 +0000112// V8M_MAINLINE-NOT: __ARM_FEATURE_CRC32
113// V8M_MAINLINE-NOT: __ARM_FEATURE_DSP
James Y Knight3508b222016-04-01 21:33:20 +0000114// V8M_MAINLINE: #define __ARM_FP 0xE
115// V8M_MAINLINE: #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1
Bradley Smithf4affc12016-03-03 13:52:22 +0000116
James Y Knight3508b222016-04-01 21:33:20 +0000117// RUN: %clang -target arm-none-linux-gnu -march=armv8-m.main+dsp -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=V8M_MAINLINE_DSP %s
118// V8M_MAINLINE_DSP: #define __ARM_ARCH 8
119// V8M_MAINLINE_DSP: #define __ARM_ARCH_8M_MAIN__ 1
120// V8M_MAINLINE_DSP: #define __ARM_ARCH_EXT_IDIV__ 1
Bradley Smithf4affc12016-03-03 13:52:22 +0000121// V8M_MAINLINE_DSP-NOT: __ARM_ARCH_ISA_ARM
James Y Knight3508b222016-04-01 21:33:20 +0000122// V8M_MAINLINE_DSP: #define __ARM_ARCH_ISA_THUMB 2
123// V8M_MAINLINE_DSP: #define __ARM_ARCH_PROFILE 'M'
Bradley Smithf4affc12016-03-03 13:52:22 +0000124// V8M_MAINLINE_DSP-NOT: __ARM_FEATURE_CRC32
James Y Knight3508b222016-04-01 21:33:20 +0000125// V8M_MAINLINE_DSP: #define __ARM_FEATURE_DSP 1
126// V8M_MAINLINE_DSP: #define __ARM_FP 0xE
127// V8M_MAINLINE_DSP: #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1
Bradley Smithf4affc12016-03-03 13:52:22 +0000128
James Y Knight3508b222016-04-01 21:33:20 +0000129// RUN: %clang -target arm-none-linux-gnu -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=CHECK-DEFS %s
Alexandros Lamprineasf5a8e6c2015-10-02 14:56:37 +0000130// CHECK-DEFS:#define __ARM_PCS 1
Bradley Smith0f28f0c2014-01-20 10:52:00 +0000131// CHECK-DEFS:#define __ARM_SIZEOF_MINIMAL_ENUM 4
132// CHECK-DEFS:#define __ARM_SIZEOF_WCHAR_T 4
133
Alexandros Lamprineasf5a8e6c2015-10-02 14:56:37 +0000134// RUN: %clang -target arm-none-linux-gnu -fno-math-errno -fno-signed-zeros\
135// RUN: -fno-trapping-math -fassociative-math -freciprocal-math\
James Y Knight3508b222016-04-01 21:33:20 +0000136// RUN: -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=CHECK-FASTMATH %s
Alexandros Lamprineasf5a8e6c2015-10-02 14:56:37 +0000137// RUN: %clang -target arm-none-linux-gnu -ffast-math -x c -E -dM %s -o -\
James Y Knight3508b222016-04-01 21:33:20 +0000138// RUN: | FileCheck -match-full-lines --check-prefix=CHECK-FASTMATH %s
139// CHECK-FASTMATH: #define __ARM_FP_FAST 1
Alexandros Lamprineasf5a8e6c2015-10-02 14:56:37 +0000140
James Y Knight3508b222016-04-01 21:33:20 +0000141// RUN: %clang -target arm-none-linux-gnu -fshort-wchar -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=CHECK-SHORTWCHAR %s
Bradley Smith0f28f0c2014-01-20 10:52:00 +0000142// CHECK-SHORTWCHAR:#define __ARM_SIZEOF_WCHAR_T 2
143
James Y Knight3508b222016-04-01 21:33:20 +0000144// RUN: %clang -target arm-none-linux-gnu -fshort-enums -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=CHECK-SHORTENUMS %s
Bradley Smith0f28f0c2014-01-20 10:52:00 +0000145// CHECK-SHORTENUMS:#define __ARM_SIZEOF_MINIMAL_ENUM 1
Silviu Barangae5690462013-10-21 10:59:33 +0000146
147// Test that -mhwdiv has the right effect for a target CPU which has hwdiv enabled by default.
James Y Knight3508b222016-04-01 21:33:20 +0000148// RUN: %clang -target armv7 -mcpu=cortex-a15 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=HWDIV %s
149// RUN: %clang -target armv7 -mthumb -mcpu=cortex-a15 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=HWDIV %s
150// RUN: %clang -target armv7 -mcpu=cortex-a15 -mhwdiv=arm -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=HWDIV %s
151// RUN: %clang -target armv7 -mthumb -mcpu=cortex-a15 -mhwdiv=thumb -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=HWDIV %s
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000152// HWDIV:#define __ARM_ARCH_EXT_IDIV__ 1
Silviu Barangae5690462013-10-21 10:59:33 +0000153
James Y Knight3508b222016-04-01 21:33:20 +0000154// RUN: %clang -target arm -mcpu=cortex-a15 -mhwdiv=thumb -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=NOHWDIV %s
155// RUN: %clang -target arm -mthumb -mcpu=cortex-a15 -mhwdiv=arm -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=NOHWDIV %s
156// RUN: %clang -target arm -mcpu=cortex-a15 -mhwdiv=none -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=NOHWDIV %s
157// RUN: %clang -target arm -mthumb -mcpu=cortex-a15 -mhwdiv=none -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=NOHWDIV %s
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000158// NOHWDIV-NOT:#define __ARM_ARCH_EXT_IDIV__
Silviu Barangae5690462013-10-21 10:59:33 +0000159
Artyom Skrobov53b000a82013-11-21 14:04:38 +0000160
161// Check that -mfpu works properly for Cortex-A7 (enabled by default).
James Y Knight3508b222016-04-01 21:33:20 +0000162// RUN: %clang -target armv7-none-linux-gnueabi -mcpu=cortex-a7 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=DEFAULTFPU-A7 %s
163// RUN: %clang -target armv7-none-linux-gnueabi -mthumb -mcpu=cortex-a7 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=DEFAULTFPU-A7 %s
Richard Barton7dacc242015-10-21 10:03:55 +0000164// DEFAULTFPU-A7:#define __ARM_FP 0xE
Artyom Skrobov53b000a82013-11-21 14:04:38 +0000165// DEFAULTFPU-A7:#define __ARM_NEON__ 1
166// DEFAULTFPU-A7:#define __ARM_VFPV4__ 1
167
James Y Knight3508b222016-04-01 21:33:20 +0000168// RUN: %clang -target armv7-none-linux-gnueabi -mcpu=cortex-a7 -mfpu=none -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=FPUNONE-A7 %s
169// RUN: %clang -target armv7-none-linux-gnueabi -mthumb -mcpu=cortex-a7 -mfpu=none -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=FPUNONE-A7 %s
Richard Barton7dacc242015-10-21 10:03:55 +0000170// FPUNONE-A7-NOT:#define __ARM_FP 0x{{.*}}
Artyom Skrobov53b000a82013-11-21 14:04:38 +0000171// FPUNONE-A7-NOT:#define __ARM_NEON__ 1
172// FPUNONE-A7-NOT:#define __ARM_VFPV4__ 1
173
James Y Knight3508b222016-04-01 21:33:20 +0000174// RUN: %clang -target armv7-none-linux-gnueabi -mcpu=cortex-a7 -mfpu=vfp4 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=NONEON-A7 %s
175// RUN: %clang -target armv7-none-linux-gnueabi -mthumb -mcpu=cortex-a7 -mfpu=vfp4 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=NONEON-A7 %s
Richard Barton7dacc242015-10-21 10:03:55 +0000176// NONEON-A7:#define __ARM_FP 0xE
Artyom Skrobov53b000a82013-11-21 14:04:38 +0000177// NONEON-A7-NOT:#define __ARM_NEON__ 1
178// NONEON-A7:#define __ARM_VFPV4__ 1
179
Amara Emersona1daec72013-11-25 13:18:59 +0000180// Check that -mfpu works properly for Cortex-A5 (enabled by default).
James Y Knight3508b222016-04-01 21:33:20 +0000181// RUN: %clang -target armv7-none-linux-gnueabi -mcpu=cortex-a5 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=DEFAULTFPU-A5 %s
182// RUN: %clang -target armv7-none-linux-gnueabi -mthumb -mcpu=cortex-a5 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=DEFAULTFPU-A5 %s
Richard Barton7dacc242015-10-21 10:03:55 +0000183// DEFAULTFPU-A5:#define __ARM_FP 0xE
Amara Emersona1daec72013-11-25 13:18:59 +0000184// DEFAULTFPU-A5:#define __ARM_NEON__ 1
185// DEFAULTFPU-A5:#define __ARM_VFPV4__ 1
186
James Y Knight3508b222016-04-01 21:33:20 +0000187// RUN: %clang -target armv7-none-linux-gnueabi -mcpu=cortex-a5 -mfpu=none -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=FPUNONE-A5 %s
188// RUN: %clang -target armv7-none-linux-gnueabi -mthumb -mcpu=cortex-a5 -mfpu=none -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=FPUNONE-A5 %s
Richard Barton7dacc242015-10-21 10:03:55 +0000189// FPUNONE-A5-NOT:#define __ARM_FP 0x{{.*}}
Amara Emersona1daec72013-11-25 13:18:59 +0000190// FPUNONE-A5-NOT:#define __ARM_NEON__ 1
191// FPUNONE-A5-NOT:#define __ARM_VFPV4__ 1
192
James Y Knight3508b222016-04-01 21:33:20 +0000193// RUN: %clang -target armv7-none-linux-gnueabi -mcpu=cortex-a5 -mfpu=vfp4-d16 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=NONEON-A5 %s
194// RUN: %clang -target armv7-none-linux-gnueabi -mthumb -mcpu=cortex-a5 -mfpu=vfp4-d16 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=NONEON-A5 %s
Richard Barton7dacc242015-10-21 10:03:55 +0000195// NONEON-A5:#define __ARM_FP 0xE
Amara Emersona1daec72013-11-25 13:18:59 +0000196// NONEON-A5-NOT:#define __ARM_NEON__ 1
197// NONEON-A5:#define __ARM_VFPV4__ 1
198
Silviu Barangae5690462013-10-21 10:59:33 +0000199// FIXME: add check for further predefines
Sergey Dmitrouk745f5302014-11-25 08:57:36 +0000200// Test whether predefines are as expected when targeting ep9312.
James Y Knight3508b222016-04-01 21:33:20 +0000201// RUN: %clang -target armv4t -mcpu=ep9312 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=A4T %s
Sergey Dmitrouk745f5302014-11-25 08:57:36 +0000202// A4T-NOT:#define __ARM_FEATURE_DSP
Richard Barton7dacc242015-10-21 10:03:55 +0000203// A4T-NOT:#define __ARM_FP 0x{{.*}}
Sergey Dmitrouk745f5302014-11-25 08:57:36 +0000204
205// Test whether predefines are as expected when targeting arm10tdmi.
James Y Knight3508b222016-04-01 21:33:20 +0000206// RUN: %clang -target armv5 -mcpu=arm10tdmi -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=A5T %s
Sergey Dmitrouk745f5302014-11-25 08:57:36 +0000207// A5T-NOT:#define __ARM_FEATURE_DSP
Richard Barton7dacc242015-10-21 10:03:55 +0000208// A5T-NOT:#define __ARM_FP 0x{{.*}}
Sergey Dmitrouk745f5302014-11-25 08:57:36 +0000209
Silviu Barangae5690462013-10-21 10:59:33 +0000210// Test whether predefines are as expected when targeting cortex-a5.
James Y Knight3508b222016-04-01 21:33:20 +0000211// RUN: %clang -target armv7 -mcpu=cortex-a5 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=A5 %s
212// RUN: %clang -target armv7 -mthumb -mcpu=cortex-a5 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=A5 %s
Amara Emersona1daec72013-11-25 13:18:59 +0000213// A5:#define __ARM_ARCH 7
214// A5:#define __ARM_ARCH_7A__ 1
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000215// A5-NOT:#define __ARM_ARCH_EXT_IDIV__
Saleem Abdulrasool52a5d412014-06-15 18:48:41 +0000216// A5:#define __ARM_ARCH_PROFILE 'A'
James Molloy0ffb0932014-09-15 11:25:38 +0000217// A5-NOT: #define __ARM_FEATURE_DIRECTED_ROUNDING
James Y Knight3508b222016-04-01 21:33:20 +0000218// A5:#define __ARM_FEATURE_DSP 1
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000219// A5-NOT: #define __ARM_FEATURE_NUMERIC_MAXMIN
Richard Barton7dacc242015-10-21 10:03:55 +0000220// A5:#define __ARM_FP 0xE
Amara Emersona1daec72013-11-25 13:18:59 +0000221
Artyom Skrobov53b000a82013-11-21 14:04:38 +0000222// Test whether predefines are as expected when targeting cortex-a7.
James Y Knight3508b222016-04-01 21:33:20 +0000223// RUN: %clang -target armv7k -mcpu=cortex-a7 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=A7 %s
224// RUN: %clang -target armv7k -mthumb -mcpu=cortex-a7 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=A7 %s
Artyom Skrobov53b000a82013-11-21 14:04:38 +0000225// A7:#define __ARM_ARCH 7
Artyom Skrobov53b000a82013-11-21 14:04:38 +0000226// A7:#define __ARM_ARCH_EXT_IDIV__ 1
Saleem Abdulrasool52a5d412014-06-15 18:48:41 +0000227// A7:#define __ARM_ARCH_PROFILE 'A'
James Y Knight3508b222016-04-01 21:33:20 +0000228// A7:#define __ARM_FEATURE_DSP 1
Richard Barton7dacc242015-10-21 10:03:55 +0000229// A7:#define __ARM_FP 0xE
Artyom Skrobov53b000a82013-11-21 14:04:38 +0000230
Tim Northover32617992016-04-28 14:01:49 +0000231// Test whether predefines are as expected when targeting cortex-a7.
232// RUN: %clang -target x86_64-apple-darwin -arch armv7k -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=ARMV7K %s
233// ARMV7K:#define __ARM_ARCH 7
234// ARMV7K:#define __ARM_ARCH_EXT_IDIV__ 1
235// ARMV7K:#define __ARM_ARCH_PROFILE 'A'
Chris Bieneman46977b62016-04-29 17:53:00 +0000236// ARMV7K:#define __ARM_DWARF_EH__ 1
Tim Northover32617992016-04-28 14:01:49 +0000237// ARMV7K:#define __ARM_FEATURE_DSP 1
238// ARMV7K:#define __ARM_FP 0xE
239// ARMV7K:#define __ARM_PCS_VFP 1
240
241
Silviu Barangae5690462013-10-21 10:59:33 +0000242// Test whether predefines are as expected when targeting cortex-a8.
James Y Knight3508b222016-04-01 21:33:20 +0000243// RUN: %clang -target armv7 -mcpu=cortex-a8 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=A8 %s
244// RUN: %clang -target armv7 -mthumb -mcpu=cortex-a8 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=A8 %s
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000245// A8-NOT:#define __ARM_ARCH_EXT_IDIV__
James Y Knight3508b222016-04-01 21:33:20 +0000246// A8:#define __ARM_FEATURE_DSP 1
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000247// A8:#define __ARM_FP 0xC
Silviu Barangae5690462013-10-21 10:59:33 +0000248
249// Test whether predefines are as expected when targeting cortex-a9.
James Y Knight3508b222016-04-01 21:33:20 +0000250// RUN: %clang -target armv7 -mcpu=cortex-a9 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=A9 %s
251// RUN: %clang -target armv7 -mthumb -mcpu=cortex-a9 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=A9 %s
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000252// A9-NOT:#define __ARM_ARCH_EXT_IDIV__
James Y Knight3508b222016-04-01 21:33:20 +0000253// A9:#define __ARM_FEATURE_DSP 1
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000254// A9:#define __ARM_FP 0xE
Silviu Barangae5690462013-10-21 10:59:33 +0000255
Richard Barton3b82ed32013-11-22 11:53:28 +0000256
257// Check that -mfpu works properly for Cortex-A12 (enabled by default).
James Y Knight3508b222016-04-01 21:33:20 +0000258// RUN: %clang -target armv7-none-linux-gnueabi -mcpu=cortex-a12 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=DEFAULTFPU-A12 %s
259// RUN: %clang -target armv7-none-linux-gnueabi -mthumb -mcpu=cortex-a12 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=DEFAULTFPU-A12 %s
Richard Barton7dacc242015-10-21 10:03:55 +0000260// DEFAULTFPU-A12:#define __ARM_FP 0xE
Richard Barton3b82ed32013-11-22 11:53:28 +0000261// DEFAULTFPU-A12:#define __ARM_NEON__ 1
262// DEFAULTFPU-A12:#define __ARM_VFPV4__ 1
263
James Y Knight3508b222016-04-01 21:33:20 +0000264// RUN: %clang -target armv7-none-linux-gnueabi -mcpu=cortex-a12 -mfpu=none -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=FPUNONE-A12 %s
265// RUN: %clang -target armv7-none-linux-gnueabi -mthumb -mcpu=cortex-a12 -mfpu=none -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=FPUNONE-A12 %s
Richard Barton7dacc242015-10-21 10:03:55 +0000266// FPUNONE-A12-NOT:#define __ARM_FP 0x{{.*}}
Richard Barton3b82ed32013-11-22 11:53:28 +0000267// FPUNONE-A12-NOT:#define __ARM_NEON__ 1
268// FPUNONE-A12-NOT:#define __ARM_VFPV4__ 1
269
270// Test whether predefines are as expected when targeting cortex-a12.
James Y Knight3508b222016-04-01 21:33:20 +0000271// RUN: %clang -target armv7 -mcpu=cortex-a12 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=A12 %s
272// RUN: %clang -target armv7 -mthumb -mcpu=cortex-a12 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=A12 %s
Richard Barton3b82ed32013-11-22 11:53:28 +0000273// A12:#define __ARM_ARCH 7
274// A12:#define __ARM_ARCH_7A__ 1
275// A12:#define __ARM_ARCH_EXT_IDIV__ 1
Saleem Abdulrasool52a5d412014-06-15 18:48:41 +0000276// A12:#define __ARM_ARCH_PROFILE 'A'
James Y Knight3508b222016-04-01 21:33:20 +0000277// A12:#define __ARM_FEATURE_DSP 1
Richard Barton7dacc242015-10-21 10:03:55 +0000278// A12:#define __ARM_FP 0xE
Richard Barton3b82ed32013-11-22 11:53:28 +0000279
Silviu Barangae5690462013-10-21 10:59:33 +0000280// Test whether predefines are as expected when targeting cortex-a15.
James Y Knight3508b222016-04-01 21:33:20 +0000281// RUN: %clang -target armv7 -mcpu=cortex-a15 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=A15 %s
282// RUN: %clang -target armv7 -mthumb -mcpu=cortex-a15 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=A15 %s
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000283// A15:#define __ARM_ARCH_EXT_IDIV__ 1
James Y Knight3508b222016-04-01 21:33:20 +0000284// A15:#define __ARM_FEATURE_DSP 1
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000285// A15:#define __ARM_FP 0xE
Silviu Barangae5690462013-10-21 10:59:33 +0000286
Renato Golin5886bc32014-10-13 10:22:48 +0000287// Check that -mfpu works properly for Cortex-A17 (enabled by default).
James Y Knight3508b222016-04-01 21:33:20 +0000288// RUN: %clang -target armv7-none-linux-gnueabi -mcpu=cortex-a17 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=DEFAULTFPU-A17 %s
289// RUN: %clang -target armv7-none-linux-gnueabi -mthumb -mcpu=cortex-a17 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=DEFAULTFPU-A17 %s
Richard Barton7dacc242015-10-21 10:03:55 +0000290// DEFAULTFPU-A17:#define __ARM_FP 0xE
Renato Golin5886bc32014-10-13 10:22:48 +0000291// DEFAULTFPU-A17:#define __ARM_NEON__ 1
292// DEFAULTFPU-A17:#define __ARM_VFPV4__ 1
293
James Y Knight3508b222016-04-01 21:33:20 +0000294// RUN: %clang -target armv7-none-linux-gnueabi -mcpu=cortex-a17 -mfpu=none -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=FPUNONE-A17 %s
295// RUN: %clang -target armv7-none-linux-gnueabi -mthumb -mcpu=cortex-a17 -mfpu=none -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=FPUNONE-A17 %s
Richard Barton7dacc242015-10-21 10:03:55 +0000296// FPUNONE-A17-NOT:#define __ARM_FP 0x{{.*}}
Renato Golin5886bc32014-10-13 10:22:48 +0000297// FPUNONE-A17-NOT:#define __ARM_NEON__ 1
298// FPUNONE-A17-NOT:#define __ARM_VFPV4__ 1
299
300// Test whether predefines are as expected when targeting cortex-a17.
James Y Knight3508b222016-04-01 21:33:20 +0000301// RUN: %clang -target armv7 -mcpu=cortex-a17 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=A17 %s
302// RUN: %clang -target armv7 -mthumb -mcpu=cortex-a17 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=A17 %s
Renato Golin5886bc32014-10-13 10:22:48 +0000303// A17:#define __ARM_ARCH 7
304// A17:#define __ARM_ARCH_7A__ 1
305// A17:#define __ARM_ARCH_EXT_IDIV__ 1
306// A17:#define __ARM_ARCH_PROFILE 'A'
James Y Knight3508b222016-04-01 21:33:20 +0000307// A17:#define __ARM_FEATURE_DSP 1
Richard Barton7dacc242015-10-21 10:03:55 +0000308// A17:#define __ARM_FP 0xE
Renato Golin5886bc32014-10-13 10:22:48 +0000309
Silviu Barangae5690462013-10-21 10:59:33 +0000310// Test whether predefines are as expected when targeting swift.
James Y Knight3508b222016-04-01 21:33:20 +0000311// RUN: %clang -target armv7s -mcpu=swift -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=SWIFT %s
312// RUN: %clang -target armv7s -mthumb -mcpu=swift -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=SWIFT %s
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000313// SWIFT:#define __ARM_ARCH_EXT_IDIV__ 1
James Y Knight3508b222016-04-01 21:33:20 +0000314// SWIFT:#define __ARM_FEATURE_DSP 1
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000315// SWIFT:#define __ARM_FP 0xE
Silviu Barangae5690462013-10-21 10:59:33 +0000316
Renato Golin930de672016-03-21 17:29:51 +0000317// Test whether predefines are as expected when targeting ARMv8-A Cortex implementations
James Y Knight3508b222016-04-01 21:33:20 +0000318// RUN: %clang -target armv8 -mcpu=cortex-a32 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=ARMV8 %s
319// RUN: %clang -target armv8 -mthumb -mcpu=cortex-a32 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=ARMV8 %s
Sjoerd Meijerb3b81472016-06-03 08:47:56 +0000320// RUN: %clang -target armv8 -mcpu=cortex-a35 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=ARMV8 %s
321// RUN: %clang -target armv8 -mthumb -mcpu=cortex-a35 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=ARMV8 %s
James Y Knight3508b222016-04-01 21:33:20 +0000322// RUN: %clang -target armv8 -mcpu=cortex-a53 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=ARMV8 %s
323// RUN: %clang -target armv8 -mthumb -mcpu=cortex-a53 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=ARMV8 %s
Sjoerd Meijerb3b81472016-06-03 08:47:56 +0000324// RUN: %clang -target armv8 -mcpu=cortex-a57 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=ARMV8 %s
325// RUN: %clang -target armv8 -mthumb -mcpu=cortex-a57 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=ARMV8 %s
326// RUN: %clang -target armv8 -mcpu=cortex-a72 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=ARMV8 %s
327// RUN: %clang -target armv8 -mthumb -mcpu=cortex-a72 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=ARMV8 %s
Sjoerd Meijer90df4a72016-06-02 10:48:37 +0000328// RUN: %clang -target armv8 -mcpu=cortex-a73 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=ARMV8 %s
329// RUN: %clang -target armv8 -mthumb -mcpu=cortex-a73 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=ARMV8 %s
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000330// ARMV8:#define __ARM_ARCH_EXT_IDIV__ 1
James Y Knight3508b222016-04-01 21:33:20 +0000331// ARMV8:#define __ARM_FEATURE_DSP 1
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000332// ARMV8:#define __ARM_FP 0xE
Silviu Barangae5690462013-10-21 10:59:33 +0000333
Javed Absar879d18b82015-04-09 14:12:10 +0000334// Test whether predefines are as expected when targeting cortex-r4.
James Y Knight3508b222016-04-01 21:33:20 +0000335// RUN: %clang -target armv7 -mcpu=cortex-r4 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=R4-ARM %s
Javed Absar879d18b82015-04-09 14:12:10 +0000336// R4-ARM-NOT:#define __ARM_ARCH_EXT_IDIV__
James Y Knight3508b222016-04-01 21:33:20 +0000337// R4-ARM:#define __ARM_FEATURE_DSP 1
Richard Barton7dacc242015-10-21 10:03:55 +0000338// R4-ARM-NOT:#define __ARM_FP 0x{{.*}}
Javed Absar879d18b82015-04-09 14:12:10 +0000339
James Y Knight3508b222016-04-01 21:33:20 +0000340// RUN: %clang -target armv7 -mthumb -mcpu=cortex-r4 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=R4-THUMB %s
Javed Absar879d18b82015-04-09 14:12:10 +0000341// R4-THUMB:#define __ARM_ARCH_EXT_IDIV__ 1
James Y Knight3508b222016-04-01 21:33:20 +0000342// R4-THUMB:#define __ARM_FEATURE_DSP 1
Richard Barton7dacc242015-10-21 10:03:55 +0000343// R4-THUMB-NOT:#define __ARM_FP 0x{{.*}}
Javed Absar879d18b82015-04-09 14:12:10 +0000344
345// Test whether predefines are as expected when targeting cortex-r4f.
James Y Knight3508b222016-04-01 21:33:20 +0000346// RUN: %clang -target armv7 -mcpu=cortex-r4f -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=R4F-ARM %s
Javed Absar879d18b82015-04-09 14:12:10 +0000347// R4F-ARM-NOT:#define __ARM_ARCH_EXT_IDIV__
James Y Knight3508b222016-04-01 21:33:20 +0000348// R4F-ARM:#define __ARM_FEATURE_DSP 1
Richard Barton7dacc242015-10-21 10:03:55 +0000349// R4F-ARM:#define __ARM_FP 0xC
Javed Absar879d18b82015-04-09 14:12:10 +0000350
James Y Knight3508b222016-04-01 21:33:20 +0000351// RUN: %clang -target armv7 -mthumb -mcpu=cortex-r4f -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=R4F-THUMB %s
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000352// R4F-THUMB:#define __ARM_ARCH_EXT_IDIV__ 1
James Y Knight3508b222016-04-01 21:33:20 +0000353// R4F-THUMB:#define __ARM_FEATURE_DSP 1
Richard Barton7dacc242015-10-21 10:03:55 +0000354// R4F-THUMB:#define __ARM_FP 0xC
Javed Absar879d18b82015-04-09 14:12:10 +0000355
Silviu Barangae5690462013-10-21 10:59:33 +0000356// Test whether predefines are as expected when targeting cortex-r5.
James Y Knight3508b222016-04-01 21:33:20 +0000357// RUN: %clang -target armv7 -mcpu=cortex-r5 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=R5 %s
358// RUN: %clang -target armv7 -mthumb -mcpu=cortex-r5 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=R5 %s
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000359// R5:#define __ARM_ARCH_EXT_IDIV__ 1
James Y Knight3508b222016-04-01 21:33:20 +0000360// R5:#define __ARM_FEATURE_DSP 1
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000361// R5:#define __ARM_FP 0xC
Silviu Barangae5690462013-10-21 10:59:33 +0000362
Pablo Barrio2a35ff02016-03-16 10:21:04 +0000363// Test whether predefines are as expected when targeting cortex-r7 and cortex-r8.
James Y Knight3508b222016-04-01 21:33:20 +0000364// RUN: %clang -target armv7 -mcpu=cortex-r7 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=R7-R8 %s
365// RUN: %clang -target armv7 -mthumb -mcpu=cortex-r7 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=R7-R8 %s
366// RUN: %clang -target armv7 -mcpu=cortex-r8 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=R7-R8 %s
367// RUN: %clang -target armv7 -mthumb -mcpu=cortex-r8 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=R7-R8 %s
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000368// R7-R8:#define __ARM_ARCH_EXT_IDIV__ 1
James Y Knight3508b222016-04-01 21:33:20 +0000369// R7-R8:#define __ARM_FEATURE_DSP 1
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000370// R7-R8:#define __ARM_FP 0xE
Bradley Smithd86d6702015-02-18 10:34:48 +0000371
Silviu Barangae5690462013-10-21 10:59:33 +0000372// Test whether predefines are as expected when targeting cortex-m0.
James Y Knight3508b222016-04-01 21:33:20 +0000373// RUN: %clang -target armv7 -mthumb -mcpu=cortex-m0 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=M0-THUMB %s
374// RUN: %clang -target armv7 -mthumb -mcpu=cortex-m0plus -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=M0-THUMB %s
375// RUN: %clang -target armv7 -mthumb -mcpu=cortex-m1 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=M0-THUMB %s
376// RUN: %clang -target armv7 -mthumb -mcpu=sc000 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=M0-THUMB %s
Silviu Barangae5690462013-10-21 10:59:33 +0000377// M0-THUMB-NOT:#define __ARM_ARCH_EXT_IDIV__
Sergey Dmitrouk745f5302014-11-25 08:57:36 +0000378// M0-THUMB-NOT:#define __ARM_FEATURE_DSP
Richard Barton7dacc242015-10-21 10:03:55 +0000379// M0-THUMB-NOT:#define __ARM_FP 0x{{.*}}
Silviu Barangae5690462013-10-21 10:59:33 +0000380
381// Test whether predefines are as expected when targeting cortex-m3.
James Y Knight3508b222016-04-01 21:33:20 +0000382// RUN: %clang -target armv7 -mthumb -mcpu=cortex-m3 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=M3-THUMB %s
383// RUN: %clang -target armv7 -mthumb -mcpu=sc300 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=M3-THUMB %s
Silviu Barangae5690462013-10-21 10:59:33 +0000384// M3-THUMB:#define __ARM_ARCH_EXT_IDIV__ 1
Sergey Dmitrouk745f5302014-11-25 08:57:36 +0000385// M3-THUMB-NOT:#define __ARM_FEATURE_DSP
Richard Barton7dacc242015-10-21 10:03:55 +0000386// M3-THUMB-NOT:#define __ARM_FP 0x{{.*}}
Silviu Barangae5690462013-10-21 10:59:33 +0000387
388// Test whether predefines are as expected when targeting cortex-m4.
James Y Knight3508b222016-04-01 21:33:20 +0000389// RUN: %clang -target armv7 -mthumb -mcpu=cortex-m4 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=M4-THUMB %s
Silviu Barangae5690462013-10-21 10:59:33 +0000390// M4-THUMB:#define __ARM_ARCH_EXT_IDIV__ 1
James Y Knight3508b222016-04-01 21:33:20 +0000391// M4-THUMB:#define __ARM_FEATURE_DSP 1
Richard Barton7dacc242015-10-21 10:03:55 +0000392// M4-THUMB:#define __ARM_FP 0x6
Ana Pazosdd6068d2013-12-06 22:43:17 +0000393
Oliver Stannardbfd3ea32014-10-01 09:03:02 +0000394// Test whether predefines are as expected when targeting cortex-m7.
James Y Knight3508b222016-04-01 21:33:20 +0000395// RUN: %clang -target armv7 -mthumb -mcpu=cortex-m7 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=M7-THUMB %s
Oliver Stannardbfd3ea32014-10-01 09:03:02 +0000396// M7-THUMB:#define __ARM_ARCH_EXT_IDIV__ 1
James Y Knight3508b222016-04-01 21:33:20 +0000397// M7-THUMB:#define __ARM_FEATURE_DSP 1
Richard Barton7dacc242015-10-21 10:03:55 +0000398// M7-THUMB:#define __ARM_FP 0xE
Tim Northoverc67803f2016-12-21 20:49:43 +0000399// M7-THUMB:#define __ARM_FPV5__ 1
Oliver Stannardbfd3ea32014-10-01 09:03:02 +0000400
Sanne Wouda0479e692017-02-20 10:37:01 +0000401// Test whether predefines are as expected when targeting v8m cores
402// RUN: %clang -target arm -mcpu=cortex-m23 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=M23 %s
403// M23: #define __ARM_ARCH 8
404// M23: #define __ARM_ARCH_8M_BASE__ 1
405// M23: #define __ARM_ARCH_EXT_IDIV__ 1
406// M23-NOT: __ARM_ARCH_ISA_ARM
407// M23: #define __ARM_ARCH_ISA_THUMB 1
408// M23: #define __ARM_ARCH_PROFILE 'M'
409// M23-NOT: __ARM_FEATURE_CRC32
410// M23-NOT: __ARM_FEATURE_DSP
411// M23-NOT: __ARM_FP 0x{{.*}}
412// M23-NOT: __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1
413
414// RUN: %clang -target arm -mcpu=cortex-m33 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=M33 %s
415// M33: #define __ARM_ARCH 8
416// M33: #define __ARM_ARCH_8M_MAIN__ 1
417// M33: #define __ARM_ARCH_EXT_IDIV__ 1
418// M33-NOT: __ARM_ARCH_ISA_ARM
419// M33: #define __ARM_ARCH_ISA_THUMB 2
420// M33: #define __ARM_ARCH_PROFILE 'M'
421// M33-NOT: __ARM_FEATURE_CRC32
422// M33: #define __ARM_FEATURE_DSP 1
423// M33: #define __ARM_FP 0x6
424// M33: #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1
425
Ana Pazosdd6068d2013-12-06 22:43:17 +0000426// Test whether predefines are as expected when targeting krait.
James Y Knight3508b222016-04-01 21:33:20 +0000427// RUN: %clang -target armv7 -mcpu=krait -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=KRAIT %s
428// RUN: %clang -target armv7 -mthumb -mcpu=krait -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=KRAIT %s
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000429// KRAIT:#define __ARM_ARCH_EXT_IDIV__ 1
James Y Knight3508b222016-04-01 21:33:20 +0000430// KRAIT:#define __ARM_FEATURE_DSP 1
Artyom Skrobov59f43bb2016-03-23 13:32:33 +0000431// KRAIT:#define __ARM_VFPV4__ 1
Vladimir Sukharevc6dab752015-05-14 08:25:18 +0000432
James Y Knight3508b222016-04-01 21:33:20 +0000433// RUN: %clang -target armv8.1a-none-none-eabi -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=CHECK-V81A %s
434// CHECK-V81A: #define __ARM_ARCH 8
435// CHECK-V81A: #define __ARM_ARCH_8_1A__ 1
Vladimir Sukharevc6dab752015-05-14 08:25:18 +0000436// CHECK-V81A: #define __ARM_ARCH_PROFILE 'A'
James Y Knight3508b222016-04-01 21:33:20 +0000437// CHECK-V81A: #define __ARM_FEATURE_QRDMX 1
Richard Barton7dacc242015-10-21 10:03:55 +0000438// CHECK-V81A: #define __ARM_FP 0xE
Oliver Stannard3086c042016-02-11 16:05:52 +0000439
James Y Knight3508b222016-04-01 21:33:20 +0000440// RUN: %clang -target armv8.2a-none-none-eabi -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=CHECK-V82A %s
441// CHECK-V82A: #define __ARM_ARCH 8
442// CHECK-V82A: #define __ARM_ARCH_8_2A__ 1
Oliver Stannard3086c042016-02-11 16:05:52 +0000443// CHECK-V82A: #define __ARM_ARCH_PROFILE 'A'
Sjoerd Meijercb75f612017-06-30 08:07:34 +0000444// CHECK-V82A: #define __ARM_FEATURE_QRDMX 1
Oliver Stannard3086c042016-02-11 16:05:52 +0000445// CHECK-V82A: #define __ARM_FP 0xE