Exemple #1
0
        static void Main(string[] args)
        {
            string lookingFor = "";
            string source     = "";
            string output     = "";

            for (int i = 0; i < args.Length; i++)
            {
                if (lookingFor == "")
                {
                    if (args[i][0] == '-')
                    {
                        if (args[i] == "-o")
                        {
                            lookingFor = "output";
                        }
                        else
                        {
                            error("An invalid argument was supplied: " + args[i], -1);
                        }
                    }
                    else
                    {
                        if (source == "")
                        {
                            source = args[i];
                        }
                        else
                        {
                            error("The source can be supplied only once: " + args[i], -1);
                        }
                    }
                }
                else
                {
                    if (lookingFor == "output")
                    {
                        output = args[i];
                    }
                }
            }
            Console.WriteLine("Swift Compiler by Joost Verbraeken");
            string[] text = System.IO.File.ReadAllLines(source);

            Tuple <List <Token>, List <LineContext> > lexicalOutput = (new LexicalAnalyzer()).GetTokens(text);
            List <Token>       tokens  = lexicalOutput.Item1;
            List <LineContext> context = lexicalOutput.Item2;

            ASTNode ast = (new SyntaxAnalyzer()).CheckSyntax(tokens, context);

            SemanticAnalyzer semanticAnalyzer = new SemanticAnalyzer();
            List <Table>     symbolTables     = semanticAnalyzer.GenerateSymbolTables(ast);

            semanticAnalyzer.CheckSemantic(ast);

            interCode = IntermediateCodeGenerator.GenerateCode(tokens, symbolTables);

            interCode = CodeOptimizer.OptimizeCode(interCode);

            CodeGenerator.MakeAssembly(source, output, interCode);

            Console.ReadLine();
        }
 public void init()
 {
     generator = new IntermediateCodeGenerator();
 }