Displaying 1 result from an estimated 1 matches for "strahler".
Did you mean:
strahlen
2012 Aug 08
1
[LLVMdev] Creating DAGs
...and looked through the
3.1 source code. I have also searched the archives of this list.
My question is: Is it possible to create a DAG from an llvm::Module?
I would like to do this independent of a specific architecture using
LLVM IR. In particular, I am interested in using a DAG to compute the
Strahler number (http://en.wikipedia.org/wiki/Strahler_number) of the
graph to determine the minimum number of register needed to evaluate
an expression tree.
I have read through the documentation on SelectionDAG. However, this
seems to require a TargetMachine. Is there a way to create a graph
without a...