Displaying 2 results from an estimated 2 matches for "x86bit".
Did you mean:
16bit
2014 Dec 18
2
[LLVMdev] Lowering x64bit LLVM IR to x86bit LLVM IR
...4
%7 = load i32* %6, align 4
%8 = and i32 %7, -2262
%9 = add i32 %5, 14323
store i32 564295877, i32* %2, align 4
store i32 26, i32* %3, align 4
store i32 %8, i32* %6, align 4
ret i32 %9
}
This is generated with my are written. Now, I want to test this generated,
lowered x64bit IR for x86bit machine.
Please let me know how I can test this. How I can test generated LLVM IR,
how I can debug this generated LLVM IR.
Any help will be highly appreciated.
Regards,
Deep
On Fri, Dec 5, 2014 at 8:25 PM, Tim Northover <t.p.northover at gmail.com>
wrote:
>
> Hi Sandeep,
>
> On...
2014 Dec 05
2
[LLVMdev] Lowering x64bit LLVM IR to x86bit LLVM IR
Hi,
I need some help,
As per my requirement, I am trying to lower down the x86_64bit binary LLVM
IR to x86 LLVM IR.
Instruction of x86_64 binary are as follows,
mov rax, 1122334455667788
mov rax, 8877665544332211
To lower down the same in x86, I need to split 'rax' register into
'rax_lower' and 'rax_higher'.
Can anybody please give me some pointer to do the same or any