blob: 3b66390fb8ba9fa9dac45948b153dff44f36dd3a [file] [log] [blame]
Eric Fiselier62b959c2016-12-08 06:37:41 +00001// define the module for __config outside of the top level 'std' module
2// since __config may be included from C headers which may create an
3// include cycle.
4module std_config [system] [extern_c] {
5 header "__config"
6}
7
Richard Smith31cfef02014-05-21 00:33:49 +00008module std [system] {
Eric Fiselier62b959c2016-12-08 06:37:41 +00009 export std_config
Richard Smith31cfef02014-05-21 00:33:49 +000010 // FIXME: The standard does not require that each of these submodules
11 // re-exports its imported modules. We should provide an alternative form of
12 // export that issues a warning if a name from the submodule is used, and
13 // use that to provide a 'strict mode' for libc++.
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000014
15 // Deprecated C-compatibility headers. These can all be included from within
16 // an 'extern "C"' context.
17 module depr [extern_c] {
18 // <assert.h> provided by C library.
19 module ctype_h {
20 header "ctype.h"
21 export *
22 }
23 module errno_h {
24 header "errno.h"
25 export *
26 }
27 // <fenv.h> provided by C library.
28 // <float.h> provided by compiler or C library.
29 module inttypes_h {
30 header "inttypes.h"
31 export stdint_h
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000032 export *
33 }
34 // <iso646.h> provided by compiler.
35 // <limits.h> provided by compiler or C library.
Eric Fiselierc6213332016-11-19 01:14:15 +000036 module locale_h {
37 header "locale.h"
Eric Fiselierc6213332016-11-19 01:14:15 +000038 export *
39 }
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000040 module math_h {
41 header "math.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000042 export *
43 }
44 module setjmp_h {
45 header "setjmp.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000046 export *
47 }
48 // FIXME: <stdalign.h> is missing.
49 // <signal.h> provided by C library.
50 // <stdarg.h> provided by compiler.
Eric Fiselier5163fa12016-12-06 09:48:32 +000051 // <stdbool.h> provided by compiler.
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000052 module stddef_h {
53 // <stddef.h>'s __need_* macros require textual inclusion.
54 textual header "stddef.h"
55 }
Eric Fiseliercbda4fb2016-11-22 20:05:19 +000056 module stdint_h {
57 header "stdint.h"
58 export *
59 // FIXME: This module only exists on OS X and for some reason the
60 // wildcard above doesn't export it.
61 export Darwin.C.stdint
62 }
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000063 module stdio_h {
64 // <stdio.h>'s __need_* macros require textual inclusion.
65 textual header "stdio.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000066 export *
Eric Fiselier3b733092016-12-06 07:40:46 +000067 export Darwin.C.stdio
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000068 }
69 module stdlib_h {
70 // <stdlib.h>'s __need_* macros require textual inclusion.
71 textual header "stdlib.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000072 export *
73 }
74 module string_h {
75 header "string.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000076 export *
77 }
78 // FIXME: <uchar.h> is missing.
79 // <time.h> provided by C library.
80 module wchar_h {
81 // <wchar.h>'s __need_* macros require textual inclusion.
82 textual header "wchar.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000083 export *
84 }
85 module wctype_h {
86 header "wctype.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000087 export *
88 }
89 }
90
91 // <complex.h> and <tgmath.h> are not C headers in any real sense, do not
92 // allow their use in extern "C" contexts.
93 module complex_h {
94 header "complex.h"
95 export ccomplex
96 export *
97 }
98 module tgmath_h {
99 header "tgmath.h"
100 export ccomplex
101 export cmath
102 export *
103 }
104
105 // C compatibility headers.
106 module compat {
107 module cassert {
108 // <cassert>'s use of NDEBUG requires textual inclusion.
109 textual header "cassert"
110 }
111 module ccomplex {
112 header "ccomplex"
113 export complex
114 export *
115 }
116 module cctype {
117 header "cctype"
118 export *
119 }
120 module cerrno {
121 header "cerrno"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000122 export *
123 }
124 module cfenv {
125 header "cfenv"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000126 export *
127 }
128 module cfloat {
129 header "cfloat"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000130 export *
131 }
132 module cinttypes {
133 header "cinttypes"
134 export cstdint
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000135 export *
136 }
137 module ciso646 {
138 header "ciso646"
139 export *
140 }
141 module climits {
142 header "climits"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000143 export *
144 }
145 module clocale {
146 header "clocale"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000147 export *
148 }
149 module cmath {
150 header "cmath"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000151 export *
152 }
153 module csetjmp {
154 header "csetjmp"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000155 export *
156 }
157 module csignal {
158 header "csignal"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000159 export *
160 }
161 // FIXME: <cstdalign> is missing.
162 module cstdarg {
163 header "cstdarg"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000164 export *
165 }
166 module cstdbool {
167 header "cstdbool"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000168 export *
169 }
170 module cstddef {
171 header "cstddef"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000172 export *
173 }
174 module cstdint {
175 header "cstdint"
Eric Fiseliercbda4fb2016-11-22 20:05:19 +0000176 export depr.stdint_h
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000177 export *
178 }
179 module cstdio {
180 header "cstdio"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000181 export *
182 }
183 module cstdlib {
184 header "cstdlib"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000185 export *
186 }
187 module cstring {
188 header "cstring"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000189 export *
190 }
191 module ctgmath {
192 header "ctgmath"
193 export ccomplex
194 export cmath
195 export *
196 }
197 module ctime {
198 header "ctime"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000199 export *
200 }
201 // FIXME: <cuchar> is missing.
202 module cwchar {
203 header "cwchar"
Eric Fiselier3b733092016-12-06 07:40:46 +0000204 export depr.stdio_h
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000205 export *
206 }
207 module cwctype {
208 header "cwctype"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000209 export *
210 }
211 }
212
Richard Smith31cfef02014-05-21 00:33:49 +0000213 module algorithm {
214 header "algorithm"
215 export initializer_list
216 export *
217 }
Eric Fiselier006458b2016-12-05 23:33:19 +0000218 module any {
219 header "any"
220 export *
221 }
Richard Smith31cfef02014-05-21 00:33:49 +0000222 module array {
223 header "array"
224 export initializer_list
225 export *
226 }
227 module atomic {
228 header "atomic"
229 export *
Richard Smith31cfef02014-05-21 00:33:49 +0000230 }
231 module bitset {
232 header "bitset"
233 export string
234 export iosfwd
235 export *
236 }
237 // No submodule for cassert. It fundamentally needs repeated, textual inclusion.
Richard Smith31cfef02014-05-21 00:33:49 +0000238 module chrono {
239 header "chrono"
240 export *
241 }
Richard Smith31cfef02014-05-21 00:33:49 +0000242 module codecvt {
243 header "codecvt"
244 export *
245 }
Eric Fiseliere0074fc2018-04-06 21:37:23 +0000246 module compare {
247 header "compare"
248 export *
249 }
Richard Smith31cfef02014-05-21 00:33:49 +0000250 module complex {
251 header "complex"
252 export *
253 }
254 module condition_variable {
255 header "condition_variable"
256 export *
257 }
Richard Smith31cfef02014-05-21 00:33:49 +0000258 module deque {
259 header "deque"
260 export initializer_list
261 export *
262 }
263 module exception {
264 header "exception"
265 export *
266 }
Eric Fiselier02cea5e2018-07-27 03:07:09 +0000267 module filesystem {
268 header "filesystem"
269 export *
270 }
Richard Smith31cfef02014-05-21 00:33:49 +0000271 module forward_list {
272 header "forward_list"
273 export initializer_list
274 export *
275 }
276 module fstream {
277 header "fstream"
278 export *
279 }
280 module functional {
281 header "functional"
282 export *
283 }
284 module future {
285 header "future"
286 export *
287 }
288 module initializer_list {
289 header "initializer_list"
290 export *
291 }
292 module iomanip {
293 header "iomanip"
294 export *
295 }
296 module ios {
297 header "ios"
298 export iosfwd
299 export *
300 }
301 module iosfwd {
302 header "iosfwd"
303 export *
304 }
305 module iostream {
306 header "iostream"
307 export ios
308 export streambuf
309 export istream
310 export ostream
311 export *
312 }
313 module istream {
314 header "istream"
315 // FIXME: should re-export ios, streambuf?
316 export *
317 }
318 module iterator {
319 header "iterator"
320 export *
321 }
322 module limits {
323 header "limits"
324 export *
325 }
326 module list {
327 header "list"
328 export initializer_list
329 export *
330 }
331 module locale {
332 header "locale"
333 export *
334 }
335 module map {
336 header "map"
337 export initializer_list
338 export *
339 }
340 module memory {
341 header "memory"
342 export *
343 }
344 module mutex {
345 header "mutex"
346 export *
347 }
348 module new {
349 header "new"
350 export *
351 }
352 module numeric {
353 header "numeric"
354 export *
355 }
Eric Fiselier006458b2016-12-05 23:33:19 +0000356 module optional {
357 header "optional"
358 export *
359 }
Richard Smith31cfef02014-05-21 00:33:49 +0000360 module ostream {
361 header "ostream"
362 // FIXME: should re-export ios, streambuf?
363 export *
364 }
365 module queue {
366 header "queue"
367 export initializer_list
368 export *
369 }
370 module random {
371 header "random"
372 export initializer_list
373 export *
374 }
375 module ratio {
376 header "ratio"
377 export *
378 }
379 module regex {
380 header "regex"
381 export initializer_list
382 export *
383 }
384 module scoped_allocator {
385 header "scoped_allocator"
386 export *
387 }
388 module set {
389 header "set"
390 export initializer_list
391 export *
392 }
393 module sstream {
394 header "sstream"
395 // FIXME: should re-export istream, ostream, ios, streambuf, string?
396 export *
397 }
398 module stack {
399 header "stack"
400 export initializer_list
401 export *
402 }
403 module stdexcept {
404 header "stdexcept"
405 export *
406 }
407 module streambuf {
408 header "streambuf"
409 export *
410 }
411 module string {
412 header "string"
413 export initializer_list
Eric Fiselier2d357f72016-12-05 23:53:23 +0000414 export string_view
415 export __string
416 export *
417 }
418 module string_view {
419 header "string_view"
420 export initializer_list
421 export __string
Richard Smith31cfef02014-05-21 00:33:49 +0000422 export *
423 }
424 module strstream {
425 header "strstream"
Eric Fiselierbdc20862016-12-05 23:16:07 +0000426 export *
Richard Smith31cfef02014-05-21 00:33:49 +0000427 }
428 module system_error {
429 header "system_error"
430 export *
431 }
432 module thread {
433 header "thread"
434 export *
435 }
436 module tuple {
437 header "tuple"
438 export *
439 }
440 module type_traits {
441 header "type_traits"
442 export *
443 }
444 module typeindex {
445 header "typeindex"
446 export *
447 }
448 module typeinfo {
449 header "typeinfo"
450 export *
451 }
452 module unordered_map {
453 header "unordered_map"
454 export initializer_list
455 export *
456 }
457 module unordered_set {
458 header "unordered_set"
459 export initializer_list
460 export *
461 }
462 module utility {
463 header "utility"
464 export initializer_list
465 export *
466 }
467 module valarray {
468 header "valarray"
469 export initializer_list
470 export *
471 }
Eric Fiselier006458b2016-12-05 23:33:19 +0000472 module variant {
473 header "variant"
474 export *
475 }
Richard Smith31cfef02014-05-21 00:33:49 +0000476 module vector {
477 header "vector"
478 export initializer_list
479 export *
480 }
Eric Fiseliera604a7d2018-04-04 04:21:54 +0000481 module version {
482 header "version"
483 export *
484 }
Richard Smith31cfef02014-05-21 00:33:49 +0000485
486 // FIXME: These should be private.
487 module __bit_reference { header "__bit_reference" export * }
Richard Smith31cfef02014-05-21 00:33:49 +0000488 module __debug { header "__debug" export * }
Zhihao Yuan1f3533c2018-07-03 03:25:10 +0000489 module __errc { header "__errc" export * }
Richard Smith31cfef02014-05-21 00:33:49 +0000490 module __functional_base { header "__functional_base" export * }
491 module __hash_table { header "__hash_table" export * }
492 module __locale { header "__locale" export * }
493 module __mutex_base { header "__mutex_base" export * }
494 module __split_buffer { header "__split_buffer" export * }
495 module __sso_allocator { header "__sso_allocator" export * }
496 module __std_stream { header "__std_stream" export * }
Eric Fiselier2d357f72016-12-05 23:53:23 +0000497 module __string { header "__string" export * }
Richard Smith31cfef02014-05-21 00:33:49 +0000498 module __tree { header "__tree" export * }
499 module __tuple { header "__tuple" export * }
Eric Fiselierf4433a32017-05-31 22:07:49 +0000500 module __undef_macros { header "__undef_macros" export * }
Erik Pilkingtonc37a3d82018-08-01 01:33:38 +0000501 module __node_handle { header "__node_handle" export * }
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000502
503 module experimental {
Eric Fiselier92ae1af2016-12-06 01:34:24 +0000504 requires cplusplus11
505
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000506 module algorithm {
507 header "experimental/algorithm"
508 export *
509 }
Eric Fiselierf0426152017-05-25 23:39:29 +0000510 module coroutine {
Eric Fiseliere4a3dab2017-05-29 23:17:28 +0000511 requires coroutines
Eric Fiselierf0426152017-05-25 23:39:29 +0000512 header "experimental/coroutine"
513 export *
514 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000515 module deque {
516 header "experimental/deque"
517 export *
518 }
519 module dynarray {
520 header "experimental/dynarray"
521 export *
522 }
523 module filesystem {
524 header "experimental/filesystem"
525 export *
526 }
527 module forward_list {
528 header "experimental/forward_list"
529 export *
530 }
531 module functional {
532 header "experimental/functional"
533 export *
534 }
535 module iterator {
536 header "experimental/iterator"
537 export *
538 }
539 module list {
540 header "experimental/list"
541 export *
542 }
543 module map {
544 header "experimental/map"
545 export *
546 }
547 module memory_resource {
548 header "experimental/memory_resource"
549 export *
550 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000551 module propagate_const {
552 header "experimental/propagate_const"
553 export *
554 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000555 module regex {
556 header "experimental/regex"
557 export *
558 }
Tim Shen158e51b2018-04-23 21:54:06 +0000559 module simd {
560 header "experimental/simd"
561 export *
562 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000563 module set {
564 header "experimental/set"
565 export *
566 }
Marshall Clowd2ad87e2018-07-24 03:01:02 +0000567 module span {
568 header "span"
569 export *
570 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000571 module string {
572 header "experimental/string"
573 export *
574 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000575 module type_traits {
576 header "experimental/type_traits"
577 export *
578 }
579 module unordered_map {
580 header "experimental/unordered_map"
581 export *
582 }
583 module unordered_set {
584 header "experimental/unordered_set"
585 export *
586 }
587 module utility {
588 header "experimental/utility"
589 export *
590 }
591 module vector {
592 header "experimental/vector"
593 export *
594 }
595 // FIXME these should be private
596 module __memory {
597 header "experimental/__memory"
598 export *
599 }
600 } // end experimental
Richard Smith31cfef02014-05-21 00:33:49 +0000601}