blob: 462d4234ae6c1a0020c19a5d2b1e51a757c31589 [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 }
246 module complex {
247 header "complex"
248 export *
249 }
250 module condition_variable {
251 header "condition_variable"
252 export *
253 }
Richard Smith31cfef02014-05-21 00:33:49 +0000254 module deque {
255 header "deque"
256 export initializer_list
257 export *
258 }
259 module exception {
260 header "exception"
261 export *
262 }
263 module forward_list {
264 header "forward_list"
265 export initializer_list
266 export *
267 }
268 module fstream {
269 header "fstream"
270 export *
271 }
272 module functional {
273 header "functional"
274 export *
275 }
276 module future {
277 header "future"
278 export *
279 }
280 module initializer_list {
281 header "initializer_list"
282 export *
283 }
284 module iomanip {
285 header "iomanip"
286 export *
287 }
288 module ios {
289 header "ios"
290 export iosfwd
291 export *
292 }
293 module iosfwd {
294 header "iosfwd"
295 export *
296 }
297 module iostream {
298 header "iostream"
299 export ios
300 export streambuf
301 export istream
302 export ostream
303 export *
304 }
305 module istream {
306 header "istream"
307 // FIXME: should re-export ios, streambuf?
308 export *
309 }
310 module iterator {
311 header "iterator"
312 export *
313 }
314 module limits {
315 header "limits"
316 export *
317 }
318 module list {
319 header "list"
320 export initializer_list
321 export *
322 }
323 module locale {
324 header "locale"
325 export *
326 }
327 module map {
328 header "map"
329 export initializer_list
330 export *
331 }
332 module memory {
333 header "memory"
334 export *
335 }
336 module mutex {
337 header "mutex"
338 export *
339 }
340 module new {
341 header "new"
342 export *
343 }
344 module numeric {
345 header "numeric"
346 export *
347 }
Eric Fiselier006458b2016-12-05 23:33:19 +0000348 module optional {
349 header "optional"
350 export *
351 }
Richard Smith31cfef02014-05-21 00:33:49 +0000352 module ostream {
353 header "ostream"
354 // FIXME: should re-export ios, streambuf?
355 export *
356 }
357 module queue {
358 header "queue"
359 export initializer_list
360 export *
361 }
362 module random {
363 header "random"
364 export initializer_list
365 export *
366 }
367 module ratio {
368 header "ratio"
369 export *
370 }
371 module regex {
372 header "regex"
373 export initializer_list
374 export *
375 }
376 module scoped_allocator {
377 header "scoped_allocator"
378 export *
379 }
380 module set {
381 header "set"
382 export initializer_list
383 export *
384 }
385 module sstream {
386 header "sstream"
387 // FIXME: should re-export istream, ostream, ios, streambuf, string?
388 export *
389 }
390 module stack {
391 header "stack"
392 export initializer_list
393 export *
394 }
395 module stdexcept {
396 header "stdexcept"
397 export *
398 }
399 module streambuf {
400 header "streambuf"
401 export *
402 }
403 module string {
404 header "string"
405 export initializer_list
Eric Fiselier2d357f72016-12-05 23:53:23 +0000406 export string_view
407 export __string
408 export *
409 }
410 module string_view {
411 header "string_view"
412 export initializer_list
413 export __string
Richard Smith31cfef02014-05-21 00:33:49 +0000414 export *
415 }
416 module strstream {
417 header "strstream"
Eric Fiselierbdc20862016-12-05 23:16:07 +0000418 export *
Richard Smith31cfef02014-05-21 00:33:49 +0000419 }
420 module system_error {
421 header "system_error"
422 export *
423 }
424 module thread {
425 header "thread"
426 export *
427 }
428 module tuple {
429 header "tuple"
430 export *
431 }
432 module type_traits {
433 header "type_traits"
434 export *
435 }
436 module typeindex {
437 header "typeindex"
438 export *
439 }
440 module typeinfo {
441 header "typeinfo"
442 export *
443 }
444 module unordered_map {
445 header "unordered_map"
446 export initializer_list
447 export *
448 }
449 module unordered_set {
450 header "unordered_set"
451 export initializer_list
452 export *
453 }
454 module utility {
455 header "utility"
456 export initializer_list
457 export *
458 }
459 module valarray {
460 header "valarray"
461 export initializer_list
462 export *
463 }
Eric Fiselier006458b2016-12-05 23:33:19 +0000464 module variant {
465 header "variant"
466 export *
467 }
Richard Smith31cfef02014-05-21 00:33:49 +0000468 module vector {
469 header "vector"
470 export initializer_list
471 export *
472 }
473
474 // FIXME: These should be private.
475 module __bit_reference { header "__bit_reference" export * }
Richard Smith31cfef02014-05-21 00:33:49 +0000476 module __debug { header "__debug" export * }
477 module __functional_base { header "__functional_base" export * }
478 module __hash_table { header "__hash_table" export * }
479 module __locale { header "__locale" export * }
480 module __mutex_base { header "__mutex_base" export * }
481 module __split_buffer { header "__split_buffer" export * }
482 module __sso_allocator { header "__sso_allocator" export * }
483 module __std_stream { header "__std_stream" export * }
Eric Fiselier2d357f72016-12-05 23:53:23 +0000484 module __string { header "__string" export * }
Richard Smith31cfef02014-05-21 00:33:49 +0000485 module __tree { header "__tree" export * }
486 module __tuple { header "__tuple" export * }
487 module __undef_min_max { header "__undef_min_max" export * }
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000488
489 module experimental {
Eric Fiselier92ae1af2016-12-06 01:34:24 +0000490 requires cplusplus11
491
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000492 module algorithm {
493 header "experimental/algorithm"
494 export *
495 }
496 module any {
497 header "experimental/any"
498 export *
499 }
500 module chrono {
501 header "experimental/chrono"
502 export *
503 }
Eric Fiselierf0426152017-05-25 23:39:29 +0000504 module coroutine {
505 header "experimental/coroutine"
506 export *
507 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000508 module deque {
509 header "experimental/deque"
510 export *
511 }
512 module dynarray {
513 header "experimental/dynarray"
514 export *
515 }
516 module filesystem {
517 header "experimental/filesystem"
518 export *
519 }
520 module forward_list {
521 header "experimental/forward_list"
522 export *
523 }
524 module functional {
525 header "experimental/functional"
526 export *
527 }
528 module iterator {
529 header "experimental/iterator"
530 export *
531 }
532 module list {
533 header "experimental/list"
534 export *
535 }
536 module map {
537 header "experimental/map"
538 export *
539 }
540 module memory_resource {
541 header "experimental/memory_resource"
542 export *
543 }
544 module numeric {
545 header "experimental/numeric"
546 export *
547 }
548 module optional {
549 header "experimental/optional"
550 export *
551 }
552 module propagate_const {
553 header "experimental/propagate_const"
554 export *
555 }
556 module ratio {
557 header "experimental/ratio"
558 export *
559 }
560 module regex {
561 header "experimental/regex"
562 export *
563 }
564 module set {
565 header "experimental/set"
566 export *
567 }
568 module string {
569 header "experimental/string"
570 export *
571 }
572 module string_view {
573 header "experimental/string_view"
574 export *
575 }
576 module system_error {
577 header "experimental/system_error"
578 export *
579 }
580 module tuple {
581 header "experimental/tuple"
582 export *
583 }
584 module type_traits {
585 header "experimental/type_traits"
586 export *
587 }
588 module unordered_map {
589 header "experimental/unordered_map"
590 export *
591 }
592 module unordered_set {
593 header "experimental/unordered_set"
594 export *
595 }
596 module utility {
597 header "experimental/utility"
598 export *
599 }
600 module vector {
601 header "experimental/vector"
602 export *
603 }
604 // FIXME these should be private
605 module __memory {
606 header "experimental/__memory"
607 export *
608 }
609 } // end experimental
Richard Smith31cfef02014-05-21 00:33:49 +0000610}