Mercurial > lcfOS
diff python/ppci/codegen/registerallocator.py @ 334:6f4753202b9a
Added more recipes
author | Windel Bouwman |
---|---|
date | Thu, 13 Feb 2014 22:02:08 +0100 |
parents | e9fe6988497c |
children | b00219172a42 |
line wrap: on
line diff
--- a/python/ppci/codegen/registerallocator.py Sun Feb 09 15:27:57 2014 +0100 +++ b/python/ppci/codegen/registerallocator.py Thu Feb 13 22:02:08 2014 +0100 @@ -41,9 +41,9 @@ def Build(self): """ 1. Construct interference graph from instruction list """ self.f.cfg = FlowGraph(self.f.instructions) - self.logger.info('Constructed flowgraph', extra={'ra_cfg':self.f.cfg}) + self.logger.debug('Constructed flowgraph', extra={'ra_cfg':self.f.cfg}) self.f.ig = InterferenceGraph(self.f.cfg) - self.logger.info('Constructed interferencegraph', extra={'ra_ig':self.f.ig}) + self.logger.debug('Constructed interferencegraph', extra={'ra_ig':self.f.ig}) self.Node = self.f.ig.getNode