search for: 1aa1a69a

Displaying 2 results from an estimated 2 matches for "1aa1a69a".

2015 Jun 29
2
[LLVMdev] Inferring dependencies in phi instructions
...Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150629/1aa1a69a/attachment.html>
2015 Jun 29
3
[LLVMdev] Inferring dependencies in phi instructions
I am trying to infer data dependencies using LLVM's def-use chains and I am having trouble dealing with 'phi' instructions. Specifically, If I am given the code snippet: int foo() { int y = 1; int x; if (y) { x = 2; } else { x = 3; } return x; } Here, x has a data dependence on y (not control because x is assigned in both halves), but LLVM expresses 'x'