Displaying 6 results from an estimated 6 matches for "acp4is".
Did you mean:
acis
2010 Nov 20
0
[LLVMdev] CFP: MISS 2011 workshop (ex ACP4IS) at AOSD 2011
On Nov 20, 2010, at 1:19 PM, Bram Adams wrote:
> Hi,
>
> The MISS 2011 workshop below is highly related to this mailing list, since VMs are some of the best-known examples of systems software. Dealing with modularity in a VM is known to be critical, yet tough, so insights, advances or experiences from the trenches are extremely welcome at our workshop. Consider participating!
FYI,
2010 Nov 20
2
[LLVMdev] CFP: MISS 2011 workshop (ex ACP4IS) at AOSD 2011
...e trenches are extremely welcome at our workshop. Consider participating!
Thanks in advance,
the MISS 2011 committee
*************************************************************************
1st AOSD Workshop on Modularity in Systems Software
MISS 2011 (ex ACP4IS)
March 22, 2011
Porto de Galinhas, Pernambuco (Brazil)
http://www.aosd.net/workshops/miss
A one-day workshop to be held in conjunction with the
10th International Conference on
Aspect...
2008 Sep 27
2
[LLVMdev] compile linux kernel
I plan to use virtualization infrastructure to JIT VM Kernel Code.
Michael Engel has done that in the past to have dynamic aspect in the
Kernel: http://llvm.org/pubs/2005-03-14-ACP4IS-AspectsKernel.pdf
He used L4 based Hypervisor and Virtual Machines. Can this not be done
or am I missing something?
-Ashish
On Sat, Sep 27, 2008 at 3:13 AM, Török Edwin <edwintorok at gmail.com> wrote:
> On 2008-09-27 05:19, Ashish Bijlani wrote:
>> Hi,
>>
>> I'm t...
2008 Sep 27
0
[LLVMdev] compile linux kernel
On 2008-09-27 18:29, Ashish Bijlani wrote:
> I plan to use virtualization infrastructure to JIT VM Kernel Code.
> Michael Engel has done that in the past to have dynamic aspect in the
> Kernel: http://llvm.org/pubs/2005-03-14-ACP4IS-AspectsKernel.pdf
>
> He used L4 based Hypervisor and Virtual Machines. Can this not be done
> or am I missing something?
>
I think you'll need to modify the kernel build scripts to not expect ELF
output, such as mk_elfconfig.
LLVM outputs its own bytecode format when you use -e...
2008 Sep 27
0
[LLVMdev] compile linux kernel
On 2008-09-27 05:19, Ashish Bijlani wrote:
> Hi,
>
> I'm trying to compile linux-2.6.23.16 with llvm-2.3. Is it at all
> possible? I get "Not an ELF" error. I pass "-emit-llvm" option to spit
> LLVM IR, which can be JITed at runtime
>
>
If you want to build a kernel you can't use the JIT anyway, so why not
just build native code?
Best regards,
2008 Sep 27
4
[LLVMdev] compile linux kernel
Hi,
I'm trying to compile linux-2.6.23.16 with llvm-2.3. Is it at all
possible? I get "Not an ELF" error. I pass "-emit-llvm" option to spit
LLVM IR, which can be JITed at runtime
$ make CROSS_COMPILE=llvm- CFLAGS="-O2 -emit-llvm"
Error: not ELF
make[2]: *** [scripts/mod/elfconfig.h] Error 1
make[1]: *** [scripts/mod] Error 2
make: *** [scripts] Error 2
using