aboutsummaryrefslogtreecommitdiff
path: root/src/program.c
blob: e53eb6bc6816be6dda9e709a2dff5f5a34eebb71 (plain)
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
#include "../include/program.h"

#include "../include/std/mem.h"
#include "../include/std/hash.h"
#include "../include/std/alloc.h"
#include "../include/std/log.h"
#include "../include/std/buffer_view.h"
#include <stdio.h>
#include <errno.h>
#include <assert.h>
#include <string.h>

/* One gigabyte */
#define PROGRAM_MAX_SIZE 1024*1024*1024

/* TODO: If system is big-endian, then do endian conversion for all reads */

/* This matches IrNumberType */
typedef enum {
    NUMBER_TYPE_INTEGER,
    NUMBER_TYPE_FLOAT
} NumberType;

typedef union {
    i64 integer;
    f64 floating;
} NumberUnion;

typedef struct {
    NumberType type;
    NumberUnion value;
} Number;

static int hash_map_compare_u64(const void *a, const void *b) {
    return *(u64*)a == *(u64*)b;
}

static usize hash_u64(const u8 *data, usize size) {
    (void)size;
    return *(u64*)data;
}

int amal_program_init(amal_program *self) {
    ignore_result_int(buffer_init(&self->data, NULL));
    self->string_indices                = NULL;
    self->intermediates_start           = NULL;
    self->strings_start                 = NULL;
    self->extern_funcs_start            = NULL;
    self->exported_funcs                = NULL;
    self->exported_funcs_end            = NULL;
    self->imports_start                 = NULL;
    self->read_index                    = 0;
    self->main_func_instruction_offset  = ~(u32)0U;
    self->num_intermediates             = 0;
    self->num_strings                   = 0;
    self->num_functions                 = 0;
    self->num_extern_functions          = 0;
    self->num_exported_functions        = 0;
    self->num_imports                   = 0;
    self->return_value_index            = 0;

    cleanup_if_error(arena_allocator_init(&self->allocator));
    cleanup_if_error(hash_map_init(&self->extern_funcs_map, &self->allocator, sizeof(ProgramExternFunc), hash_map_compare_string, amal_hash_string));
    cleanup_if_error(hash_map_init(&self->deferred_func_calls, &self->allocator, sizeof(Buffer), hash_map_compare_u64, hash_u64));
    cleanup_if_error(buffer_append_header(&self->data));
    return 0;

    cleanup:
    amal_program_deinit(self);
    return -1;
}

void amal_program_deinit(amal_program *self) {
    arena_allocator_deinit(&self->allocator);
    am_free(self->string_indices);
    self->string_indices = NULL;
    if(self->data.data)
        buffer_deinit(&self->data);
}

int amal_program_register_extern_func(amal_program *self, BufferView name, void *func_ptr, u32 args_byte_size) {
    ProgramExternFunc extern_func;
    extern_func.func = func_ptr;
    extern_func.args_byte_size = args_byte_size;

    if(hash_map_contains(&self->extern_funcs_map, name))
        return AMAL_PROGRAM_EXTERN_FUNC_ALREADY_EXISTS;

    return hash_map_insert(&self->extern_funcs_map, name, &extern_func);
}

static u8* amal_program_get_extern_funcs_start_by_import_index(amal_program *self, u8 import_index) {
    BytecodeHeaderImport *header_import = (BytecodeHeaderImport*)self->imports_start;
    u32 extern_function_index = 0;
    header_import += import_index;
    assert(sizeof(extern_function_index) == sizeof(header_import->extern_function_index));
    am_memcpy(&extern_function_index, &header_import->extern_function_index, sizeof(extern_function_index));
    return (u8*)self->data.data + extern_function_index;
}

static u32 extern_func_get_total_param_size(BytecodeHeaderExternFunction *self) {
    return self->params_fixed_size + self->params_num_pointers * sizeof(void*);
}

typedef struct {
    BytecodeHeaderExternFunction extern_func;
    BufferView name;
} BytecodeHeaderExternFunctionFull;

/* TODO: Optimize this */
static void amal_program_get_header_extern_function_by_index(amal_program *self, u8 import_index, u16 index, BytecodeHeaderExternFunctionFull *result) {
    u32 i;
    u8 *extern_funcs_start = amal_program_get_extern_funcs_start_by_import_index(self, import_index);
    extern_funcs_start += sizeof(u16) + sizeof(u32);

    for(i = 0; i < (u32)index; ++i) {
        BytecodeHeaderExternFunction *extern_func = (BytecodeHeaderExternFunction*)extern_funcs_start;
        extern_funcs_start += sizeof(BytecodeHeaderExternFunction);
        extern_funcs_start += extern_func->name_len + 1; /* +1 for skipping the null-terminated character */
    }

    am_memcpy(&result->extern_func, extern_funcs_start, sizeof(result->extern_func));
    result->name.size = result->extern_func.name_len;
    result->name.data = (const char*)extern_funcs_start + sizeof(result->extern_func);
}


static CHECK_RESULT int amal_program_get_extern_func_by_index(amal_program *self, u8 import_index, u16 index, ProgramExternFunc *result) {
    BytecodeHeaderExternFunctionFull extern_func;
    amal_program_get_header_extern_function_by_index(self, import_index, index, &extern_func);
    
    if(!hash_map_get(&self->extern_funcs_map, extern_func.name, result)) {
        amal_log_error("Extern function \"%.*s\" has not been registered", extern_func.name.size, extern_func.name.data);
        return AMAL_PROGRAM_NO_SUCH_EXTERNAL_FUNCTION;
    }
    
    if(extern_func.extern_func.flags & FUNC_FLAG_VARARGS) {
        if(extern_func_get_total_param_size(&extern_func.extern_func) < result->args_byte_size) {
            amal_log_error("Extern function %.*s was registered to take at least %u byte(s), but the program says it takes at least %u byte(s)",
                extern_func.name.size, extern_func.name.data, result->args_byte_size, extern_func_get_total_param_size(&extern_func.extern_func));
            return AMAL_PROGRAM_NO_SUCH_EXTERNAL_FUNCTION;
        }
    } else if(extern_func_get_total_param_size(&extern_func.extern_func) != result->args_byte_size) {
        amal_log_error("Extern function %.*s was registered to take %u byte(s), but the program says it takes %u byte(s)",
            extern_func.name.size, extern_func.name.data, result->args_byte_size, extern_func_get_total_param_size(&extern_func.extern_func));
        return AMAL_PROGRAM_NO_SUCH_EXTERNAL_FUNCTION;
    }
    return 0;
}

static CHECK_RESULT int amal_program_set_exported_function_instruction_offset_advance(amal_program *self, u32 instruction_offset) {
    if(self->exported_funcs >= self->exported_funcs_end) {
        amal_log_error("The number of exported functions in the instructions is more than the number of exported instructions in the header");
        return AMAL_PROGRAM_INSTRUCTION_INVALID_EXPORTED_FUNC_INDEX;
    }

    {
        u8 num_args;
        u8 func_name_size;

        if((usize)(self->exported_funcs_end - self->exported_funcs) < sizeof(instruction_offset) + sizeof(num_args) + sizeof(func_name_size))
            return AMAL_PROGRAM_INSTRUCTION_INVALID_EXPORTED_FUNC_INDEX;

        am_memcpy(self->exported_funcs, &instruction_offset, sizeof(instruction_offset));
        num_args = self->exported_funcs[sizeof(instruction_offset)];
        func_name_size = self->exported_funcs[sizeof(instruction_offset) + sizeof(num_args)];
        self->exported_funcs += sizeof(instruction_offset) + sizeof(num_args) + sizeof(func_name_size);
        if(self->main_func_instruction_offset == ~(u32)0U && func_name_size == 4 && am_memeql(self->exported_funcs, "main", 4))
            self->main_func_instruction_offset = instruction_offset;

        /* +1 to skip null-termination character */
        if((usize)(self->exported_funcs_end - self->exported_funcs) < func_name_size + 1U)
            return AMAL_PROGRAM_INSTRUCTION_INVALID_EXPORTED_FUNC_INDEX;

        self->exported_funcs += func_name_size + 1; /* +1 to skip null-termination character */
    }

    return 0;
}

int amal_program_append_bytecode(amal_program *self, Bytecode *bytecode) {
    /* Sanity check for indices used later. A program shouldn't be more than 1gb */
    if(self->data.size + bytecode->data.size > PROGRAM_MAX_SIZE) {
        amal_log_error("Program is too large. Max size is 1GB");
        return -1;
    }
    return buffer_append(&self->data, bytecode->data.data, bytecode->data.size);
}

static usize bytes_left_to_read(amal_program *self) {
    assert(self->read_index <= self->data.size);
    return self->data.size - self->read_index;
}

static CHECK_RESULT int amal_program_read_header(amal_program *self) {
    BytecodeHeader header;

    if(bytes_left_to_read(self) < sizeof(header))
        return AMAL_PROGRAM_INVALID_HEADER;

    am_memcpy(&header, self->data.data + self->read_index, sizeof(header));
    self->read_index += sizeof(header);
#ifdef AMAL_BIG_ENDIAN
    #error TODO: Support big endian for program decoding
#endif

    if(memcmp(header.magic_number, AMAL_BYTECODE_MAGIC_NUMBER, AMAL_BYTECODE_MAGIC_NUMBER_SIZE) != 0)
        return AMAL_PROGRAM_INVALID_MAGIC_NUMBER;

    /*
        A program is only incompatible if the major version is newer than the version that is used to run it.
        TODO: Implement backwards compatible reads, starting from when the program bytecode breaks backwards compatibility
    */
    if(header.major_version > AMAL_BYTECODE_MAJOR_VERSION)
        return AMAL_PROGRAM_INCOMPATIBLE;

    return AMAL_PROGRAM_OK;
}

static CHECK_RESULT bool amal_program_read_advance(amal_program *self, void *output, usize bytes_to_read) {
    if(bytes_left_to_read(self) < bytes_to_read)
        return bool_false;
    am_memcpy(output, self->data.data + self->read_index, bytes_to_read);
    self->read_index += bytes_to_read;
    return bool_true;
}

static CHECK_RESULT int amal_program_advance_section_magic_number(amal_program *self) {
    u32 magic_number;
    if(bytes_left_to_read(self) < sizeof(u32))
        return AMAL_PROGRAM_SECTION_ERROR;
    
    am_memcpy(&magic_number, self->data.data + self->read_index, sizeof(magic_number));
    if(magic_number != AMAL_BYTECODE_SECTION_MAGIC_NUMBER)
        return AMAL_PROGRAM_SECTION_ERROR;
    
    self->read_index += sizeof(magic_number);
    return 0;
}

static CHECK_RESULT int amal_program_read_intermediates(amal_program *self) {
    u32 intermediates_size;

    if(bytes_left_to_read(self) < sizeof(intermediates_size)) {
        amal_log_error("Not enough space in program to intermediates size");
        return AMAL_PROGRAM_INVALID_INTERMEDIATES;
    }

    am_memcpy(&intermediates_size, &self->data.data[self->read_index], sizeof(intermediates_size));
    self->read_index += sizeof(intermediates_size);

    if(bytes_left_to_read(self) < intermediates_size) {
        amal_log_error("Not enough space in program to read all intermediates");
        return AMAL_PROGRAM_INVALID_INTERMEDIATES_SIZE;
    }

    self->intermediates_start = (u8*)(self->data.data + self->read_index);
    self->num_intermediates = intermediates_size / (sizeof(u8) + sizeof(u64));
    self->read_index += intermediates_size;

    return AMAL_PROGRAM_OK;
}

static CHECK_RESULT int amal_program_read_strings(amal_program *self) {
    u32 strings_size;
    u32 *string_index_ptr;

    if(!amal_program_read_advance(self, &self->num_strings, sizeof(u16)))
        return AMAL_PROGRAM_INVALID_STRINGS;

    if(!amal_program_read_advance(self, &strings_size, sizeof(strings_size)))
        return AMAL_PROGRAM_INVALID_STRINGS;

    if(bytes_left_to_read(self) < strings_size)
        return AMAL_PROGRAM_INVALID_STRINGS_SIZE;

    am_free(self->string_indices);
    self->string_indices = NULL;
    if(am_malloc(sizeof(u32) * self->num_strings, (void**)&self->string_indices) != 0)
        return AMAL_PROGRAM_ALLOC_FAILURE;
    string_index_ptr = self->string_indices;

    {
        const u32 read_start = self->read_index;
        const u32 read_end = read_start + strings_size;
        self->strings_start = (u8*)(self->data.data + self->read_index);
        while(self->read_index < read_end) {
            u16 string_size;

            if(bytes_left_to_read(self) < sizeof(string_size))
                return AMAL_PROGRAM_INVALID_STRINGS;

            *string_index_ptr = self->read_index - read_start;
            ++string_index_ptr;
            am_memcpy(&string_size, &self->data.data[self->read_index], sizeof(string_size));
            self->read_index += sizeof(string_size);

            /* +1 to skip null-termination character */
            if(bytes_left_to_read(self) < string_size + 1U)
                return AMAL_PROGRAM_INVALID_STRINGS;

            self->read_index += string_size + 1; /* +1 to skip null-termination character */
        }
        assert(self->read_index == read_end);
    }

    return AMAL_PROGRAM_OK;
}

static CHECK_RESULT int amal_program_read_functions(amal_program *self) {
    u32 funcs_size;

    if(!amal_program_read_advance(self, &self->num_functions, sizeof(u16)))
        return AMAL_PROGRAM_INVALID_FUNCTIONS;

    if(!amal_program_read_advance(self, &funcs_size, sizeof(funcs_size)) || bytes_left_to_read(self) < funcs_size)
        return AMAL_PROGRAM_INVALID_FUNCTIONS;

    self->funcs_start = (u8*)(self->data.data + self->read_index);
    self->read_index += funcs_size;
    return AMAL_PROGRAM_OK;
}

static CHECK_RESULT int amal_program_read_external_functions(amal_program *self) {
    u32 extern_funcs_size;

    if(!amal_program_read_advance(self, &self->num_extern_functions, sizeof(u16)))
        return AMAL_PROGRAM_INVALID_EXTERNAL_FUNCTIONS;

    if(!amal_program_read_advance(self, &extern_funcs_size, sizeof(extern_funcs_size)))
        return AMAL_PROGRAM_INVALID_EXTERNAL_FUNCTIONS;

    if(bytes_left_to_read(self) < extern_funcs_size)
        return AMAL_PROGRAM_INVALID_EXTERNAL_FUNCTIONS_SIZE;

    self->read_index += extern_funcs_size;
    return AMAL_PROGRAM_OK;
}

static CHECK_RESULT int amal_program_read_exported_functions(amal_program *self) {
    u32 export_funcs_size;

    if(!amal_program_read_advance(self, &self->num_exported_functions, sizeof(u16)))
        return AMAL_PROGRAM_INVALID_EXPORTED_FUNCTIONS;

    if(!amal_program_read_advance(self, &export_funcs_size, sizeof(export_funcs_size)))
        return AMAL_PROGRAM_INVALID_EXPORTED_FUNCTIONS;

    if(bytes_left_to_read(self) < export_funcs_size)
        return AMAL_PROGRAM_INVALID_EXPORTED_FUNCTIONS_SIZE;

    /*
        Exported functions doesn't need list of indices to the data, since exported functions
        are always sorted in the instructions in the same order as list of exported functions
    */
    self->exported_funcs = (u8*)(self->data.data + self->read_index);
    self->exported_funcs_end = self->exported_funcs + export_funcs_size;
    self->read_index += export_funcs_size;
    return AMAL_PROGRAM_OK;
}

static CHECK_RESULT int amal_program_read_imports(amal_program *self) {
    u32 imports_size;

    if(!amal_program_read_advance(self, &self->num_imports, sizeof(u8)))
        return AMAL_PROGRAM_INVALID_IMPORTS;

    if(!amal_program_read_advance(self, &imports_size, sizeof(imports_size)) || bytes_left_to_read(self) < imports_size)
        return AMAL_PROGRAM_INVALID_IMPORTS;

    self->imports_start = (u8*)(self->data.data + self->read_index);
    self->read_index += imports_size;
    return AMAL_PROGRAM_OK;
}

static CHECK_RESULT int amal_program_get_intermediate_by_index(amal_program *self, u16 index, Number *result) {
    if(index >= self->num_intermediates)
        return AMAL_PROGRAM_INSTRUCTION_INVALID_INTERMEDIATE_INDEX;
    
    am_memcpy(&result->type, &self->intermediates_start[(sizeof(u8) + sizeof(u64)) * (usize)index], sizeof(u8));
    am_memcpy(&result->value, &self->intermediates_start[(sizeof(u8) + sizeof(u64)) * (usize)index + sizeof(u8)], sizeof(u64));
    return 0;
}

static CHECK_RESULT int amal_program_get_data_by_index(amal_program *self, u16 index, BufferView *result) {
    u8 *str_ptr;

    if(index >= self->num_strings) {
        amal_log_error("Data index %ld is out of range (%ld)", index, self->num_strings);
        return AMAL_PROGRAM_INSTRUCTION_INVALID_DATA_INDEX;
    }
    
    str_ptr = self->strings_start + self->string_indices[index];
    am_memcpy(&result->size, str_ptr, sizeof(u16));
    result->data = (const char*)(str_ptr + sizeof(u16));
    return 0;
}

static u8* amal_program_get_funcs_start_by_import_index(amal_program *self, u8 import_index) {
    BytecodeHeaderImport *header_import = (BytecodeHeaderImport*)self->imports_start;
    u32 function_index = 0;
    header_import += import_index;
    assert(sizeof(function_index) == sizeof(header_import->function_index));
    am_memcpy(&function_index, &header_import->function_index, sizeof(function_index));
    return (u8*)self->data.data + function_index;
}

static void amal_program_get_header_function_by_index(amal_program *self, u8 import_index, u16 index, BytecodeHeaderFunction *result) {
    u8 *funcs_start = amal_program_get_funcs_start_by_import_index(self, import_index);
    BytecodeHeaderFunction *header_func = (BytecodeHeaderFunction*)(funcs_start + sizeof(u16) + sizeof(u32));
    am_memcpy(result, header_func + index, sizeof(BytecodeHeaderFunction));
}

static u64 deferred_func_call_get_key(amal_program *self, u8 import_index, u16 func_index) {
    BytecodeHeaderImport *header_import = (BytecodeHeaderImport*)self->imports_start;
    u32 function_index = 0;
    header_import += import_index;
    assert(sizeof(function_index) == sizeof(header_import->function_index));
    am_memcpy(&function_index, &header_import->function_index, sizeof(function_index));
    return ((u64)func_index << 32) | (u64)function_index;
}

static CHECK_RESULT int resolve_deferred_func_calls(amal_program *self, amal_executor *executor, u16 func_index) {
    u64 key = deferred_func_call_get_key(self, 0, func_index);
    BufferView key_mem = create_buffer_view((char*)&key, sizeof(key));
    u32 current_code_offset = amal_exec_get_code_offset(executor);

    Buffer* deferred_func_call_list;
    if(!hash_map_get_ref(&self->deferred_func_calls, key_mem, (void**)&deferred_func_call_list))
        return 0;
    
    {
        u32 *code_offset = buffer_begin(deferred_func_call_list);
        u32 *code_offset_end = buffer_end(deferred_func_call_list);
        for(; code_offset != code_offset_end; ++code_offset) {
            amal_exec_call_overwrite(executor, *code_offset, current_code_offset - *code_offset);
        }
        return buffer_set_capacity(deferred_func_call_list, 0);
    }
}

static void header_func_set_offset(amal_program *self, u16 func_index, u32 code_offset) {
    BytecodeHeaderFunction *header_func = ((BytecodeHeaderFunction*)self->funcs_start) + func_index;
    assert(sizeof(header_func->func_offset) == sizeof(code_offset));
    am_memcpy(&header_func->func_offset, &code_offset, sizeof(code_offset));
}

static u8 header_func_get_num_params(amal_program *self, u16 func_index) {
    u8 result;
    BytecodeHeaderFunction *header_func = ((BytecodeHeaderFunction*)self->funcs_start) + func_index;
    assert(sizeof(header_func->num_params) == sizeof(result));
    am_memcpy(&result, &header_func->num_params, sizeof(result));
    return result;
}

static CHECK_RESULT int amal_program_read_instructions(amal_program *self, amal_executor *executor) {
    u32 instructions_size;
    u32 read_start;
    u32 read_end;
    u16 func_counter;
    bool inside_func;

    inside_func = bool_false;
    (void)inside_func;
    func_counter = 0;
    self->return_value_index = 0;

    if(!amal_program_read_advance(self, &instructions_size, sizeof(instructions_size)))
        return AMAL_PROGRAM_INVALID_INSTRUCTIONS_SIZE;

    if(bytes_left_to_read(self) < instructions_size)
        return AMAL_PROGRAM_INVALID_INSTRUCTIONS_SIZE;

    /*
        TODO: self->reg should be of type Number and each arithmetic operation should operate
        on the type of the register.
    */

    return_if_error(amal_executor_instructions_start(executor, self->num_functions));

    read_start = self->read_index;
    read_end = read_start + instructions_size;
    while(self->read_index < read_end) {
        AmalOpcode opcode;
        opcode = self->data.data[self->read_index];
        self->read_index += sizeof(AmalOpcodeType);
        /* TODO: Check instruction length and check if that amount of bytes can be read */
        switch(opcode) {
            case AMAL_OP_NOP: {
                return_if_error(amal_exec_nop(executor));
                break;
            }
            case AMAL_OP_SETZ: {
                return_if_error(amal_exec_setz(executor, self->data.data[self->read_index]));
                self->read_index += 1;
                break;
            }
            case AMAL_OP_MOV: {
                return_if_error(amal_exec_mov(executor, self->data.data[self->read_index], self->data.data[self->read_index + 1]));
                self->read_index += 2;
                break;
            }
            case AMAL_OP_MOVI: {
                u16 intermediate_index;
                Number number;

                am_memcpy(&intermediate_index, &self->data.data[self->read_index + sizeof(AmalReg)], sizeof(intermediate_index));
                return_if_error(amal_program_get_intermediate_by_index(self, intermediate_index, &number));
                return_if_error(amal_exec_movi(executor, self->data.data[self->read_index], number.value.integer));

                self->read_index += 3;
                break;
            }
            case AMAL_OP_MOVD: {
                u16 data_index;
                BufferView data_ptr;

                am_memcpy(&data_index, &self->data.data[self->read_index + sizeof(AmalReg)], sizeof(data_index));

                return_if_error(amal_program_get_data_by_index(self, data_index, &data_ptr));
                return_if_error(amal_exec_movd(executor, self->data.data[self->read_index], data_ptr));

                self->read_index += 3;
                break;
            }
            case AMAL_OP_LOADF: {
#if 0
                u8 dst_reg = self->data.data[self->read_index];
                u16 func_index;
                am_memcpy(&func_index, self->data.data + self->read_index + sizeof(dst_reg), sizeof(func_index));

                amal_program_get_header_function_by_index(self, import_index, func_index, &func_def);
                assert(func_def.num_return_types == 1 && "TODO: Support 0 and more than 1 return values");
                assert(self->return_value_index == 1);
                dst_reg = self->return_values_stack[0];
                self->return_value_index = 0;
                
                /* func_offset will only be non-zero when the function has been decoded (FUNC_START) */
                if(func_def.func_offset != ~(u32)0UL) {
                    /* TODO: Instead of pushing num args, push the sum of sizeof the last num_args */
                    return_if_error(amal_exec_call(executor, func_def.func_offset, dst_reg));
                } else {
                    /*
                        The code for the function has not been generated yet (the function is defined after the current location).
                        Make a dummy call and replace the call target after the function has been generated
                    */
                    u64 key = deferred_func_call_get_key(self, import_index, func_index);
                    BufferView key_mem = create_buffer_view((char*)&key, sizeof(key));
                    u32 code_offset = amal_exec_get_code_offset(executor);

                    Buffer* deferred_func_call_list;
                    if(hash_map_get_ref(&self->deferred_func_calls, key_mem, (void**)&deferred_func_call_list))
                        return_if_error(buffer_append(deferred_func_call_list, &code_offset, sizeof(code_offset)));
                    else {
                        Buffer new_deferred_call_list;
                        return_if_error(buffer_init(&new_deferred_call_list, &self->allocator));
                        return_if_error(buffer_append(&new_deferred_call_list, &code_offset, sizeof(code_offset)));
                        return_if_error(hash_map_insert(&self->deferred_func_calls, key_mem, &new_deferred_call_list));
                    }
                    /* Dummy call to offset 0, offset will be replace later when the target function hits AMAL_OP_FUNC_START */
                    return_if_error(amal_exec_call(executor, 0, dst_reg));
                }
#endif
                assert(bool_false);
                self->read_index += 3;
                break;
            }
            case AMAL_OP_ADD: {
                return_if_error(amal_exec_add(executor, self->data.data[self->read_index], self->data.data[self->read_index + 1], self->data.data[self->read_index + 2]));
                self->read_index += 3;
                break;
            }
            case AMAL_OP_SUB: {
                return_if_error(amal_exec_sub(executor, self->data.data[self->read_index], self->data.data[self->read_index + 1], self->data.data[self->read_index + 2]));
                self->read_index += 3;
                break;
            }
            case AMAL_OP_IMUL: {
                return_if_error(amal_exec_imul(executor, self->data.data[self->read_index], self->data.data[self->read_index + 1], self->data.data[self->read_index + 2]));
                self->read_index += 3;
                break;
            }
            case AMAL_OP_MUL: {
                return_if_error(amal_exec_mul(executor, self->data.data[self->read_index], self->data.data[self->read_index + 1], self->data.data[self->read_index + 2]));
                self->read_index += 3;
                break;
            }
            case AMAL_OP_IDIV: {
                return_if_error(amal_exec_idiv(executor, self->data.data[self->read_index], self->data.data[self->read_index + 1], self->data.data[self->read_index + 2]));
                self->read_index += 3;
                break;
            }
            case AMAL_OP_DIV: {
                return_if_error(amal_exec_div(executor, self->data.data[self->read_index], self->data.data[self->read_index + 1], self->data.data[self->read_index + 2]));
                self->read_index += 3;
                break;
            }
            case AMAL_OP_PUSH: {
                return_if_error(amal_exec_push(executor, self->data.data[self->read_index]));
                self->read_index += 1;
                break;
            }
            case AMAL_OP_PUSHI: {
                u16 intermediate_index;
                Number number;

                am_memcpy(&intermediate_index, &self->data.data[self->read_index], sizeof(intermediate_index));
                return_if_error(amal_program_get_intermediate_by_index(self, intermediate_index, &number));
                return_if_error(amal_exec_pushi(executor, number.value.integer));
                self->read_index += 2;
                break;
            }
            case AMAL_OP_PUSHD: {
                u16 data_index;
                BufferView data_ptr;

                am_memcpy(&data_index, &self->data.data[self->read_index], sizeof(data_index));
                return_if_error(amal_program_get_data_by_index(self, data_index, &data_ptr));
                return_if_error(amal_exec_pushd(executor, data_ptr));
                self->read_index += 2;
                break;
            }
            case AMAL_OP_PUSH_RET: {
                /* TODO: Validate return value index doesn't go out of bounds? */
                self->return_values_stack[self->return_value_index++] = self->data.data[self->read_index];
                self->read_index += 1;
                break;
            }
            case AMAL_OP_CALL_START: {
                u8 num_args = self->data.data[self->read_index];
                return_if_error(amal_exec_call_start(executor, num_args));
                self->read_index += 1;
                break;
            }
            case AMAL_OP_CALL: {
                u8 import_index;
                u16 func_index;
                BytecodeHeaderFunction func_def;
                AmalReg dst_reg;

                am_memcpy(&import_index, self->data.data + self->read_index, sizeof(import_index));
                am_memcpy(&func_index, self->data.data + self->read_index + sizeof(import_index), sizeof(func_index));
                amal_program_get_header_function_by_index(self, import_index, func_index, &func_def);
                assert(func_def.num_return_types == 1 && "TODO: Support 0 and more than 1 return values");
                assert(self->return_value_index == 1);
                dst_reg = self->return_values_stack[0];
                self->return_value_index = 0;

                /* func_offset will only be non-zero when the function has been decoded (FUNC_START) */
                if(func_def.func_offset != ~(u32)0UL) {
                    /* TODO: Instead of pushing num args, push the sum of sizeof the last num_args */
                    return_if_error(amal_exec_call(executor, func_def.func_offset, dst_reg));
                } else {
                    /*
                        The code for the function has not been generated yet (the function is defined after the current location).
                        Make a dummy call and replace the call target after the function has been generated
                    */
                    u64 key = deferred_func_call_get_key(self, import_index, func_index);
                    BufferView key_mem = create_buffer_view((char*)&key, sizeof(key));
                    u32 code_offset = amal_exec_get_code_offset(executor);

                    Buffer* deferred_func_call_list;
                    if(hash_map_get_ref(&self->deferred_func_calls, key_mem, (void**)&deferred_func_call_list))
                        return_if_error(buffer_append(deferred_func_call_list, &code_offset, sizeof(code_offset)));
                    else {
                        Buffer new_deferred_call_list;
                        return_if_error(buffer_init(&new_deferred_call_list, &self->allocator));
                        return_if_error(buffer_append(&new_deferred_call_list, &code_offset, sizeof(code_offset)));
                        return_if_error(hash_map_insert(&self->deferred_func_calls, key_mem, &new_deferred_call_list));
                    }
                    /* Dummy call to offset 0, offset will be replace later when the target function hits AMAL_OP_FUNC_START */
                    return_if_error(amal_exec_call(executor, 0, dst_reg));
                }
                self->read_index += 3;
                break;
            }
            case AMAL_OP_CALLR: {
                AmalReg dst_reg;
                AmalReg func_ptr_reg = self->data.data[self->read_index];
                assert(self->return_value_index == 1);
                dst_reg = self->return_values_stack[0];
                self->return_value_index = 0;
                return_if_error(amal_exec_callr(executor, func_ptr_reg, dst_reg));
                self->read_index += 1;
                break;
            }
            case AMAL_OP_CALLE: {
                u8 import_index;
                u16 extern_func_index;
                AmalReg dst_reg;

                am_memcpy(&import_index, self->data.data + self->read_index, sizeof(import_index));
                am_memcpy(&extern_func_index, self->data.data + self->read_index + sizeof(import_index), sizeof(extern_func_index));
                assert(self->return_value_index == 1 && "TODO: Support extern functions that don't return any value");
                dst_reg = self->return_values_stack[0];
                self->return_value_index = 0;

                {
                    ProgramExternFunc extern_func;
                    return_if_error(amal_program_get_extern_func_by_index(self, import_index, extern_func_index, &extern_func));
                    return_if_error(amal_exec_calle(executor, extern_func.func, dst_reg));
                }
                self->read_index += 3;
                break;
            }
            case AMAL_OP_EQ: {
                return_if_error(amal_exec_eq(executor, self->data.data[self->read_index], self->data.data[self->read_index + 1], self->data.data[self->read_index + 2]));
                self->read_index += 3;
                break;
            }
            case AMAL_OP_NEQ: {
                return_if_error(amal_exec_neq(executor, self->data.data[self->read_index], self->data.data[self->read_index + 1], self->data.data[self->read_index + 2]));
                self->read_index += 3;
                break;
            }
            case AMAL_OP_ILT: {
                return_if_error(amal_exec_ilt(executor, self->data.data[self->read_index], self->data.data[self->read_index + 1], self->data.data[self->read_index + 2]));
                self->read_index += 3;
                break;
            }
            case AMAL_OP_ILE: {
                return_if_error(amal_exec_ile(executor, self->data.data[self->read_index], self->data.data[self->read_index + 1], self->data.data[self->read_index + 2]));
                self->read_index += 3;
                break;
            }
            case AMAL_OP_IGT: {
                return_if_error(amal_exec_igt(executor, self->data.data[self->read_index], self->data.data[self->read_index + 1], self->data.data[self->read_index + 2]));
                self->read_index += 3;
                break;
            }
            case AMAL_OP_IGE: {
                return_if_error(amal_exec_ige(executor, self->data.data[self->read_index], self->data.data[self->read_index + 1], self->data.data[self->read_index + 2]));
                self->read_index += 3;
                break;
            }
            case AMAL_OP_LT: {
                return_if_error(amal_exec_lt(executor, self->data.data[self->read_index], self->data.data[self->read_index + 1], self->data.data[self->read_index + 2]));
                self->read_index += 3;
                break;
            }
            case AMAL_OP_LE: {
                return_if_error(amal_exec_le(executor, self->data.data[self->read_index], self->data.data[self->read_index + 1], self->data.data[self->read_index + 2]));
                self->read_index += 3;
                break;
            }
            case AMAL_OP_GT: {
                return_if_error(amal_exec_gt(executor, self->data.data[self->read_index], self->data.data[self->read_index + 1], self->data.data[self->read_index + 2]));
                self->read_index += 3;
                break;
            }
            case AMAL_OP_GE: {
                return_if_error(amal_exec_ge(executor, self->data.data[self->read_index], self->data.data[self->read_index + 1], self->data.data[self->read_index + 2]));
                self->read_index += 3;
                break;
            }
            case AMAL_OP_BIT_AND: {
                return_if_error(amal_exec_and(executor, self->data.data[self->read_index], self->data.data[self->read_index + 1], self->data.data[self->read_index + 2]));
                self->read_index += 3;
                break;
            }
            case AMAL_OP_JZ: {
                AmalReg reg;
                u16 target_label;
                reg = self->data.data[self->read_index];
                am_memcpy(&target_label, self->data.data + self->read_index + sizeof(reg), sizeof(target_label));
                return_if_error(amal_exec_jz(executor, reg, target_label));
                self->read_index += 3;
                break;
            }
            case AMAL_OP_JMP: {
                u16 target_label;
                am_memcpy(&target_label, self->data.data + self->read_index, sizeof(target_label));
                return_if_error(amal_exec_jmp(executor, target_label));
                self->read_index += 2;
                break;
            }
            case AMAL_OP_RET: {
                const AmalReg reg = self->data.data[self->read_index];
                return_if_error(amal_exec_ret(executor, reg));
                self->read_index += 1;
                break;
            }
            case AMAL_OP_FUNC_START: {
                u8 func_flags;
                u8 func_num_params;
                u16 func_num_local_var_regs;

                assert(!inside_func);
                inside_func = bool_true;
                assert(func_counter < self->num_functions);

                func_num_params = header_func_get_num_params(self, func_counter);
                header_func_set_offset(self, func_counter, amal_exec_get_code_offset(executor));
                return_if_error(resolve_deferred_func_calls(self, executor, func_counter));
                ++func_counter;

                func_flags = self->data.data[self->read_index];
                am_memcpy(&func_num_local_var_regs, self->data.data + self->read_index + sizeof(func_flags), sizeof(func_num_local_var_regs));
                if(func_flags & FUNC_FLAG_EXPORTED)
                    return_if_error(amal_program_set_exported_function_instruction_offset_advance(self, amal_exec_get_code_offset(executor)));
                return_if_error(amal_exec_func_start(executor, func_num_params, func_num_local_var_regs));
                self->read_index += 3;
                break;
            }
            case AMAL_OP_FUNC_END: {
                assert(inside_func);
                inside_func = bool_false;
                /* TODO: Validate FUNC_END is called for every FUNC_START, otherwise stack will be corrupted */
                return_if_error(amal_exec_func_end(executor));
                break;
            }
            case AMAL_OP_LABEL: {
                return_if_error(amal_exec_label(executor));
                break;
            }
        }
    }

    assert(self->read_index == read_end);
    return_if_error(amal_executor_instructions_end(executor));
    return AMAL_PROGRAM_OK;
}

int amal_program_run(amal_program *self) {
    int result;
    amal_executor *executor;

    if(self->data.size > PROGRAM_MAX_SIZE) {
        amal_log_error("Program is too large. Max size is 1GB");
        return AMAL_PROGRAM_ERR;
    }
    result = AMAL_PROGRAM_ERR;
    return_if_error(amal_executor_init(&executor));

    cleanup_if_error(amal_program_read_header(self));
    while(bytes_left_to_read(self) > 0) {
        cleanup_if_error(amal_program_advance_section_magic_number(self));
        cleanup_if_error(amal_program_read_intermediates(self));

        cleanup_if_error(amal_program_advance_section_magic_number(self));
        cleanup_if_error(amal_program_read_strings(self));

        cleanup_if_error(amal_program_advance_section_magic_number(self));
        cleanup_if_error(amal_program_read_functions(self));

        cleanup_if_error(amal_program_advance_section_magic_number(self));
        cleanup_if_error(amal_program_read_external_functions(self));

        cleanup_if_error(amal_program_advance_section_magic_number(self));
        cleanup_if_error(amal_program_read_exported_functions(self));

        cleanup_if_error(amal_program_advance_section_magic_number(self));
        cleanup_if_error(amal_program_read_imports(self));

        cleanup_if_error(amal_program_advance_section_magic_number(self));
        cleanup_if_error(amal_program_read_instructions(self, executor));
    }
    if(self->main_func_instruction_offset == ~(u32)0U) {
        amal_log_error("The program is missing a main function");
        result = AMAL_PROGRAM_NO_MAIN_FUNC;
        goto cleanup;
    }
    result = amal_executor_run(executor, self->main_func_instruction_offset);

    cleanup:
    amal_executor_deinit(executor);
    return result;
}

int amal_program_save(amal_program *self, const char *filepath) {
    int err = 0;
    FILE *file = fopen(filepath, "wb");
    if(!file) {
        err = -errno;
        goto cleanup;
    }

    if(fwrite(self->data.data, 1, self->data.size, file) != self->data.size) {
        err = -errno;
        goto cleanup;
    }

    cleanup:
    if(err != 0)
        perror(filepath);
    if(file)
        fclose(file);
    return err;
}