search for: deepdondo007

Displaying 8 results from an estimated 8 matches for "deepdondo007".

2015 Jan 07
4
[LLVMdev] ARM disassembler
Hi, I am newbie for LLVM. I need some help, I want to disassemble ARM binaries and perform some operation on LLVM IR and again back to generate ARM binary from modified ARM LLVM IR. How I can proceed for the same. Any tool or document will be highly appreciated. Thanks and Regards, Deep -------------- next part -------------- An HTML attachment was scrubbed... URL:
2016 Feb 10
2
Modified LLVM IR
...f the compiler may be more suitable, > since that is where you have the knowledge of what the original source code > looks like, rather than LLVM IR which is more disconnected from the > original source. > > -- > Mats > > On 10 February 2016 at 08:07, Sandeep Kumar Singh <deepdondo007 at gmail.com> > wrote: > >> Hi, >> >> Yes I am looking for IR pass that will do insert call of functions that >> defined in another file. >> Links/suggestions that guide me to start for adding IR pass will help me >> so much. >> >> Regards, &...
2015 Jul 07
4
[LLVMdev] LLVM IR on different platforms
Hi, I am curious to know about LLVM IR as platform independent feature. I have compiler some C and C++ applications that compiled on Linux 64bit machine, now I want to generate bit code file on Windows 64bit machine. 1) Will this execute without any issues? 2) Do I pass any option for making it operating system portable? 3) Can I generate bit code file also on Linux machine and then run on
2016 Feb 10
2
Modified LLVM IR
...tfish.com> wrote: > So how do you know what you want to modify (conceptually)? > > Have you got a IR pass that you are working on, or are you asking for > links/suggestions on how to start on one? > > -- > Mats > > On 10 February 2016 at 04:04, Sandeep Kumar Singh <deepdondo007 at gmail.com> > wrote: > >> Hi, >> >> I want to call/add some functions(that defined in another file) on top of >> some functions, and reflect the same changes in object file. >> No, I am not looking for contractor. >> >> Thanks, >> Deepika &...
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
2016 Feb 10
2
Modified LLVM IR
Hi, I want to call/add some functions(that defined in another file) on top of some functions, and reflect the same changes in object file. No, I am not looking for contractor. Thanks, Deepika On Tue, Feb 9, 2016 at 7:04 PM, mats petersson <mats at planetcatfish.com> wrote: > What is the condition for adding this code? > > What have you tried so far? [Or are you looking for a
2014 Dec 18
2
[LLVMdev] Lowering x64bit LLVM IR to x86bit LLVM IR
...ow 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 4 December 2014 at 19:47, Sandeep Kumar Singh <deepdondo007 at gmail.com> > wrote: > > 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...
2012 Oct 12
3
[LLVMdev] Newbie question for registering new target with LLVM
Hi all, llvm newbie here. I'm trying to learn porting with llvm for study purpose. This is my first query on llvm mailing list.I have some idea about GCC. I choose 'rx' as a target to port as it is also available in GCC. I have done some initial changes with llvm source code to register target with llvm. I need to verify these changes. Can anyone please take a chance to verify it.