2018-09-06 15:18:41 +00:00
|
|
|
#!/usr/bin/env python
|
2015-10-16 08:30:24 +00:00
|
|
|
|
|
|
|
"""Usage: sixtypical [OPTIONS] FILES
|
|
|
|
|
2018-02-05 13:17:23 +00:00
|
|
|
Analyzes and compiles a Sixtypical program.
|
2015-10-16 08:30:24 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
from os.path import realpath, dirname, join
|
|
|
|
import sys
|
|
|
|
|
|
|
|
sys.path.insert(0, join(dirname(realpath(sys.argv[0])), '..', 'src'))
|
|
|
|
|
|
|
|
# ----------------------------------------------------------------- #
|
|
|
|
|
|
|
|
import codecs
|
2018-03-06 16:28:34 +00:00
|
|
|
from argparse import ArgumentParser
|
2015-10-22 14:45:16 +00:00
|
|
|
from pprint import pprint
|
2015-10-16 08:30:24 +00:00
|
|
|
import sys
|
|
|
|
import traceback
|
|
|
|
|
2018-09-07 08:26:11 +00:00
|
|
|
from sixtypical.parser import Parser, ParsingContext, merge_programs
|
2015-10-21 14:45:14 +00:00
|
|
|
from sixtypical.analyzer import Analyzer
|
2018-09-07 08:10:20 +00:00
|
|
|
from sixtypical.outputter import outputter_class_for
|
2015-10-17 14:06:50 +00:00
|
|
|
from sixtypical.compiler import Compiler
|
2015-10-16 08:30:24 +00:00
|
|
|
|
|
|
|
|
2018-03-27 14:55:29 +00:00
|
|
|
def process_input_files(filenames, options):
|
2018-03-27 15:23:22 +00:00
|
|
|
context = ParsingContext()
|
|
|
|
|
2018-03-27 14:55:29 +00:00
|
|
|
programs = []
|
|
|
|
|
|
|
|
for filename in options.filenames:
|
|
|
|
text = open(filename).read()
|
2018-03-27 15:23:22 +00:00
|
|
|
parser = Parser(context, text, filename)
|
|
|
|
if options.debug:
|
|
|
|
print(context)
|
2018-03-27 14:55:29 +00:00
|
|
|
program = parser.program()
|
|
|
|
programs.append(program)
|
|
|
|
|
|
|
|
if options.parse_only:
|
|
|
|
return
|
|
|
|
|
2018-03-27 15:23:22 +00:00
|
|
|
program = merge_programs(programs)
|
2018-03-27 14:55:29 +00:00
|
|
|
|
|
|
|
analyzer = Analyzer(debug=options.debug)
|
|
|
|
analyzer.analyze_program(program)
|
|
|
|
|
2018-04-05 09:52:14 +00:00
|
|
|
compilation_roster = None
|
2018-04-04 10:54:50 +00:00
|
|
|
if options.optimize_fallthru:
|
2018-04-04 14:09:48 +00:00
|
|
|
from sixtypical.fallthru import FallthruAnalyzer
|
|
|
|
|
2018-04-05 08:57:14 +00:00
|
|
|
def dump(data, label=None):
|
2018-04-04 13:13:53 +00:00
|
|
|
import json
|
2018-04-04 13:20:56 +00:00
|
|
|
if not options.dump_fallthru_info:
|
|
|
|
return
|
2018-04-04 13:13:53 +00:00
|
|
|
if label:
|
|
|
|
sys.stdout.write("*** {}:\n".format(label))
|
2018-09-06 15:32:48 +00:00
|
|
|
sys.stdout.write(json.dumps(data, indent=4, sort_keys=True, separators=(',', ':')))
|
2018-04-04 13:13:53 +00:00
|
|
|
sys.stdout.write("\n")
|
|
|
|
|
2018-04-04 10:09:39 +00:00
|
|
|
fa = FallthruAnalyzer(debug=options.debug)
|
|
|
|
fa.analyze_program(program)
|
2018-04-05 09:52:14 +00:00
|
|
|
compilation_roster = fa.serialize()
|
|
|
|
dump(compilation_roster)
|
2018-04-04 14:09:48 +00:00
|
|
|
|
2018-09-07 08:26:11 +00:00
|
|
|
if options.analyze_only or options.output is None:
|
2018-03-27 14:55:29 +00:00
|
|
|
return
|
|
|
|
|
2018-09-07 08:10:20 +00:00
|
|
|
start_addr = None
|
2018-04-23 12:18:01 +00:00
|
|
|
if options.origin is not None:
|
|
|
|
if options.origin.startswith('0x'):
|
2018-09-07 08:10:20 +00:00
|
|
|
start_addr = int(options.origin, 16)
|
2018-04-23 12:18:01 +00:00
|
|
|
else:
|
2018-09-07 08:10:20 +00:00
|
|
|
start_addr = int(options.origin, 10)
|
2018-09-06 17:25:29 +00:00
|
|
|
|
|
|
|
with open(options.output, 'wb') as fh:
|
2018-09-07 08:10:20 +00:00
|
|
|
outputter = outputter_class_for(options.output_format)(fh, start_addr=start_addr)
|
|
|
|
outputter.write_prelude()
|
|
|
|
compiler = Compiler(outputter.emitter)
|
2018-09-06 17:25:29 +00:00
|
|
|
compiler.compile_program(program, compilation_roster=compilation_roster)
|
2018-09-07 08:10:20 +00:00
|
|
|
outputter.write_postlude()
|
2018-09-06 17:25:29 +00:00
|
|
|
if options.debug:
|
2018-09-07 08:10:20 +00:00
|
|
|
pprint(outputter.emitter)
|
2018-09-06 17:25:29 +00:00
|
|
|
else:
|
2018-09-07 08:10:20 +00:00
|
|
|
outputter.emitter.serialize_to(fh)
|
2018-03-27 14:55:29 +00:00
|
|
|
|
|
|
|
|
2015-10-16 08:30:24 +00:00
|
|
|
if __name__ == '__main__':
|
2018-03-06 16:28:34 +00:00
|
|
|
argparser = ArgumentParser(__doc__.strip())
|
2015-10-16 08:30:24 +00:00
|
|
|
|
2018-03-06 16:28:34 +00:00
|
|
|
argparser.add_argument(
|
|
|
|
'filenames', metavar='FILENAME', type=str, nargs='+',
|
|
|
|
help="The SixtyPical source files to compile."
|
|
|
|
)
|
2018-03-29 14:07:44 +00:00
|
|
|
|
2018-09-06 15:18:41 +00:00
|
|
|
argparser.add_argument(
|
|
|
|
"--output", "-o", type=str, metavar='FILENAME',
|
|
|
|
help="File to which generated 6502 code will be written."
|
|
|
|
)
|
2018-03-13 13:33:01 +00:00
|
|
|
argparser.add_argument(
|
2018-04-23 12:18:01 +00:00
|
|
|
"--origin", type=str, default=None,
|
2018-03-13 13:33:01 +00:00
|
|
|
help="Location in memory where the `main` routine will be "
|
2018-04-23 12:18:01 +00:00
|
|
|
"located. Default: depends on output format."
|
2018-03-13 13:33:01 +00:00
|
|
|
)
|
2018-03-06 16:28:34 +00:00
|
|
|
argparser.add_argument(
|
2018-04-23 12:18:01 +00:00
|
|
|
"--output-format", type=str, default='raw',
|
|
|
|
help="Executable format to produce; also sets a default origin. "
|
|
|
|
"Options are: raw, prg, c64-basic-prg, vic20-basic-prg, atari2600-cart."
|
|
|
|
"Default: raw."
|
2018-03-06 16:28:34 +00:00
|
|
|
)
|
2018-03-29 14:07:44 +00:00
|
|
|
|
2018-03-06 16:28:34 +00:00
|
|
|
argparser.add_argument(
|
2018-03-29 14:07:44 +00:00
|
|
|
"--analyze-only",
|
2018-03-06 16:28:34 +00:00
|
|
|
action="store_true",
|
2018-03-29 14:07:44 +00:00
|
|
|
help="Only parse and analyze the program; do not compile it."
|
|
|
|
)
|
|
|
|
argparser.add_argument(
|
2018-04-04 10:54:50 +00:00
|
|
|
"--optimize-fallthru",
|
2018-03-29 14:07:44 +00:00
|
|
|
action="store_true",
|
2018-04-04 10:54:50 +00:00
|
|
|
help="Reorder the routines in the program to maximize the number of tail calls "
|
|
|
|
"that can be removed by having execution 'fall through' to the next routine."
|
2018-03-06 16:28:34 +00:00
|
|
|
)
|
2018-04-04 10:09:39 +00:00
|
|
|
argparser.add_argument(
|
2018-04-04 10:54:50 +00:00
|
|
|
"--dump-fallthru-info",
|
2018-04-04 10:09:39 +00:00
|
|
|
action="store_true",
|
2018-04-04 10:54:50 +00:00
|
|
|
help="Dump the fallthru map and ordering to stdout after analyzing the program."
|
2018-04-04 10:09:39 +00:00
|
|
|
)
|
2018-03-06 16:28:34 +00:00
|
|
|
argparser.add_argument(
|
|
|
|
"--parse-only",
|
|
|
|
action="store_true",
|
|
|
|
help="Only parse the program; do not analyze or compile it."
|
|
|
|
)
|
2018-03-29 14:07:44 +00:00
|
|
|
argparser.add_argument(
|
|
|
|
"--debug",
|
|
|
|
action="store_true",
|
|
|
|
help="Display debugging information when analyzing and compiling."
|
|
|
|
)
|
2018-03-06 16:28:34 +00:00
|
|
|
argparser.add_argument(
|
|
|
|
"--traceback",
|
|
|
|
action="store_true",
|
|
|
|
help="When an error occurs, display a full Python traceback."
|
|
|
|
)
|
2015-10-16 08:30:24 +00:00
|
|
|
|
2018-03-06 16:28:34 +00:00
|
|
|
options, unknown = argparser.parse_known_args(sys.argv[1:])
|
|
|
|
remainder = ' '.join(unknown)
|
2015-10-16 08:30:24 +00:00
|
|
|
|
2018-03-27 14:55:29 +00:00
|
|
|
try:
|
|
|
|
process_input_files(options.filenames, options)
|
|
|
|
except Exception as e:
|
|
|
|
if options.traceback:
|
|
|
|
raise
|
2018-02-06 16:14:44 +00:00
|
|
|
else:
|
2018-03-27 14:55:29 +00:00
|
|
|
traceback.print_exception(e.__class__, e, None)
|
|
|
|
sys.exit(1)
|