Mercurial > lcfOS
view python/testir.py @ 174:3eb06f5fb987
Added memory alloc for locals
author | Windel Bouwman |
---|---|
date | Fri, 19 Apr 2013 19:22:52 +0200 |
parents | c1d2b6b9f9a7 |
children | a51b3c956386 |
line wrap: on
line source
import c3, ppci, ir, x86, transform import os testsrc = """ package test2; function void tst() { var int a, b; a = 2 * 33 - 12; b = a * 2 + 13; a = b + a; if (a > b and b *3 - a+8*b== 3*6-b) { var int x = a; x = b * 2 - a; a = x * x; } else { a = b + a; } var int y; y = a - b * 53; } function int add2(int x, int y) { var int res; res = x + y + 2 - 7 + 2; if (x > 13) { res = res + 2; } return res; } """ if __name__ == '__main__': diag = ppci.DiagnosticsManager() builder = c3.Builder(diag) cgenx86 = x86.X86CodeGen(diag) ir = builder.build(testsrc) diag.printErrors(testsrc) #ir.dump() cf = transform.ConstantFolder() dcd = transform.DeadCodeDeleter() ir.check() cf.run(ir) cf.run(ir) #dcd.run(ir) ir.dump() asm = cgenx86.genBin(ir) for a in asm: print(a) with open('out.asm', 'w') as f: f.write('BITS 64\n') for a in asm: f.write(str(a) + '\n') # Dump a graphiz file: with open('graaf.gv', 'w') as f: ir.dumpgv(f) os.system('dot -Tpdf -ograaf.pdf graaf.gv')