Displaying 3 results from an estimated 3 matches for "baranec".
Did you mean:
balance
2010 Apr 15
2
[LLVMdev] Compile, link and run on the fly
...t;
> It sounds like you're generating LLVM IL and dumping it to a .ll file
> in your own compiler, so you'll probably have to just add some driver
> code to your compiler that drives llvm-as, opt, llvm-link, and llc.
>
> Reid
>
> On Thu, Apr 15, 2010 at 1:18 PM, Radovan Baranec
> <rado.baranec at gmail.com> wrote:
>> Hi,
>>
>> I am working on my diploma thesis "Consideration of Virtual Machines
>> Suitability for Packet Decoding". One of VMs I am testing is LLVM.
>> Currently I have a filter written in LLVM IR which consi...
2010 Apr 15
2
[LLVMdev] Compile, link and run on the fly
...les and run on the
fly. Now I compile my own BPF-like minilanguage to IR, then translate it
to bitcode using llvm-as, then link it with other two modules with
llvm-link and finally run with lli. I don`t want to use makefile I want to
do everything on the fly in my compiler. Thanks.
Radovan Baranec
2010 Apr 15
0
[LLVMdev] Compile, link and run on the fly
...g/docs/tutorial/LangImpl4.html#jit
It sounds like you're generating LLVM IL and dumping it to a .ll file
in your own compiler, so you'll probably have to just add some driver
code to your compiler that drives llvm-as, opt, llvm-link, and llc.
Reid
On Thu, Apr 15, 2010 at 1:18 PM, Radovan Baranec <rado.baranec at gmail.com> wrote:
> Hi,
>
> I am working on my diploma thesis "Consideration of Virtual Machines
> Suitability for Packet Decoding". One of VMs I am testing is LLVM.
> Currently I have a filter written in LLVM IR which consist of 3 modules:
> filte...