search for: 8322f0aa

Displaying 2 results from an estimated 2 matches for "8322f0aa".

2014 Oct 03
2
[LLVMdev] Need guidance regarding MachineFunctionPass
...> > Then you'd want to compare "op" against "AArch64::LDRXui" > > Cheers. > > Tim. > -- Regards, Sachin -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20141003/8322f0aa/attachment.html>
2014 Oct 03
2
[LLVMdev] Need guidance regarding MachineFunctionPass
Respected Dr. Criswell, My problem is that the output of following code looks nothing like any opcode: *for(MachineBasicBlock::iterator I = BB->begin(); I != BB->end(); ) { MachineInstr *mi = I; int op = mi->getOpcode(); std::cout << op << '\t'; }* I need to identify specific instructions in my MachineFunctionPass and I was hoping that I can