search for: getincomingvaluenumforoperand

Displaying 3 results from an estimated 3 matches for "getincomingvaluenumforoperand".

2009 Jun 06
1
[LLVMdev] LiveValues Pass
...ass.cpp for Release build (PIC) llvm[0]: Compiling LiveValues.cpp for Release build (PIC) LiveValues.cpp: In member function 'llvm::LiveValues::Memo& llvm::LiveValues::compute(const llvm::Value*)': LiveValues.cpp:150: error: 'const class llvm::PHINode' has no member named 'getIncomingValueNumForOperand' I really need your help here Thank you. On Tue, Jun 2, 2009 at 2:10 PM, Dan Gohman <gohman at apple.com> wrote: > > On Jun 2, 2009, at 5:54 AM, Rotem Varon wrote: > > > > This questions are on the LiveValues pass: > > Do i need to set the "LiveValues&q...
2009 Jun 02
0
[LLVMdev] LiveValues Pass
On Jun 2, 2009, at 5:54 AM, Rotem Varon wrote: > > This questions are on the LiveValues pass: > Do i need to set the "LiveValues" pass in the PassManager as a > prerequisite? if so how do i get the results ? Yes; it's a standard analysis pass. See http://llvm.org/docs/WritingAnLLVMPass.html for information about interactions between passes. > How do i get/use the
2009 Jun 02
2
[LLVMdev] LiveValues Pass
Hi, I need the Instructions live out, so i will be able to run my pass. One option that i already discussed is to compute it myself. Second option, use the LiveValues Pass(include/llvm/Analysis/LiveValues). This questions are on the LiveValues pass: Do i need to set the "LiveValues" pass in the PassManager as a prerequisite? if so how do i get the results ?How do i get/use the results