M2-Planet/cc.c

112 lines
3.2 KiB
C
Raw Normal View History

2017-11-05 14:23:17 +00:00
/* Copyright (C) 2016 Jeremiah Orians
* This file is part of stage0.
*
* stage0 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.
*
* stage0 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 stage0. If not, see <http://www.gnu.org/licenses/>.
*/
2018-02-24 02:18:23 +00:00
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
#include"cc.h"
/* The core functions */
void initialize_types();
2018-05-26 21:33:00 +01:00
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(struct token_list* out);
void recursive_output(struct token_list* i, FILE* out);
2018-02-24 02:18:23 +00:00
int match(char* a, char* b);
void file_print(char* s, FILE* f);
char* parse_string(char* string);
2018-02-24 02:18:23 +00:00
int main(int argc, char** argv)
{
FILE* in = stdin;
FILE* destination_file = stdout;
2018-02-24 02:18:23 +00:00
int i = 1;
while(i <= argc)
2017-11-05 14:23:17 +00:00
{
2018-02-24 02:18:23 +00:00
if(NULL == argv[i])
{
2018-02-24 02:18:23 +00:00
i = i + 1;
}
else if(match(argv[i], "-f"))
{
2018-05-26 21:33:00 +01:00
char* name = argv[i + 1];
in = fopen(name, "r");
2018-02-24 02:18:23 +00:00
if(NULL == in)
{
2018-02-24 02:18:23 +00:00
file_print("Unable to open for reading file: ", stderr);
2018-05-26 21:33:00 +01:00
file_print(name, stderr);
2018-02-24 02:18:23 +00:00
file_print("\x0A Aborting to avoid problems\x0A", stderr);
exit(EXIT_FAILURE);
}
2018-05-26 21:33:00 +01:00
global_token = read_all_tokens(in, global_token, name);
2018-02-24 02:18:23 +00:00
i = i + 2;
}
else if(match(argv[i], "-o"))
{
destination_file = fopen(argv[i + 1], "w");
if(NULL == destination_file)
{
2018-02-24 02:18:23 +00:00
file_print("Unable to open for writing file: ", stderr);
file_print(argv[i + 1], stderr);
file_print("\x0A Aborting to avoid problems\x0A", stderr);
exit(EXIT_FAILURE);
}
2018-02-24 02:18:23 +00:00
i = i + 2;
}
else if(match(argv[i], "--help"))
{
file_print(" -f input file\x0A -o output file\x0A --help for this message\x0A --version for file version\x0A", stdout);
exit(EXIT_SUCCESS);
}
else if(match(argv[i], "--version"))
{
file_print("Basic test version 0.0.0.1a\x0A", stderr);
exit(EXIT_SUCCESS);
}
else
{
file_print("UNKNOWN ARGUMENT\x0A", stdout);
exit(EXIT_FAILURE);
}
2017-11-05 14:23:17 +00:00
}
/* Deal with special case of wanting to read from standard input */
if(stdin == in)
{
2018-05-26 21:33:00 +01:00
global_token = read_all_tokens(in, global_token, "STDIN");
}
if(NULL == global_token)
2017-11-05 14:23:17 +00:00
{
file_print("Either no input files were given or they were empty\n", stderr);
2017-11-05 14:23:17 +00:00
exit(EXIT_FAILURE);
}
global_token = reverse_list(global_token);
2017-11-05 14:23:17 +00:00
initialize_types();
2017-11-08 00:51:23 +00:00
struct token_list* output_list = program(NULL);
/* Output the program we have compiled */
file_print("\n# Core program\n\n", destination_file);
recursive_output(output_list, destination_file);
file_print("\n# Program global variables\n\n", destination_file);
recursive_output(globals_list, destination_file);
file_print("\n# Program strings\n\n", destination_file);
recursive_output(strings_list, destination_file);
2018-02-24 02:18:23 +00:00
file_print("\n:ELF_end\n", destination_file);
return EXIT_SUCCESS;
2017-11-05 14:23:17 +00:00
}