Mercurial > lcfOS
view python/ppci/optimize.py @ 327:61c9df5bffce
Changed emulated board to cortex a8 board
author | Windel Bouwman |
---|---|
date | Sat, 01 Feb 2014 17:21:21 +0100 |
parents | 158068af716c |
children |
line wrap: on
line source
from mem2reg import Mem2RegPromotor from transform import CommonSubexpressionElimination, CleanPass from transform import DeadCodeDeleter, ConstantFolder def optimize(ir): return cf = ConstantFolder() cf.run(ir) return dcd = DeadCodeDeleter() m2r = Mem2RegPromotor() clr = CleanPass() cse = CommonSubexpressionElimination() dcd.run(ir) clr.run(ir) m2r.run(ir) cse.run(ir) cf.run(ir) dcd.run(ir)