freenode/#clasp - IRC Chatlog
Search
22:34:17
Bike
https://github.com/clasp-developers/clasp/commit/6cd1e493760edd13d6c606e2ec84f0f3936d5bbe this is the commit
22:34:23
drmeister
It has a units package - remember when the Mars Orbiter skipped off the Martian atmosphere and was lost in space?
5:44:08
karlosz
its actually realtively easy to tell which <- instructions are actually needed in the flowgraph. if a <- instructions's target node has only 1 def, and either the source node has 1 def or the target has 1 use, then the <- instruction can be eliminated, with the source and target nodes merging into one node
5:45:00
karlosz
that's the algorithm i'm using to only produce the minimum amount of runtime store and loads from <- instructions
5:45:34
karlosz
perhaps that can be the basis for a general purpose HIR pass that cleans up the <- nodes