search for: igetvaluefromasm

Displaying 2 results from an estimated 2 matches for "igetvaluefromasm".

2014 Dec 18
2
[LLVMdev] Lowering x64bit LLVM IR to x86bit LLVM IR
Hi Tim, Thank you for this information. I have another request for help from you, Below is my test case, iGetValueFromASM proc mov rax, 5 mov rax, 5 mov rax, 2 mov rax, 5 mov rax, 2 mov rax, 112233445566 add rax, 2 mov rax, 112233445566 add rax, 5 add rax, 2 I have lowered 32bit LLVM IR, %0 = type { i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32,...
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