search for: ldrxui

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

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
2014 Oct 03
2
[LLVMdev] Need guidance regarding MachineFunctionPass
...Info.inc. > > The easiest way to find out which is actually to use > MachineInstr::dump (and/or "llc -debug" from the command-line to print > it out automatically); if it prints something like (to pick a > completely random example from AArch64): > > %X1<def> = LDRXui <fi#3>, 0; mem:LD8[%result] dbg:blockstret.c:20: > > Then you'd want to compare "op" against "AArch64::LDRXui" > > Cheers. > > Tim. > -- Regards, Sachin -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://...
2014 Oct 08
3
[LLVMdev] Need guidance regarding MachineFunctionPass
Thank you Mr. Tim. I was wondering if you can tell me in which file 'get()' is defined. I am having trouble using this function. For example if I write 'get(AArch64::LDRXui)' then there is an error generated which says: use of undeclared identifier 'get'. Thanks again !! On Fri, Oct 3, 2014 at 9:56 PM, Tim Northover <t.p.northover at gmail.com> wrote: > Hi Sachin, > > On 3 October 2014 13:24, sachin arora <sachin345678 at gmail.com>...