search for: tp21961718p28087559

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

2010 Mar 30
1
[LLVMdev] Operand, instruction
...ncan. > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > > -- View this message in context: http://old.nabble.com/Operand%2C-instruction-tp21961718p28087559.html Sent from the LLVM - Dev mailing list archive at Nabble.com.
2010 Mar 29
0
[LLVMdev] Operand, instruction
Hi, > Actually i have to implement strength reduction, for that i have to first > detect induction variables using ALLEN-COCKE-KENNEDY algorithm. To find out > induction variables, i need the name of the instruction. I suspect you are confused. Surely you only need a way of referring to each instruction. For this you can use a pointer to the instruction. Ciao, Duncan.
2010 Mar 29
3
[LLVMdev] Operand, instruction
Actually i have to implement strength reduction, for that i have to first detect induction variables using ALLEN-COCKE-KENNEDY algorithm. To find out induction variables, i need the name of the instruction. Thanks for the reply. Devang Patel-2 wrote: > > On Fri, Mar 26, 2010 at 6:53 AM, help__me_please > <krishnadhan at cse.iitb.ac.in> wrote: >> >> Can anyone tell how