blob: 032eea65918a3b4e77b1cacdd9ee895b4c2be9b8 [file] [log] [blame]
Douglas Gregor84febf42011-11-16 05:16:30 +00001// RUN: rm -rf %t
Richard Smith47972af2015-06-16 00:08:24 +00002// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c -verify -fmodules-cache-path=%t -I %S/Inputs %s
Richard Smitha7c535b2015-07-22 01:28:05 +00003// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c -verify -fmodules-cache-path=%t -I %S/Inputs %s -DALT
Richard Smith47972af2015-06-16 00:08:24 +00004// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c -verify -fmodules-cache-path=%t -I %S/Inputs %s -detailed-preprocessing-record
Richard Smith47972af2015-06-16 00:08:24 +00005// RUN: not %clang_cc1 -E -fmodules -fimplicit-module-maps -x objective-c -fmodules-cache-path=%t -I %S/Inputs %s | FileCheck -check-prefix CHECK-PREPROCESSED %s
Richard Smith79bf9202015-08-24 03:33:22 +00006//
7// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c++ -verify -fmodules-cache-path=%t -I %S/Inputs %s
8// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c++ -verify -fmodules-cache-path=%t -I %S/Inputs %s -DALT
9// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c++ -verify -fmodules-cache-path=%t -I %S/Inputs %s -detailed-preprocessing-record
10// RUN: not %clang_cc1 -E -fmodules -fimplicit-module-maps -x objective-c++ -fmodules-cache-path=%t -I %S/Inputs %s | FileCheck -check-prefix CHECK-PREPROCESSED %s
11//
12// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -DLOCAL_VISIBILITY -fmodules-local-submodule-visibility -x objective-c++ -verify -fmodules-cache-path=%t -I %S/Inputs %s
Douglas Gregorda82e702012-01-03 19:32:59 +000013// FIXME: When we have a syntax for modules in C, use that.
Douglas Gregor5a4649b2012-10-11 00:46:49 +000014// These notes come from headers in modules, and are bogus.
Douglas Gregor5968b1b2012-10-11 21:07:39 +000015
Andy Gibbsfcc699a2013-04-17 08:06:46 +000016// FIXME: expected-note@Inputs/macros_left.h:11{{previous definition is here}}
17// FIXME: expected-note@Inputs/macros_right.h:12{{previous definition is here}}
18// expected-note@Inputs/macros_right.h:12{{expanding this definition of 'LEFT_RIGHT_DIFFERENT'}}
Andy Gibbsfcc699a2013-04-17 08:06:46 +000019// expected-note@Inputs/macros_right.h:13{{expanding this definition of 'LEFT_RIGHT_DIFFERENT2'}}
20// expected-note@Inputs/macros_left.h:14{{other definition of 'LEFT_RIGHT_DIFFERENT'}}
Douglas Gregor4a69c2e2011-09-01 17:04:32 +000021
Douglas Gregorc50d4922012-12-11 22:11:52 +000022@import macros;
Douglas Gregor4a69c2e2011-09-01 17:04:32 +000023
24#ifndef INTEGER
25# error INTEGER macro should be visible
26#endif
27
28#ifdef FLOAT
29# error FLOAT macro should not be visible
30#endif
31
32#ifdef MODULE
33# error MODULE macro should not be visible
34#endif
35
Richard Smith2a553082015-04-23 22:58:06 +000036#ifndef INDIRECTLY_IN_MACROS
37# error INDIRECTLY_IN_MACROS should be visible
38#endif
39
Douglas Gregor21931ef2011-09-14 23:13:09 +000040// CHECK-PREPROCESSED: double d
Douglas Gregor4a69c2e2011-09-01 17:04:32 +000041double d;
42DOUBLE *dp = &d;
43
Douglas Gregor663b48f2012-01-03 19:48:16 +000044#__public_macro WIBBLE // expected-error{{no macro named 'WIBBLE'}}
Douglas Gregor4a69c2e2011-09-01 17:04:32 +000045
Douglas Gregord7910e92011-09-14 22:14:14 +000046void f() {
Douglas Gregor21931ef2011-09-14 23:13:09 +000047 // CHECK-PREPROCESSED: int i = INTEGER;
Douglas Gregord7910e92011-09-14 22:14:14 +000048 int i = INTEGER; // the value was exported, the macro was not.
Douglas Gregorc83de302012-09-25 15:44:52 +000049 i += macros; // expanded from __MODULE__ within the 'macros' module.
Douglas Gregord7910e92011-09-14 22:14:14 +000050}
Douglas Gregorc83de302012-09-25 15:44:52 +000051
52#ifdef __MODULE__
53# error Not building a module!
54#endif
55
56#if __building_module(macros)
57# error Not building a module
58#endif
Douglas Gregor5a4649b2012-10-11 00:46:49 +000059
60// None of the modules we depend on have been imported, and therefore
61// their macros should not be visible.
62#ifdef LEFT
63# error LEFT should not be visible
64#endif
65
66#ifdef RIGHT
67# error RIGHT should not be visible
68#endif
69
70#ifdef TOP
71# error TOP should not be visible
72#endif
73
Richard Smith938d7012015-09-16 00:55:50 +000074#undef INTEGER
75#define INTEGER int
76
Douglas Gregor5a4649b2012-10-11 00:46:49 +000077// Import left module (which also imports top)
Douglas Gregorc50d4922012-12-11 22:11:52 +000078@import macros_left;
Douglas Gregor5a4649b2012-10-11 00:46:49 +000079
Richard Smith938d7012015-09-16 00:55:50 +000080INTEGER my_integer = 0;
81
Douglas Gregor5a4649b2012-10-11 00:46:49 +000082#ifndef LEFT
83# error LEFT should be visible
84#endif
85
86#ifdef RIGHT
87# error RIGHT should not be visible
88#endif
89
90#ifndef TOP
91# error TOP should be visible
92#endif
93
Richard Smith49f906a2014-03-01 00:08:04 +000094#ifdef TOP_LEFT_UNDEF
95# error TOP_LEFT_UNDEF should not be defined
Douglas Gregor5a4649b2012-10-11 00:46:49 +000096#endif
97
98void test1() {
99 int i;
100 TOP_RIGHT_REDEF *ip = &i;
101}
102
Argyrios Kyrtzidis09796b92013-03-27 01:25:19 +0000103#define LEFT_RIGHT_DIFFERENT2 double // FIXME: expected-warning{{'LEFT_RIGHT_DIFFERENT2' macro redefined}} \
104 // expected-note{{other definition of 'LEFT_RIGHT_DIFFERENT2'}}
Douglas Gregor5a4649b2012-10-11 00:46:49 +0000105
106// Import right module (which also imports top)
Douglas Gregorc50d4922012-12-11 22:11:52 +0000107@import macros_right;
Douglas Gregor5a4649b2012-10-11 00:46:49 +0000108
109#undef LEFT_RIGHT_DIFFERENT3
110
111#ifndef LEFT
112# error LEFT should be visible
113#endif
114
115#ifndef RIGHT
116# error RIGHT should be visible
117#endif
118
119#ifndef TOP
120# error TOP should be visible
121#endif
122
Douglas Gregor5a4649b2012-10-11 00:46:49 +0000123void test2() {
124 int i;
125 float f;
126 double d;
Richard Smith49f906a2014-03-01 00:08:04 +0000127 TOP_RIGHT_REDEF *fp = &f; // ok, right's definition overrides top's definition
Douglas Gregor5a4649b2012-10-11 00:46:49 +0000128
Argyrios Kyrtzidis09796b92013-03-27 01:25:19 +0000129 LEFT_RIGHT_IDENTICAL *ip = &i;
130 LEFT_RIGHT_DIFFERENT *ip2 = &i; // expected-warning{{ambiguous expansion of macro 'LEFT_RIGHT_DIFFERENT'}}
131 LEFT_RIGHT_DIFFERENT2 *ip3 = &i; // expected-warning{{ambiguous expansion of macro 'LEFT_RIGHT_DIFFERENT2}}
Douglas Gregor5a4649b2012-10-11 00:46:49 +0000132 int LEFT_RIGHT_DIFFERENT3;
133}
134
135#define LEFT_RIGHT_DIFFERENT double // FIXME: expected-warning{{'LEFT_RIGHT_DIFFERENT' macro redefined}}
136
137void test3() {
138 double d;
139 LEFT_RIGHT_DIFFERENT *dp = &d; // okay
Argyrios Kyrtzidis0c2f30b2013-04-03 17:39:30 +0000140 int x = FN_ADD(1,2);
Douglas Gregor5a4649b2012-10-11 00:46:49 +0000141}
Douglas Gregorcfa46a82012-10-12 00:16:50 +0000142
143#ifndef TOP_RIGHT_UNDEF
144# error TOP_RIGHT_UNDEF should still be defined
145#endif
146
Richard Smith49faf9f2014-08-09 01:24:07 +0000147@import macros_bottom;
148
149TOP_DEF_RIGHT_UNDEF *TDRUf() { return TDRUp; }
150
Douglas Gregorc50d4922012-12-11 22:11:52 +0000151@import macros_right.undef;
Douglas Gregorcfa46a82012-10-12 00:16:50 +0000152
Richard Smith49faf9f2014-08-09 01:24:07 +0000153int TOP_DEF_RIGHT_UNDEF; // ok, no longer defined
154
Richard Smithee977932015-05-01 21:22:17 +0000155#ifdef LOCAL_VISIBILITY
156// TOP_RIGHT_UNDEF should not be undefined, because macros_right.undef does
157// not undefine macros_right's macro.
158# ifndef TOP_RIGHT_UNDEF
159# error TOP_RIGHT_UNDEF should still be defined
160# endif
161#else
162// When macros_right.undef is built and local submodule visibility is not
163// enabled, macros_top is visible because the state from building
164// macros_right leaks through, so macros_right.undef undefines macros_top's
165// macro.
166# ifdef TOP_RIGHT_UNDEF
167# error TOP_RIGHT_UNDEF should not be defined
168# endif
Douglas Gregorcfa46a82012-10-12 00:16:50 +0000169#endif
Richard Smith49f906a2014-03-01 00:08:04 +0000170
Richard Smitha7c535b2015-07-22 01:28:05 +0000171#ifdef ALT
172int tmp = TOP_OTHER_REDEF1;
173#endif
174
Richard Smith49f906a2014-03-01 00:08:04 +0000175@import macros_other;
176
177#ifndef TOP_OTHER_UNDEF1
178# error TOP_OTHER_UNDEF1 should still be defined
179#endif
180
181#ifndef TOP_OTHER_UNDEF2
182# error TOP_OTHER_UNDEF2 should still be defined
183#endif
Richard Smitha7c535b2015-07-22 01:28:05 +0000184#pragma clang __debug macro TOP_OTHER_REDEF1
Richard Smith49f906a2014-03-01 00:08:04 +0000185#ifndef TOP_OTHER_REDEF1
186# error TOP_OTHER_REDEF1 should still be defined
187#endif
188int n1 = TOP_OTHER_REDEF1; // expected-warning{{ambiguous expansion of macro 'TOP_OTHER_REDEF1'}}
Richard Smitha7c535b2015-07-22 01:28:05 +0000189// expected-note@macros_other.h:4 {{expanding this definition}}
190// expected-note@macros_top.h:19 {{other definition}}
Richard Smith49f906a2014-03-01 00:08:04 +0000191
192#ifndef TOP_OTHER_REDEF2
193# error TOP_OTHER_REDEF2 should still be defined
194#endif
195int n2 = TOP_OTHER_REDEF2; // ok
196
197int n3 = TOP_OTHER_DEF_RIGHT_UNDEF; // ok