Displaying 2 results from an estimated 2 matches for "a1bc2bfd".
2016 Jun 27
0
How to traverse llvm DAG for analysis
...listinfo/llvm-dev
--
John Criswell
Assistant Professor
Department of Computer Science, University of Rochester
http://www.cs.rochester.edu/u/criswell
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160627/a1bc2bfd/attachment.html>
2016 Jun 27
2
How to traverse llvm DAG for analysis
Hello All,
I would like your help to learn how to traverse an LLVM DAG and perform some analysis. I know that llc can be used to view a DAG, but I would like to manipulate them. In particular I'm interested in the instruction selection and the scheduling DAGs.
I have read the documentation about writing an analysis pass and I know how to traverse a basic block on a LLVM IR assembly file, but