M2-Planet/cc-minimal.c

67 lines
2.1 KiB
C
Raw Normal View History

/* Copyright (C) 2016 Jeremiah Orians
* This file is part of M2-Planet.
*
* M2-Planet is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* M2-Planet is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with M2-Planet. If not, see <http://www.gnu.org/licenses/>.
*/
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
#include"cc.h"
/* The core functions */
void initialize_types();
struct token_list* read_all_tokens(FILE* a, struct token_list* current, char* filename);
struct token_list* reverse_list(struct token_list* head);
struct token_list* program();
void recursive_output(struct token_list* i, FILE* out);
int match(char* a, char* b);
char* parse_string(char* string);
int main()
{
MAX_STRING = 4096;
hold_string = calloc(MAX_STRING, sizeof(char));
FILE* in = fopen("tape_01", "r");
FILE* destination_file = fopen("tape_02", "w");
Architecture = KNIGHT_NATIVE;
global_token = read_all_tokens(in, global_token, "tape_01");
2020-12-21 15:57:17 +00:00
fclose(in);
if(NULL == global_token)
{
2021-04-03 23:56:55 +01:00
fputs("Either no input files were given or they were empty\n", stderr);
exit(EXIT_FAILURE);
}
global_token = reverse_list(global_token);
initialize_types();
reset_hold_string();
output_list = NULL;
program();
/* Output the program we have compiled */
2021-04-03 23:56:55 +01:00
fputs("\n# Core program\n", destination_file);
recursive_output(output_list, destination_file);
2021-04-03 23:56:55 +01:00
fputs("\n\n# Program global variables\n", destination_file);
recursive_output(globals_list, destination_file);
2021-04-03 23:56:55 +01:00
fputs("\n# Program strings\n", destination_file);
recursive_output(strings_list, destination_file);
2021-04-03 23:56:55 +01:00
fputs("\n:STACK\n", destination_file);
2020-12-21 15:57:17 +00:00
2021-04-03 23:56:55 +01:00
fclose(destination_file);
return EXIT_SUCCESS;
}