eĿlipsis
a language independent preprocessor
 
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Loading...
Searching...
No Matches
ellipsis-token.h
Go to the documentation of this file.
1
8#ifndef ELLIPSIS_TOKEN_H
9#define ELLIPSIS_TOKEN_H 1
10
12#include "utils/ellipsis-str8.h"
14#include "utils/ellipsis-init.h"
15#include "ellipsis-category.h"
16#include "ellipsis-what.h"
17#include <string.h>
18
19extern thread_local bool volatile ellipsis‿contracts‿ignore‿dynamic;
20extern thread_local bool volatile ellipsis‿contracts‿proceed‿dynamic;
21extern thread_local bool volatile ellipsis‿contracts‿verbose‿dynamic;
22
24
25#include <stdio.h>
26#include <stdlib.h>
27#include <stdint.h>
28
29#define STRINGIFY(...) STRINGIFY_(__VA_ARGS__)
30#define STRINGIFY_(...) #__VA_ARGS__
31
32#define ELLIPSIS_CONTRACT_VIOLATION(COUNT, VERB, CTYPE, CSTR, ...) \
33({\
34 static char const contract_format_ ## COUNT[] = \
35 __FILE__ ":" STRINGIFY(__LINE__) ": violation of " CTYPE " `" CSTR "`" __VA_OPT__(", ") __VA_ARGS__ "\n";\
36 (VERB \
37 ? fputs(contract_format_ ## COUNT, stderr) \
38 : 0);\
39 })
40
41#define ELLIPSIS_CONTRACT_IMPL(COUNT, COND, ACTION, VERB, CSTR, CTYPE, ...) \
42(((false) || (COND)) \
43 ? (void)0 \
44 : (ELLIPSIS_CONTRACT_VIOLATION(COUNT, VERB, CTYPE, CSTR __VA_OPT__(,) __VA_ARGS__) \
45 , ((false) \
46 ? (void)0 \
47 : ACTION())))
48
49#define ELLIPSIS_TO_VOIDS(...) ((void*)((uintptr_t)((__VA_ARGS__)-(__VA_ARGS__))))
50
51#define ELLIPSIS_TEST_ICE(...) (false ? ELLIPSIS_TO_VOIDS(__VA_ARGS__) : (ellipsis‿contracts‿is_ice*)nullptr)
52
53#define ELLIPSIS_CONTRACT_ICE_OR_TRUE(...) \
54 _Generic( \
55 ELLIPSIS_TEST_ICE(__VA_ARGS__), \
56 ellipsis‿contracts‿is_ice*: (__VA_ARGS__), \
57 default: true)
58
59#define ELLIPSIS_CONTRACT_CHECK_STATIC(CTYPE, COND, CSTR, ...) \
60 ({\
61 static_assert(ELLIPSIS_CONTRACT_ICE_OR_TRUE(COND), \
62 "compile time violation of " CTYPE " " CSTR \
63 __VA_OPT__(", ") __VA_ARGS__ );\
64 })
65
66#define ELLIPSIS_CONTRACT(COUNT, COND, ACTION, VERB, CSTR, CTYPE, ...) \
67 \
68 do { \
69 _Generic( \
70 ELLIPSIS_TEST_ICE(COND), \
71 ellipsis‿contracts‿is_ice*: ELLIPSIS_CONTRACT_CHECK_STATIC(CTYPE, COND, CSTR __VA_OPT__(,) __VA_ARGS__), \
72 default: ELLIPSIS_CONTRACT_IMPL(COUNT, COND, ACTION, VERB, CSTR, CTYPE __VA_OPT__(,) __VA_ARGS__));\
73 } while(false)
74
75typedef unsigned long long vtype;
76
79
81
114
116#define TOKEN_IS_INNER_CASE(N) case (N): ret |= (arr[N-1] != s[N-1])<<(N-1)
117
123inline
124bool ellipsis‿token‿is_inner(ellipsis‿token const* t, size_t len, char32_t const s[restrict static len]) {
125 unsigned ret = 0;
126 if (t
127 && t->contents
128 && t->contents->length == len) {
129 char32_t const*restrict arr = t->contents->array;
130 switch (len) {
135 ret = !ret;
136 /* downgraded */ break;
137 default:
138 ret = !memcmp(t->contents->array, s, sizeof(char32_t[len]));
139 }
140 }
141 return ret;
142}
143
153#define TOKEN_IS(T, S) ellipsis‿token‿is_inner(T, (sizeof(U"" S U"")/sizeof(U' '))-1, U"" S U"")
154
163inline
165 extern typeof(ellipsis‿token‿destroy) ellipsis‿token‿destroy‿_Insta;
166 ellipsis‿token‿destroy‿_Insta(t);
167}
168
176inline
178 extern typeof(ellipsis‿token‿delete) ellipsis‿token‿delete‿_Insta;
179 ellipsis‿token‿delete‿_Insta(t);
180}
181
187inline
189 extern typeof(ellipsis‿token‿delete_all) ellipsis‿token‿delete_all‿_Insta;
190 ellipsis‿token‿delete_all‿_Insta(t);
191}
192
206inline
207ellipsis‿token* ellipsis‿token‿cpy(ellipsis‿token const* t) {
208 typeof(ellipsis‿token*) DEFER_LOC_ID_0_1;
209 if (__func__[0] == 'm' && __func__[1] == 'a' && __func__[2] == 'i' && __func__[3] == 'n' && !__func__[4]) {
210 DEFER_LOC_ID_0_1 = (typeof(ellipsis‿token*)) {};
211 }
212 [[__maybe_unused__]] register unsigned DEFER_LOC_ID_0_2 = 1U;
213 [[__maybe_unused__]] register bool defer_return_flag = false;
214 if (false) {
215 DEFER_ID_1_1:
216 goto DEFER_END_ID_1_2;
217 } else {
218 (void)0 ;
219 /* defer */
220 [[__maybe_unused__, __deprecated__("dummy variable for better diagnostics")]]
221 unsigned (*DEFER_LOC_ID_1_1)[DEFER_LOC_ID_0_2] = {};
222 if (false) {
223 DEFER_ID_1_2: {
224 [[__maybe_unused__, __deprecated__("invalid termination of a deferred block")]]
225 register bool const defer_return_flag = false, defer_break_flag = false, defer_continue_flag = false;
226 {ELLIPSIS_CONTRACT(1, ((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1), unreachable, false, "((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1)", "assumption", "unable to copy token");}
227 }
228 goto DEFER_ID_1_1;
229 } else
230 (void)0 ;
231 extern typeof(ellipsis‿token‿cpy) ellipsis‿token‿cpy‿_Insta;
232 do {
233 /* return mode 2 */
234 defer_return_flag = true;
235 DEFER_LOC_ID_0_1 = ellipsis‿token‿cpy‿_Insta(t);
236 goto DEFER_ID_1_2;
237 } while(false);
238
239 goto DEFER_ID_1_2;
240 }
241[[__maybe_unused__]] DEFER_END_ID_1_2:;
242 return DEFER_LOC_ID_0_1;
243}
244
258inline
259ellipsis‿token* ellipsis‿token‿deepcpy(ellipsis‿token const* t) {
260 typeof(ellipsis‿token*) DEFER_LOC_ID_0_1;
261 if (__func__[0] == 'm' && __func__[1] == 'a' && __func__[2] == 'i' && __func__[3] == 'n' && !__func__[4]) {
262 DEFER_LOC_ID_0_1 = (typeof(ellipsis‿token*)) {};
263 }
264 [[__maybe_unused__]] register unsigned DEFER_LOC_ID_0_2 = 1U;
265 [[__maybe_unused__]] register bool defer_return_flag = false;
266 if (false) {
267 DEFER_ID_1_3:
268 goto DEFER_END_ID_1_4;
269 } else {
270 (void)0 ;
271 /* defer */
272 [[__maybe_unused__, __deprecated__("dummy variable for better diagnostics")]]
273 unsigned (*DEFER_LOC_ID_1_2)[DEFER_LOC_ID_0_2] = {};
274 if (false) {
275 DEFER_ID_1_4: {
276 [[__maybe_unused__, __deprecated__("invalid termination of a deferred block")]]
277 register bool const defer_return_flag = false, defer_break_flag = false, defer_continue_flag = false;
278 {ELLIPSIS_CONTRACT(2, ((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1), unreachable, false, "((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1)", "assumption", "unable to deep copy token");}
279 }
280 goto DEFER_ID_1_3;
281 } else
282 (void)0 ;
283 extern typeof(ellipsis‿token‿deepcpy) ellipsis‿token‿deepcpy‿_Insta;
284 do {
285 /* return mode 2 */
286 defer_return_flag = true;
287 DEFER_LOC_ID_0_1 = ellipsis‿token‿deepcpy‿_Insta(t);
288 goto DEFER_ID_1_4;
289 } while(false);
290
291 goto DEFER_ID_1_4;
292 }
293[[__maybe_unused__]] DEFER_END_ID_1_4:;
294 return DEFER_LOC_ID_0_1;
295}
296
302inline
304 typeof(ellipsis‿token*) DEFER_LOC_ID_0_1;
305 if (__func__[0] == 'm' && __func__[1] == 'a' && __func__[2] == 'i' && __func__[3] == 'n' && !__func__[4]) {
306 DEFER_LOC_ID_0_1 = (typeof(ellipsis‿token*)) {};
307 }
308 [[__maybe_unused__]] register unsigned DEFER_LOC_ID_0_2 = 1U;
309 [[__maybe_unused__]] register bool defer_return_flag = false;
310 if (false) {
311 DEFER_ID_1_5:
312 goto DEFER_END_ID_1_6;
313 } else {
314 (void)0 ;
315 /* defer */
316 [[__maybe_unused__, __deprecated__("dummy variable for better diagnostics")]]
317 unsigned (*DEFER_LOC_ID_1_3)[DEFER_LOC_ID_0_2] = {};
318 if (false) {
319 DEFER_ID_1_6: {
320 [[__maybe_unused__, __deprecated__("invalid termination of a deferred block")]]
321 register bool const defer_return_flag = false, defer_break_flag = false, defer_continue_flag = false;
322 {ELLIPSIS_CONTRACT(3, ((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1), unreachable, false, "((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1)", "assumption", "unable to allocate token");}
323 }
324 goto DEFER_ID_1_5;
325 } else
326 (void)0 ;
327 extern typeof(ellipsis‿token‿alloc) ellipsis‿token‿alloc‿_Insta;
328 do {
329 /* return mode 2 */
330 defer_return_flag = true;
331 DEFER_LOC_ID_0_1 = ellipsis‿token‿alloc‿_Insta();
332 goto DEFER_ID_1_6;
333 } while(false);
334
335 goto DEFER_ID_1_6;
336 }
337[[__maybe_unused__]] DEFER_END_ID_1_6:;
338 return DEFER_LOC_ID_0_1;
339}
340
346inline
348 extern typeof(ellipsis‿token‿equiv) ellipsis‿token‿equiv‿_Insta;
349 return ellipsis‿token‿equiv‿_Insta(a, b);
350}
351
359inline
360ellipsis‿token* ellipsis‿token‿string(char const str[static 1]) {
361 typeof(ellipsis‿token*) DEFER_LOC_ID_0_1;
362 if (__func__[0] == 'm' && __func__[1] == 'a' && __func__[2] == 'i' && __func__[3] == 'n' && !__func__[4]) {
363 DEFER_LOC_ID_0_1 = (typeof(ellipsis‿token*)) {};
364 }
365 [[__maybe_unused__]] register unsigned DEFER_LOC_ID_0_2 = 1U;
366 [[__maybe_unused__]] register bool defer_return_flag = false;
367 if (false) {
368 DEFER_ID_1_7:
369 goto DEFER_END_ID_1_8;
370 } else {
371 (void)0 ;
372 do {ELLIPSIS_CONTRACT(4, str, abort, true, "str", "assertion", "attempt to create string token from invalid string");} while (false);
373 /* defer */
374 [[__maybe_unused__, __deprecated__("dummy variable for better diagnostics")]]
375 unsigned (*DEFER_LOC_ID_1_4)[DEFER_LOC_ID_0_2] = {};
376 if (false) {
377 DEFER_ID_1_8: {
378 [[__maybe_unused__, __deprecated__("invalid termination of a deferred block")]]
379 register bool const defer_return_flag = false, defer_break_flag = false, defer_continue_flag = false;
380 {ELLIPSIS_CONTRACT(5, ((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1), unreachable, false, "((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1)", "assumption", "unable to create string token");}
381 }
382 goto DEFER_ID_1_7;
383 } else
384 (void)0 ;
385 extern typeof(ellipsis‿token‿string) ellipsis‿token‿string‿_Insta;
386 do {
387 /* return mode 2 */
388 defer_return_flag = true;
389 DEFER_LOC_ID_0_1 = ellipsis‿token‿string‿_Insta(str);
390 goto DEFER_ID_1_8;
391 } while(false);
392
393 goto DEFER_ID_1_8;
394 }
395[[__maybe_unused__]] DEFER_END_ID_1_8:;
396 return DEFER_LOC_ID_0_1;
397}
398
406inline
407ellipsis‿token* ellipsis‿token‿nominal(char const id[static 1]) {
408 typeof(ellipsis‿token*) DEFER_LOC_ID_0_1;
409 if (__func__[0] == 'm' && __func__[1] == 'a' && __func__[2] == 'i' && __func__[3] == 'n' && !__func__[4]) {
410 DEFER_LOC_ID_0_1 = (typeof(ellipsis‿token*)) {};
411 }
412 [[__maybe_unused__]] register unsigned DEFER_LOC_ID_0_2 = 1U;
413 [[__maybe_unused__]] register bool defer_return_flag = false;
414 if (false) {
415 DEFER_ID_1_9:
416 goto DEFER_END_ID_1_10;
417 } else {
418 (void)0 ;
419 do {ELLIPSIS_CONTRACT(6, id, abort, true, "id", "assertion", "attempt to create nominal token from invalid string");} while (false);
420 /* defer */
421 [[__maybe_unused__, __deprecated__("dummy variable for better diagnostics")]]
422 unsigned (*DEFER_LOC_ID_1_5)[DEFER_LOC_ID_0_2] = {};
423 if (false) {
424 DEFER_ID_1_10: {
425 [[__maybe_unused__, __deprecated__("invalid termination of a deferred block")]]
426 register bool const defer_return_flag = false, defer_break_flag = false, defer_continue_flag = false;
427 {ELLIPSIS_CONTRACT(7, ((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1), unreachable, false, "((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1)", "assumption", "unable to create nominal token");}
428 }
429 goto DEFER_ID_1_9;
430 } else
431 (void)0 ;
432 extern typeof(ellipsis‿token‿nominal) ellipsis‿token‿nominal‿_Insta;
433 do {
434 /* return mode 2 */
435 defer_return_flag = true;
436 DEFER_LOC_ID_0_1 = ellipsis‿token‿nominal‿_Insta(id);
437 goto DEFER_ID_1_10;
438 } while(false);
439
440 goto DEFER_ID_1_10;
441 }
442[[__maybe_unused__]] DEFER_END_ID_1_10:;
443 return DEFER_LOC_ID_0_1;
444}
445
453inline
454ellipsis‿token* ellipsis‿token‿number(vtype numb) {
455 typeof(ellipsis‿token*) DEFER_LOC_ID_0_1;
456 if (__func__[0] == 'm' && __func__[1] == 'a' && __func__[2] == 'i' && __func__[3] == 'n' && !__func__[4]) {
457 DEFER_LOC_ID_0_1 = (typeof(ellipsis‿token*)) {};
458 }
459 [[__maybe_unused__]] register unsigned DEFER_LOC_ID_0_2 = 1U;
460 [[__maybe_unused__]] register bool defer_return_flag = false;
461 if (false) {
462 DEFER_ID_1_11:
463 goto DEFER_END_ID_1_12;
464 } else {
465 (void)0 ;
466 /* defer */
467 [[__maybe_unused__, __deprecated__("dummy variable for better diagnostics")]]
468 unsigned (*DEFER_LOC_ID_1_6)[DEFER_LOC_ID_0_2] = {};
469 if (false) {
470 DEFER_ID_1_12: {
471 [[__maybe_unused__, __deprecated__("invalid termination of a deferred block")]]
472 register bool const defer_return_flag = false, defer_break_flag = false, defer_continue_flag = false;
473 {ELLIPSIS_CONTRACT(8, ((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1), unreachable, false, "((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1)", "assumption", "unable to create number token");}
474 }
475 goto DEFER_ID_1_11;
476 } else
477 (void)0 ;
478 extern typeof(ellipsis‿token‿number) ellipsis‿token‿number‿_Insta;
479 do {
480 /* return mode 2 */
481 defer_return_flag = true;
482 DEFER_LOC_ID_0_1 = ellipsis‿token‿number‿_Insta(numb);
483 goto DEFER_ID_1_12;
484 } while(false);
485
486 goto DEFER_ID_1_12;
487 }
488[[__maybe_unused__]] DEFER_END_ID_1_12:;
489 return DEFER_LOC_ID_0_1;
490}
491
500inline
502 extern typeof(ellipsis‿token‿destroy‿_Ctra) ellipsis‿token‿destroy‿_Inner;
504}
505
513inline
515 extern typeof(ellipsis‿token‿delete‿_Ctra) ellipsis‿token‿delete‿_Inner;
517}
518
524inline
526 extern typeof(ellipsis‿token‿delete_all‿_Ctra) ellipsis‿token‿delete_all‿_Inner;
528}
529
543inline
544ellipsis‿token* ellipsis‿token‿cpy‿_Ctra(ellipsis‿token const* t) {
545 typeof(ellipsis‿token*) DEFER_LOC_ID_0_1;
546 if (__func__[0] == 'm' && __func__[1] == 'a' && __func__[2] == 'i' && __func__[3] == 'n' && !__func__[4]) {
547 DEFER_LOC_ID_0_1 = (typeof(ellipsis‿token*)) {};
548 }
549 [[__maybe_unused__]] register unsigned DEFER_LOC_ID_0_2 = 1U;
550 [[__maybe_unused__]] register bool defer_return_flag = false;
551 if (false) {
552 DEFER_ID_1_13:
553 goto DEFER_END_ID_1_14;
554 } else {
555 (void)0 ;
556 /* defer */
557 [[__maybe_unused__, __deprecated__("dummy variable for better diagnostics")]]
558 unsigned (*DEFER_LOC_ID_1_7)[DEFER_LOC_ID_0_2] = {};
559 if (false) {
560 DEFER_ID_1_14: {
561 [[__maybe_unused__, __deprecated__("invalid termination of a deferred block")]]
562 register bool const defer_return_flag = false, defer_break_flag = false, defer_continue_flag = false;
563 {ELLIPSIS_CONTRACT(9, ((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1), abort, true, "((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1)", "assertion", "unable to copy token");}
564 }
565 goto DEFER_ID_1_13;
566 } else
567 (void)0 ;
568 extern typeof(ellipsis‿token‿cpy‿_Ctra) ellipsis‿token‿cpy‿_Inner;
569 do {
570 /* return mode 2 */
571 defer_return_flag = true;
572 DEFER_LOC_ID_0_1 = ellipsis‿token‿cpy‿_Inner(t);
573 goto DEFER_ID_1_14;
574 } while(false);
575
576 goto DEFER_ID_1_14;
577 }
578[[__maybe_unused__]] DEFER_END_ID_1_14:;
579 return DEFER_LOC_ID_0_1;
580}
581
595inline
596ellipsis‿token* ellipsis‿token‿deepcpy‿_Ctra(ellipsis‿token const* t) {
597 typeof(ellipsis‿token*) DEFER_LOC_ID_0_1;
598 if (__func__[0] == 'm' && __func__[1] == 'a' && __func__[2] == 'i' && __func__[3] == 'n' && !__func__[4]) {
599 DEFER_LOC_ID_0_1 = (typeof(ellipsis‿token*)) {};
600 }
601 [[__maybe_unused__]] register unsigned DEFER_LOC_ID_0_2 = 1U;
602 [[__maybe_unused__]] register bool defer_return_flag = false;
603 if (false) {
604 DEFER_ID_1_15:
605 goto DEFER_END_ID_1_16;
606 } else {
607 (void)0 ;
608 /* defer */
609 [[__maybe_unused__, __deprecated__("dummy variable for better diagnostics")]]
610 unsigned (*DEFER_LOC_ID_1_8)[DEFER_LOC_ID_0_2] = {};
611 if (false) {
612 DEFER_ID_1_16: {
613 [[__maybe_unused__, __deprecated__("invalid termination of a deferred block")]]
614 register bool const defer_return_flag = false, defer_break_flag = false, defer_continue_flag = false;
615 {ELLIPSIS_CONTRACT(10, ((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1), abort, true, "((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1)", "assertion", "unable to deep copy token");}
616 }
617 goto DEFER_ID_1_15;
618 } else
619 (void)0 ;
620 extern typeof(ellipsis‿token‿deepcpy‿_Ctra) ellipsis‿token‿deepcpy‿_Inner;
621 do {
622 /* return mode 2 */
623 defer_return_flag = true;
624 DEFER_LOC_ID_0_1 = ellipsis‿token‿deepcpy‿_Inner(t);
625 goto DEFER_ID_1_16;
626 } while(false);
627
628 goto DEFER_ID_1_16;
629 }
630[[__maybe_unused__]] DEFER_END_ID_1_16:;
631 return DEFER_LOC_ID_0_1;
632}
633
639inline
641 typeof(ellipsis‿token*) DEFER_LOC_ID_0_1;
642 if (__func__[0] == 'm' && __func__[1] == 'a' && __func__[2] == 'i' && __func__[3] == 'n' && !__func__[4]) {
643 DEFER_LOC_ID_0_1 = (typeof(ellipsis‿token*)) {};
644 }
645 [[__maybe_unused__]] register unsigned DEFER_LOC_ID_0_2 = 1U;
646 [[__maybe_unused__]] register bool defer_return_flag = false;
647 if (false) {
648 DEFER_ID_1_17:
649 goto DEFER_END_ID_1_18;
650 } else {
651 (void)0 ;
652 /* defer */
653 [[__maybe_unused__, __deprecated__("dummy variable for better diagnostics")]]
654 unsigned (*DEFER_LOC_ID_1_9)[DEFER_LOC_ID_0_2] = {};
655 if (false) {
656 DEFER_ID_1_18: {
657 [[__maybe_unused__, __deprecated__("invalid termination of a deferred block")]]
658 register bool const defer_return_flag = false, defer_break_flag = false, defer_continue_flag = false;
659 {ELLIPSIS_CONTRACT(11, ((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1), abort, true, "((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1)", "assertion", "unable to allocate token");}
660 }
661 goto DEFER_ID_1_17;
662 } else
663 (void)0 ;
664 extern typeof(ellipsis‿token‿alloc‿_Ctra) ellipsis‿token‿alloc‿_Inner;
665 do {
666 /* return mode 2 */
667 defer_return_flag = true;
668 DEFER_LOC_ID_0_1 = ellipsis‿token‿alloc‿_Inner();
669 goto DEFER_ID_1_18;
670 } while(false);
671
672 goto DEFER_ID_1_18;
673 }
674[[__maybe_unused__]] DEFER_END_ID_1_18:;
675 return DEFER_LOC_ID_0_1;
676}
677
683inline
685 extern typeof(ellipsis‿token‿equiv‿_Ctra) ellipsis‿token‿equiv‿_Inner;
687}
688
696inline
697ellipsis‿token* ellipsis‿token‿string‿_Ctra(char const str[static 1]) {
698 typeof(ellipsis‿token*) DEFER_LOC_ID_0_1;
699 if (__func__[0] == 'm' && __func__[1] == 'a' && __func__[2] == 'i' && __func__[3] == 'n' && !__func__[4]) {
700 DEFER_LOC_ID_0_1 = (typeof(ellipsis‿token*)) {};
701 }
702 [[__maybe_unused__]] register unsigned DEFER_LOC_ID_0_2 = 1U;
703 [[__maybe_unused__]] register bool defer_return_flag = false;
704 if (false) {
705 DEFER_ID_1_19:
706 goto DEFER_END_ID_1_20;
707 } else {
708 (void)0 ;
709 do {ELLIPSIS_CONTRACT(12, str, unreachable, false, "str", "assumption", "attempt to create string token from invalid string");} while (false);
710 /* defer */
711 [[__maybe_unused__, __deprecated__("dummy variable for better diagnostics")]]
712 unsigned (*DEFER_LOC_ID_1_10)[DEFER_LOC_ID_0_2] = {};
713 if (false) {
714 DEFER_ID_1_20: {
715 [[__maybe_unused__, __deprecated__("invalid termination of a deferred block")]]
716 register bool const defer_return_flag = false, defer_break_flag = false, defer_continue_flag = false;
717 {ELLIPSIS_CONTRACT(13, ((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1), abort, true, "((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1)", "assertion", "unable to create string token");}
718 }
719 goto DEFER_ID_1_19;
720 } else
721 (void)0 ;
722 extern typeof(ellipsis‿token‿string‿_Ctra) ellipsis‿token‿string‿_Inner;
723 do {
724 /* return mode 2 */
725 defer_return_flag = true;
726 DEFER_LOC_ID_0_1 = ellipsis‿token‿string‿_Inner(str);
727 goto DEFER_ID_1_20;
728 } while(false);
729
730 goto DEFER_ID_1_20;
731 }
732[[__maybe_unused__]] DEFER_END_ID_1_20:;
733 return DEFER_LOC_ID_0_1;
734}
735
743inline
744ellipsis‿token* ellipsis‿token‿nominal‿_Ctra(char const id[static 1]) {
745 typeof(ellipsis‿token*) DEFER_LOC_ID_0_1;
746 if (__func__[0] == 'm' && __func__[1] == 'a' && __func__[2] == 'i' && __func__[3] == 'n' && !__func__[4]) {
747 DEFER_LOC_ID_0_1 = (typeof(ellipsis‿token*)) {};
748 }
749 [[__maybe_unused__]] register unsigned DEFER_LOC_ID_0_2 = 1U;
750 [[__maybe_unused__]] register bool defer_return_flag = false;
751 if (false) {
752 DEFER_ID_1_21:
753 goto DEFER_END_ID_1_22;
754 } else {
755 (void)0 ;
756 do {ELLIPSIS_CONTRACT(14, id, unreachable, false, "id", "assumption", "attempt to create nominal token from invalid string");} while (false);
757 /* defer */
758 [[__maybe_unused__, __deprecated__("dummy variable for better diagnostics")]]
759 unsigned (*DEFER_LOC_ID_1_11)[DEFER_LOC_ID_0_2] = {};
760 if (false) {
761 DEFER_ID_1_22: {
762 [[__maybe_unused__, __deprecated__("invalid termination of a deferred block")]]
763 register bool const defer_return_flag = false, defer_break_flag = false, defer_continue_flag = false;
764 {ELLIPSIS_CONTRACT(15, ((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1), abort, true, "((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1)", "assertion", "unable to create nominal token");}
765 }
766 goto DEFER_ID_1_21;
767 } else
768 (void)0 ;
769 extern typeof(ellipsis‿token‿nominal‿_Ctra) ellipsis‿token‿nominal‿_Inner;
770 do {
771 /* return mode 2 */
772 defer_return_flag = true;
773 DEFER_LOC_ID_0_1 = ellipsis‿token‿nominal‿_Inner(id);
774 goto DEFER_ID_1_22;
775 } while(false);
776
777 goto DEFER_ID_1_22;
778 }
779[[__maybe_unused__]] DEFER_END_ID_1_22:;
780 return DEFER_LOC_ID_0_1;
781}
782
790inline
791ellipsis‿token* ellipsis‿token‿number‿_Ctra(vtype numb) {
792 typeof(ellipsis‿token*) DEFER_LOC_ID_0_1;
793 if (__func__[0] == 'm' && __func__[1] == 'a' && __func__[2] == 'i' && __func__[3] == 'n' && !__func__[4]) {
794 DEFER_LOC_ID_0_1 = (typeof(ellipsis‿token*)) {};
795 }
796 [[__maybe_unused__]] register unsigned DEFER_LOC_ID_0_2 = 1U;
797 [[__maybe_unused__]] register bool defer_return_flag = false;
798 if (false) {
799 DEFER_ID_1_23:
800 goto DEFER_END_ID_1_24;
801 } else {
802 (void)0 ;
803 /* defer */
804 [[__maybe_unused__, __deprecated__("dummy variable for better diagnostics")]]
805 unsigned (*DEFER_LOC_ID_1_12)[DEFER_LOC_ID_0_2] = {};
806 if (false) {
807 DEFER_ID_1_24: {
808 [[__maybe_unused__, __deprecated__("invalid termination of a deferred block")]]
809 register bool const defer_return_flag = false, defer_break_flag = false, defer_continue_flag = false;
810 {ELLIPSIS_CONTRACT(16, ((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1), abort, true, "((typeof(DEFER_LOC_ID_0_1))DEFER_LOC_ID_0_1)", "assertion", "unable to create number token");}
811 }
812 goto DEFER_ID_1_23;
813 } else
814 (void)0 ;
815 extern typeof(ellipsis‿token‿number‿_Ctra) ellipsis‿token‿number‿_Inner;
816 do {
817 /* return mode 2 */
818 defer_return_flag = true;
819 DEFER_LOC_ID_0_1 = ellipsis‿token‿number‿_Inner(numb);
820 goto DEFER_ID_1_24;
821 } while(false);
822
823 goto DEFER_ID_1_24;
824 }
825[[__maybe_unused__]] DEFER_END_ID_1_24:;
826 return DEFER_LOC_ID_0_1;
827}
828
838inline
839ellipsis‿token* ellipsis‿token‿pop(ellipsis‿token* head[static 1]) {
840 ellipsis‿token* ret = nullptr;
841 if (*head) {
842 ret = *head;
843 *head = (*head)->next;
844 ret->next = nullptr;
845 }
846 return ret;
847}
848
853inline
854void ellipsis‿token‿push(ellipsis‿token* head[static 1], ellipsis‿token el[static 1]) {
855 if (*head) {
856 el->next = *head;
857 }
858 *head = el;
859}
860
866inline
868 ellipsis‿token* top = ellipsis‿token‿pop(head);
869 if (top) {
870 ellipsis‿token‿delete(top);
871 }
872}
873
881inline
882ellipsis‿token* ellipsis‿token‿repeat(ellipsis‿token p[static 1], size_t n) {
883 if (!n) {
884 ELLIPSIS_DIAGNOSTIC("asking for zero copies of a ¤");
885 }
886 ellipsis‿token* ret = nullptr;
887 ellipsis‿token* prev = nullptr;
888 while (n) {
889 ret = ellipsis‿token‿cpy(p);
890 if (!ret && prev) {
891 ellipsis‿token‿delete_all(prev);
892 /* downgraded */ break;
893 }
894 ret->next = prev;
895 prev = ret;
896 --n;
897 }
898 return ret;
899}
900
909#define TOKEN_NEW(...) ellipsis‿token‿new((ellipsis‿token){__VA_ARGS__})
910
919inline
920ellipsis‿token* ellipsis‿token‿new(ellipsis‿token const __LOC_ID_0_1) {
921 ellipsis‿token* __LOC_ID_1_1 = ellipsis‿token‿alloc();
922 ELLIPSIS_CONTRACT(17, __LOC_ID_1_1, abort, true, "__LOC(0)", "assertion", "unable to allocate " "ellipsis∷token");
923 *__LOC_ID_1_1 = __LOC_ID_0_1;
924 return __LOC_ID_1_1;
925}
926
935inline void ellipsis‿token‿move(ellipsis‿token* __LOC_ID_0_2[restrict static 1], ellipsis‿token**restrict __LOC_ID_0_3) {
936 if (*__LOC_ID_0_2)
937 ellipsis‿token‿delete((void*)*__LOC_ID_0_2);
938 if (__LOC_ID_0_3) {
939 *__LOC_ID_0_2= *__LOC_ID_0_3;
940 *__LOC_ID_0_3= nullptr;
941 } else {
942 *__LOC_ID_0_2= nullptr;
943 }
944
945}
946
955inline void ellipsis‿token‿cmove(ellipsis‿token const* __LOC_ID_0_4[restrict static 1], ellipsis‿token const**restrict __LOC_ID_0_5) {
956 if (*__LOC_ID_0_4)
957 ellipsis‿token‿delete((void*)*__LOC_ID_0_4);
958 if (__LOC_ID_0_5) {
959 *__LOC_ID_0_4= *__LOC_ID_0_5;
960 *__LOC_ID_0_5= nullptr;
961 } else {
962 *__LOC_ID_0_4= nullptr;
963 }
964
965}
966
967#endif
ellipsis‿category
An enumeration type ellipsis‿category with the underlying integer type ellipsis‿category‿base.
Definition ellipsis-category.h:32
constexpr size_t ellipsis‿category‿width
Definition ellipsis-category.h:119
#define STDC_ATTR_NODISCARD(...)
Definition ellipsis-error.h:68
#define GNU_ATTR_RETURNS_NONNULL
Definition ellipsis-error.h:34
#define ELLIPSIS_DIAGNOSTIC(FORMAT,...)
Issue a diagnostic on stderr.
Definition ellipsis-error.h:109
struct ellipsis‿contracts‿is_ice ellipsis‿contracts‿is_ice
Definition ellipsis-expression.c:24
void ellipsis‿token‿delete_all‿_Inner(ellipsis‿token act[static 1])
Definition ellipsis-token.c:281
ellipsis‿token * ellipsis‿token‿number‿_Inner(vtype numb)
Definition ellipsis-token.c:273
bool ellipsis‿token‿equiv‿_Inner(ellipsis‿token *a, ellipsis‿token *b)
Definition ellipsis-token.c:234
ellipsis‿token * ellipsis‿token‿cpy‿_Inner(ellipsis‿token const *t)
Definition ellipsis-token.c:206
ellipsis‿token * ellipsis‿token‿alloc‿_Inner(void)
Definition ellipsis-token.c:287
void ellipsis‿token‿destroy‿_Inner(ellipsis‿token t[static 1])
Definition ellipsis-token.c:182
ellipsis‿token * ellipsis‿token‿string‿_Inner(char const str[static 1])
Definition ellipsis-token.c:260
void ellipsis‿token‿delete‿_Inner(ellipsis‿token t[static 1])
Definition ellipsis-token.c:200
ellipsis‿token * ellipsis‿token‿nominal‿_Inner(char const id[static 1])
Definition ellipsis-token.c:268
ellipsis‿token * ellipsis‿token‿deepcpy‿_Inner(ellipsis‿token const *t)
Definition ellipsis-token.c:223
ellipsis‿token * macro_cb(ellipsis‿token *)
Definition ellipsis-token.h:80
thread_local bool volatile ellipsis‿contracts‿verbose‿dynamic
#define ELLIPSIS_CONTRACT(COUNT, COND, ACTION, VERB, CSTR, CTYPE,...)
Definition ellipsis-token.h:66
thread_local bool volatile ellipsis‿contracts‿proceed‿dynamic
#define TOKEN_IS_INNER_CASE(N)
Definition ellipsis-token.h:116
thread_local bool volatile ellipsis‿contracts‿ignore‿dynamic
unsigned long long vtype
Definition ellipsis-token.h:75
ellipsis‿token‿what
An enumeration type ellipsis‿token‿what with the underlying integer type ellipsis‿token‿what‿base.
Definition ellipsis-what.h:32
A structure with a flexible array member of base type ellipsis‿str32‿base.
Definition ellipsis-str32.h:156
size_t const length
Current length of this instance.
Definition ellipsis-str32.h:165
ellipsis‿str32‿base array[]
The current data array.
Definition ellipsis-str32.h:190
A structure with a flexible array member of base type ellipsis‿str8‿base.
Definition ellipsis-str8.h:150
A token element as recognized during processing.
Definition ellipsis-token.h:94
void ellipsis‿token‿push(ellipsis‿token *head[static 1], ellipsis‿token el[static 1])
Definition ellipsis-token.h:854
bool is_undefinable
Definition ellipsis-token.h:110
bool back_in
Definition ellipsis-token.h:111
bool toeol
Definition ellipsis-token.h:112
size_t line
Definition ellipsis-token.h:104
ellipsis‿str32 const * space
Definition ellipsis-token.h:96
bool ellipsis‿token‿equiv(ellipsis‿token *a, ellipsis‿token *b)
Check if two token lists are token equivalent.
Definition ellipsis-token.h:347
void ellipsis‿token‿delete(ellipsis‿token t[static 1])
Destroy the token structure *t and deallocate it.
Definition ellipsis-token.h:177
bool is_functional
Definition ellipsis-token.h:109
void ellipsis‿token‿delete_all‿_Ctra(ellipsis‿token t[static 1])
Delete the whole token list starting with *t.
Definition ellipsis-token.h:525
void ellipsis‿token‿move(ellipsis‿token *__LOC_ID_0_2[restrict static 1], ellipsis‿token **restrict __LOC_ID_0_3)
Move a ellipsis‿token pointed to by the second parameter to the one pointed to by the first.
Definition ellipsis-token.h:935
void ellipsis‿token‿cmove(ellipsis‿token const *__LOC_ID_0_4[restrict static 1], ellipsis‿token const **restrict __LOC_ID_0_5)
Move a ellipsis‿token const pointed to by the second parameter to the one pointed to by the first.
Definition ellipsis-token.h:955
macro_cb * callback
Definition ellipsis-token.h:101
void ellipsis‿token‿drop(ellipsis‿token *head[static 1])
drop the top element from the list
Definition ellipsis-token.h:867
void ellipsis‿token‿destroy(ellipsis‿token t[static 1])
Destroy the token structure *t, freeing all linked contents, space and payload or data,...
Definition ellipsis-token.h:164
ellipsis‿token * next
Definition ellipsis-token.h:97
bool ellipsis‿token‿is_inner(ellipsis‿token const *t, size_t len, char32_t const s[restrict static len])
Definition ellipsis-token.h:124
bool ellipsis‿token‿equiv‿_Ctra(ellipsis‿token *a, ellipsis‿token *b)
Check if two token lists are token equivalent.
Definition ellipsis-token.h:684
void ellipsis‿token‿delete_all(ellipsis‿token t[static 1])
Delete the whole token list starting with *t.
Definition ellipsis-token.h:188
ellipsis‿str8 * data
Definition ellipsis-token.h:102
ellipsis‿token‿what is_what
Definition ellipsis-token.h:108
void ellipsis‿token‿destroy‿_Ctra(ellipsis‿token t[static 1])
Destroy the token structure *t, freeing all linked contents, space and payload or data,...
Definition ellipsis-token.h:501
size_t file
Definition ellipsis-token.h:105
vtype value
Definition ellipsis-token.h:106
ellipsis‿token‿list * payload
Definition ellipsis-token.h:100
void ellipsis‿token‿delete‿_Ctra(ellipsis‿token t[static 1])
Destroy the token structure *t and deallocate it.
Definition ellipsis-token.h:514
ellipsis‿token * ellipsis‿token‿alloc‿_Ctra(void)
Allocate a new token instance and initialize it.
Definition ellipsis-token.h:640
ellipsis‿token * ellipsis‿token‿alloc(void)
Allocate a new token instance and initialize it.
Definition ellipsis-token.h:303
ellipsis‿category cat
Definition ellipsis-token.h:107
ellipsis‿str32 const * contents
Definition ellipsis-token.h:95
a token list
Definition ellipsis-tlist.h:84