-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbfetchaust.c
More file actions
11151 lines (10034 loc) · 341 KB
/
bfetchaust.c
File metadata and controls
11151 lines (10034 loc) · 341 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Part of the Austral project, under the Apache License v2.0 with LLVM Exceptions.
See LICENSE file for details.
SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
*/
#include <stdint.h>
#include <stddef.h>
#include <stdarg.h>
/*
* Austral types
*/
typedef uint8_t au_unit_t;
typedef uint8_t au_bool_t;
typedef uint8_t au_nat8_t;
typedef int8_t au_int8_t;
typedef uint16_t au_nat16_t;
typedef int16_t au_int16_t;
typedef uint32_t au_nat32_t;
typedef int32_t au_int32_t;
typedef uint64_t au_nat64_t;
typedef int64_t au_int64_t;
typedef size_t au_index_t;
typedef void* au_fnptr_t;
typedef uint8_t au_region_t;
#define nil 0
#define false 0
#define true 1
/*
* A little hack
*/
#define AU_STORE(ptr, val) (*(ptr) = (val), nil)
/*
* Pervasive
*/
typedef struct {
void* data;
size_t size;
} au_span_t;
au_span_t au_make_span(void* data, size_t size) {
return (au_span_t){ .data = data, .size = size };
}
au_span_t au_make_span_from_string(const char* data, size_t size) {
return (au_span_t){ .data = (void*) data, .size = size };
}
void* au_stdout() {
#if defined(__APPLE__)
extern void* __stdoutp;
return __stdoutp;
#else
extern void* stdout;
return stdout;
#endif
}
void* au_stderr() {
#if defined(__APPLE__)
extern void* __stderrp;
return __stderrp;
#elif defined(__FreeBSD__)
extern void* __stderrp;
return __stderrp;
#elif defined(__OpenBSD__)
extern void *__sF;
return &__sF[2];
#else
extern void* stderr;
return stderr;
#endif
}
extern void* au_stdin() {
#if defined(__APPLE__)
extern void* __stdinp;
return __stdinp;
#else
extern void* stdin;
return stdin;
#endif
}
au_unit_t au_abort_internal(const char* message) {
extern int fprintf(void* stream, const char* format, ...);
extern int fflush(void* stream);
extern void _Exit(int status);
void* stderr = au_stderr();
fprintf(stderr, "%s\n", message);
fflush(stderr);
_Exit(-1);
return nil;
}
au_unit_t au_abort(au_span_t message) {
extern int fprintf(void* stream, const char* format, ...);
extern int fflush(void* stream);
extern void _Exit(int status);
void* stderr = au_stderr();
fprintf(stderr, "%s\n", (char*) message.data);
fflush(stderr);
_Exit(-1);
return nil;
}
au_unit_t au_printf(const char* format, ...) {
extern int vprintf(const char* format, va_list arg);
va_list args;
va_start(args, format);
vprintf(format, args);
va_end(args);
return nil;
}
void* au_array_index(au_span_t* array, size_t index, size_t elem_size) {
if (index >= array->size) {
au_abort_internal("Array index out of bounds.");
}
au_index_t offset = 0;
if (__builtin_mul_overflow(index, elem_size, &offset)) {
au_abort_internal("Multiplication overflow in array indexing operation.");
}
char* data = (char*) array->data;
char* ptr = data + offset;
return (void*)(ptr);
}
/*
* Memory functions
*/
void* au_calloc(size_t size, size_t count) {
extern void* calloc(size_t count, size_t size);
return calloc(size, count);
}
void* au_realloc(void* ptr, size_t count) {
extern void* realloc(void *ptr, size_t size);
return realloc(ptr, count);
}
void* au_memmove(void* destination, void* source, size_t count) {
extern void* memmove(void* destination, void* source, size_t count);
return memmove(destination, source, count);
}
void* au_memcpy(void* destination, void* source, size_t count) {
extern void* memcpy(void* destination, void* source, size_t count);
return memcpy(destination, source, count);
}
au_unit_t au_free(void* ptr) {
extern void free(void* ptr);
free(ptr);
return nil;
};
/*
* CLI functions
*/
static int _au_argc = -1;
static char** _au_argv = NULL;
void au_store_cli_args(int argc, char** argv) {
// Sanity checks.
if (argc < 0) {
au_abort_internal("Entrypoint error: argc is negative.");
}
if (argv == NULL) {
au_abort_internal("Entrypoint error: argv is NULL.");
}
// Store values.
_au_argc = argc;
_au_argv = argv;
}
size_t au_get_argc() {
// Sanity check.
if (_au_argc == -1) {
au_abort_internal("Prelude error: argc was not set.");
}
// Correctness argument: if _au_argc is non-negative, being an `int`, it
// should fit inside `size_t`.
size_t argc = (size_t)(_au_argc);
return argc;
}
size_t _au_bounded_strlen(char* string, size_t bound) {
size_t size = 0;
for(size_t idx = 0; idx <= bound; idx++) {
if (string[idx] == '\0') {
return size;
}
size++;
}
au_abort_internal("Command line argument exceeds maximum length of 10 kibibytes.");
}
/* One kibibyte in bytes. */
#define AU_KIBIBYTE 1024
/* The maximum size of each CLI arg. */
#define AU_MAX_ARG_SIZE (10*AU_KIBIBYTE)
au_span_t au_get_nth_arg(size_t n) {
// Sanity check.
if (_au_argv == NULL) {
au_abort_internal("Prelude error: argv was not set.");
}
size_t argc = au_get_argc();
// Check array bounds.
if (n >= argc) {
au_abort_internal("Command line argument access out of bounds.");
}
// Retrieve the nth argument.
char* arg = _au_argv[n];
// Check non-null.
if (arg == NULL) {
au_abort_internal("Prelude error: command-line argument is NULL.");
}
// Measure the length.
size_t size = _au_bounded_strlen(arg, AU_MAX_ARG_SIZE);
// Otherwise, return it.
au_span_t arg_array = ((au_span_t){ .data = (void*)arg, .size = size });
return arg_array;
}
/* --- BEGIN translation unit for module 'Austral.Pervasive' --- */
/*
Union monomorph tag enum: Option[(MonoType.MonoInteger (Type.Unsigned, Type.Width8))]
*/
typedef enum {
mono_2_tag_Some, mono_2_tag_None
} mono_2_tag;
/*
Union monomorph tag enum: Option[(MonoType.MonoInteger (Type.Unsigned, Type.Width16))]
*/
typedef enum {
mono_3_tag_Some, mono_3_tag_None
} mono_3_tag;
/*
Union monomorph tag enum: Option[(MonoType.MonoInteger (Type.Unsigned, Type.Width32))]
*/
typedef enum {
mono_4_tag_Some, mono_4_tag_None
} mono_4_tag;
/*
Union monomorph tag enum: Option[(MonoType.MonoInteger (Type.Unsigned, Type.Width64))]
*/
typedef enum {
mono_5_tag_Some, mono_5_tag_None
} mono_5_tag;
/*
Union monomorph tag enum: Option[(MonoType.MonoInteger (Type.Signed, Type.Width8))]
*/
typedef enum {
mono_6_tag_Some, mono_6_tag_None
} mono_6_tag;
/*
Union monomorph tag enum: Option[(MonoType.MonoInteger (Type.Signed, Type.Width16))]
*/
typedef enum {
mono_7_tag_Some, mono_7_tag_None
} mono_7_tag;
/*
Union monomorph tag enum: Option[(MonoType.MonoInteger (Type.Signed, Type.Width32))]
*/
typedef enum {
mono_8_tag_Some, mono_8_tag_None
} mono_8_tag;
/*
Union monomorph tag enum: Option[(MonoType.MonoInteger (Type.Signed, Type.Width64))]
*/
typedef enum {
mono_9_tag_Some, mono_9_tag_None
} mono_9_tag;
/*
Union monomorph tag enum: Option[(MonoType.MonoInteger (Type.Unsigned, Type.WidthIndex))]
*/
typedef enum {
mono_10_tag_Some, mono_10_tag_None
} mono_10_tag;
/*
Union monomorph tag enum: Option[MonoType.MonoSingleFloat]
*/
typedef enum {
mono_11_tag_Some, mono_11_tag_None
} mono_11_tag;
/*
Union monomorph tag enum: Option[MonoType.MonoDoubleFloat]
*/
typedef enum {
mono_12_tag_Some, mono_12_tag_None
} mono_12_tag;
/*
Record monomorph: RootCapability[]
*/
struct mono_1;
typedef struct mono_1 mono_1;
/*
Union monomorph: Option[(MonoType.MonoInteger (Type.Unsigned, Type.Width8))]
*/
struct mono_2;
typedef struct mono_2 mono_2;
/*
Union monomorph: Option[(MonoType.MonoInteger (Type.Unsigned, Type.Width16))]
*/
struct mono_3;
typedef struct mono_3 mono_3;
/*
Union monomorph: Option[(MonoType.MonoInteger (Type.Unsigned, Type.Width32))]
*/
struct mono_4;
typedef struct mono_4 mono_4;
/*
Union monomorph: Option[(MonoType.MonoInteger (Type.Unsigned, Type.Width64))]
*/
struct mono_5;
typedef struct mono_5 mono_5;
/*
Union monomorph: Option[(MonoType.MonoInteger (Type.Signed, Type.Width8))]
*/
struct mono_6;
typedef struct mono_6 mono_6;
/*
Union monomorph: Option[(MonoType.MonoInteger (Type.Signed, Type.Width16))]
*/
struct mono_7;
typedef struct mono_7 mono_7;
/*
Union monomorph: Option[(MonoType.MonoInteger (Type.Signed, Type.Width32))]
*/
struct mono_8;
typedef struct mono_8 mono_8;
/*
Union monomorph: Option[(MonoType.MonoInteger (Type.Signed, Type.Width64))]
*/
struct mono_9;
typedef struct mono_9 mono_9;
/*
Union monomorph: Option[(MonoType.MonoInteger (Type.Unsigned, Type.WidthIndex))]
*/
struct mono_10;
typedef struct mono_10 mono_10;
/*
Union monomorph: Option[MonoType.MonoSingleFloat]
*/
struct mono_11;
typedef struct mono_11 mono_11;
/*
Union monomorph: Option[MonoType.MonoDoubleFloat]
*/
struct mono_12;
typedef struct mono_12 mono_12;
/*
Record monomorph: RootCapability[]
*/
typedef struct mono_1 {au_unit_t value;} mono_1;
/*
Union monomorph: Option[(MonoType.MonoInteger (Type.Unsigned, Type.Width8))]
*/
typedef struct mono_2 {mono_2_tag tag;union { struct {au_nat8_t value;} Some;struct {} None;} data;} mono_2;
/*
Union monomorph: Option[(MonoType.MonoInteger (Type.Unsigned, Type.Width16))]
*/
typedef struct mono_3 {mono_3_tag tag;union { struct {au_nat16_t value;} Some;struct {} None;} data;} mono_3;
/*
Union monomorph: Option[(MonoType.MonoInteger (Type.Unsigned, Type.Width32))]
*/
typedef struct mono_4 {mono_4_tag tag;union { struct {au_nat32_t value;} Some;struct {} None;} data;} mono_4;
/*
Union monomorph: Option[(MonoType.MonoInteger (Type.Unsigned, Type.Width64))]
*/
typedef struct mono_5 {mono_5_tag tag;union { struct {au_nat64_t value;} Some;struct {} None;} data;} mono_5;
/*
Union monomorph: Option[(MonoType.MonoInteger (Type.Signed, Type.Width8))]
*/
typedef struct mono_6 {mono_6_tag tag;union { struct {au_int8_t value;} Some;struct {} None;} data;} mono_6;
/*
Union monomorph: Option[(MonoType.MonoInteger (Type.Signed, Type.Width16))]
*/
typedef struct mono_7 {mono_7_tag tag;union { struct {au_int16_t value;} Some;struct {} None;} data;} mono_7;
/*
Union monomorph: Option[(MonoType.MonoInteger (Type.Signed, Type.Width32))]
*/
typedef struct mono_8 {mono_8_tag tag;union { struct {au_int32_t value;} Some;struct {} None;} data;} mono_8;
/*
Union monomorph: Option[(MonoType.MonoInteger (Type.Signed, Type.Width64))]
*/
typedef struct mono_9 {mono_9_tag tag;union { struct {au_int64_t value;} Some;struct {} None;} data;} mono_9;
/*
Union monomorph: Option[(MonoType.MonoInteger (Type.Unsigned, Type.WidthIndex))]
*/
typedef struct mono_10 {mono_10_tag tag;union { struct {au_index_t value;} Some;struct {} None;} data;} mono_10;
/*
Union monomorph: Option[MonoType.MonoSingleFloat]
*/
typedef struct mono_11 {mono_11_tag tag;union { struct {float value;} Some;struct {} None;} data;} mono_11;
/*
Union monomorph: Option[MonoType.MonoDoubleFloat]
*/
typedef struct mono_12 {mono_12_tag tag;union { struct {double value;} Some;struct {} None;} data;} mono_12;
/*
Constant
*/
#define Austral__Pervasive____maximum_nat8 ((au_nat8_t)(UINT8_MAX))
/*
Constant
*/
#define Austral__Pervasive____maximum_nat16 ((au_nat16_t)(UINT16_MAX))
/*
Constant
*/
#define Austral__Pervasive____maximum_nat32 ((au_nat32_t)(UINT32_MAX))
/*
Constant
*/
#define Austral__Pervasive____maximum_nat64 ((au_nat64_t)(UINT64_MAX))
/*
Constant
*/
#define Austral__Pervasive____minimum_int8 ((au_int8_t)(INT8_MIN))
/*
Constant
*/
#define Austral__Pervasive____maximum_int8 ((au_int8_t)(INT8_MAX))
/*
Constant
*/
#define Austral__Pervasive____minimum_int16 ((au_int16_t)(INT16_MIN))
/*
Constant
*/
#define Austral__Pervasive____maximum_int16 ((au_int16_t)(INT16_MAX))
/*
Constant
*/
#define Austral__Pervasive____minimum_int32 ((au_int32_t)(INT32_MIN))
/*
Constant
*/
#define Austral__Pervasive____maximum_int32 ((au_int32_t)(INT32_MAX))
/*
Constant
*/
#define Austral__Pervasive____minimum_int64 ((au_int64_t)(INT64_MIN))
/*
Constant
*/
#define Austral__Pervasive____maximum_int64 ((au_int64_t)(INT64_MAX))
/*
Constant
*/
#define Austral__Pervasive____minimum_index 0
/*
Constant
*/
#define Austral__Pervasive____maximum_index ((au_index_t)(SIZE_MAX))
/*
Constant
*/
#define Austral__Pervasive____minimum_bytesize 0
/*
Constant
*/
#define Austral__Pervasive____maximum_bytesize ((size_t)(SIZE_MAX))
/*
Constant
*/
#define Austral__Pervasive____minimum_nat8 0
/*
Constant
*/
#define Austral__Pervasive____minimum_nat16 0
/*
Constant
*/
#define Austral__Pervasive____minimum_nat32 0
/*
Constant
*/
#define Austral__Pervasive____minimum_nat64 0
/*
Function forward declaratioon
*/
au_unit_t decl_9(au_span_t message);
/*
Function forward declaratioon
*/
au_unit_t decl_11(mono_1 cap);
/*
Function forward declaratioon
*/
au_index_t decl_12();
/*
Function forward declaratioon
*/
au_span_t decl_13(au_index_t n);
/*
Method forward declaration
*/
au_nat8_t meth_1(au_nat8_t lhs, au_nat8_t rhs);
/*
Method forward declaration
*/
au_nat8_t meth_2(au_nat8_t lhs, au_nat8_t rhs);
/*
Method forward declaration
*/
au_nat8_t meth_3(au_nat8_t lhs, au_nat8_t rhs);
/*
Method forward declaration
*/
au_nat8_t meth_4(au_nat8_t lhs, au_nat8_t rhs);
/*
Method forward declaration
*/
au_int8_t meth_5(au_int8_t lhs, au_int8_t rhs);
/*
Method forward declaration
*/
au_int8_t meth_6(au_int8_t lhs, au_int8_t rhs);
/*
Method forward declaration
*/
au_int8_t meth_7(au_int8_t lhs, au_int8_t rhs);
/*
Method forward declaration
*/
au_int8_t meth_8(au_int8_t lhs, au_int8_t rhs);
/*
Method forward declaration
*/
au_nat16_t meth_9(au_nat16_t lhs, au_nat16_t rhs);
/*
Method forward declaration
*/
au_nat16_t meth_10(au_nat16_t lhs, au_nat16_t rhs);
/*
Method forward declaration
*/
au_nat16_t meth_11(au_nat16_t lhs, au_nat16_t rhs);
/*
Method forward declaration
*/
au_nat16_t meth_12(au_nat16_t lhs, au_nat16_t rhs);
/*
Method forward declaration
*/
au_int16_t meth_13(au_int16_t lhs, au_int16_t rhs);
/*
Method forward declaration
*/
au_int16_t meth_14(au_int16_t lhs, au_int16_t rhs);
/*
Method forward declaration
*/
au_int16_t meth_15(au_int16_t lhs, au_int16_t rhs);
/*
Method forward declaration
*/
au_int16_t meth_16(au_int16_t lhs, au_int16_t rhs);
/*
Method forward declaration
*/
au_nat32_t meth_17(au_nat32_t lhs, au_nat32_t rhs);
/*
Method forward declaration
*/
au_nat32_t meth_18(au_nat32_t lhs, au_nat32_t rhs);
/*
Method forward declaration
*/
au_nat32_t meth_19(au_nat32_t lhs, au_nat32_t rhs);
/*
Method forward declaration
*/
au_nat32_t meth_20(au_nat32_t lhs, au_nat32_t rhs);
/*
Method forward declaration
*/
au_int32_t meth_21(au_int32_t lhs, au_int32_t rhs);
/*
Method forward declaration
*/
au_int32_t meth_22(au_int32_t lhs, au_int32_t rhs);
/*
Method forward declaration
*/
au_int32_t meth_23(au_int32_t lhs, au_int32_t rhs);
/*
Method forward declaration
*/
au_int32_t meth_24(au_int32_t lhs, au_int32_t rhs);
/*
Method forward declaration
*/
au_nat64_t meth_25(au_nat64_t lhs, au_nat64_t rhs);
/*
Method forward declaration
*/
au_nat64_t meth_26(au_nat64_t lhs, au_nat64_t rhs);
/*
Method forward declaration
*/
au_nat64_t meth_27(au_nat64_t lhs, au_nat64_t rhs);
/*
Method forward declaration
*/
au_nat64_t meth_28(au_nat64_t lhs, au_nat64_t rhs);
/*
Method forward declaration
*/
au_int64_t meth_29(au_int64_t lhs, au_int64_t rhs);
/*
Method forward declaration
*/
au_int64_t meth_30(au_int64_t lhs, au_int64_t rhs);
/*
Method forward declaration
*/
au_int64_t meth_31(au_int64_t lhs, au_int64_t rhs);
/*
Method forward declaration
*/
au_int64_t meth_32(au_int64_t lhs, au_int64_t rhs);
/*
Method forward declaration
*/
au_index_t meth_33(au_index_t lhs, au_index_t rhs);
/*
Method forward declaration
*/
au_index_t meth_34(au_index_t lhs, au_index_t rhs);
/*
Method forward declaration
*/
au_index_t meth_35(au_index_t lhs, au_index_t rhs);
/*
Method forward declaration
*/
au_index_t meth_36(au_index_t lhs, au_index_t rhs);
/*
Method forward declaration
*/
size_t meth_37(size_t lhs, size_t rhs);
/*
Method forward declaration
*/
size_t meth_38(size_t lhs, size_t rhs);
/*
Method forward declaration
*/
size_t meth_39(size_t lhs, size_t rhs);
/*
Method forward declaration
*/
size_t meth_40(size_t lhs, size_t rhs);
/*
Method forward declaration
*/
double meth_41(double lhs, double rhs);
/*
Method forward declaration
*/
double meth_42(double lhs, double rhs);
/*
Method forward declaration
*/
double meth_43(double lhs, double rhs);
/*
Method forward declaration
*/
double meth_44(double lhs, double rhs);
/*
Method forward declaration
*/
au_nat8_t meth_45(au_nat8_t lhs, au_nat8_t rhs);
/*
Method forward declaration
*/
au_nat8_t meth_46(au_nat8_t lhs, au_nat8_t rhs);
/*
Method forward declaration
*/
au_nat8_t meth_47(au_nat8_t lhs, au_nat8_t rhs);
/*
Method forward declaration
*/
au_nat8_t meth_48(au_nat8_t lhs, au_nat8_t rhs);
/*
Method forward declaration
*/
au_int8_t meth_49(au_int8_t lhs, au_int8_t rhs);
/*
Method forward declaration
*/
au_int8_t meth_50(au_int8_t lhs, au_int8_t rhs);
/*
Method forward declaration
*/
au_int8_t meth_51(au_int8_t lhs, au_int8_t rhs);
/*
Method forward declaration
*/
au_int8_t meth_52(au_int8_t lhs, au_int8_t rhs);
/*
Method forward declaration
*/
au_nat16_t meth_53(au_nat16_t lhs, au_nat16_t rhs);
/*
Method forward declaration
*/
au_nat16_t meth_54(au_nat16_t lhs, au_nat16_t rhs);
/*
Method forward declaration
*/
au_nat16_t meth_55(au_nat16_t lhs, au_nat16_t rhs);
/*
Method forward declaration
*/
au_nat16_t meth_56(au_nat16_t lhs, au_nat16_t rhs);
/*
Method forward declaration
*/
au_int16_t meth_57(au_int16_t lhs, au_int16_t rhs);
/*
Method forward declaration
*/
au_int16_t meth_58(au_int16_t lhs, au_int16_t rhs);
/*
Method forward declaration
*/
au_int16_t meth_59(au_int16_t lhs, au_int16_t rhs);
/*
Method forward declaration
*/
au_int16_t meth_60(au_int16_t lhs, au_int16_t rhs);
/*
Method forward declaration
*/
au_nat32_t meth_61(au_nat32_t lhs, au_nat32_t rhs);
/*
Method forward declaration
*/
au_nat32_t meth_62(au_nat32_t lhs, au_nat32_t rhs);
/*
Method forward declaration
*/
au_nat32_t meth_63(au_nat32_t lhs, au_nat32_t rhs);
/*
Method forward declaration
*/
au_nat32_t meth_64(au_nat32_t lhs, au_nat32_t rhs);
/*
Method forward declaration
*/
au_int32_t meth_65(au_int32_t lhs, au_int32_t rhs);
/*
Method forward declaration
*/
au_int32_t meth_66(au_int32_t lhs, au_int32_t rhs);
/*
Method forward declaration
*/
au_int32_t meth_67(au_int32_t lhs, au_int32_t rhs);
/*
Method forward declaration
*/
au_int32_t meth_68(au_int32_t lhs, au_int32_t rhs);
/*
Method forward declaration
*/
au_nat64_t meth_69(au_nat64_t lhs, au_nat64_t rhs);
/*
Method forward declaration
*/
au_nat64_t meth_70(au_nat64_t lhs, au_nat64_t rhs);
/*
Method forward declaration
*/
au_nat64_t meth_71(au_nat64_t lhs, au_nat64_t rhs);
/*
Method forward declaration
*/
au_nat64_t meth_72(au_nat64_t lhs, au_nat64_t rhs);
/*
Method forward declaration
*/
au_int64_t meth_73(au_int64_t lhs, au_int64_t rhs);
/*
Method forward declaration
*/
au_int64_t meth_74(au_int64_t lhs, au_int64_t rhs);
/*
Method forward declaration
*/
au_int64_t meth_75(au_int64_t lhs, au_int64_t rhs);
/*
Method forward declaration
*/
au_int64_t meth_76(au_int64_t lhs, au_int64_t rhs);
/*
Method forward declaration
*/
au_index_t meth_77(au_index_t lhs, au_index_t rhs);
/*
Method forward declaration
*/
au_index_t meth_78(au_index_t lhs, au_index_t rhs);
/*
Method forward declaration
*/
au_index_t meth_79(au_index_t lhs, au_index_t rhs);
/*
Method forward declaration
*/
au_index_t meth_80(au_index_t lhs, au_index_t rhs);
/*
Method forward declaration
*/
size_t meth_81(size_t lhs, size_t rhs);
/*
Method forward declaration
*/
size_t meth_82(size_t lhs, size_t rhs);
/*
Method forward declaration
*/
size_t meth_83(size_t lhs, size_t rhs);
/*
Method forward declaration
*/
size_t meth_84(size_t lhs, size_t rhs);