similar to: [LLVMdev] LLVM projects: Change framework

Displaying 20 results from an estimated 6000 matches similar to: "[LLVMdev] LLVM projects: Change framework"

2007 Apr 25
0
[LLVMdev] LLVM projects: Change framework
Jakob, What exactly can you describe in this change language? There is a lot of research happening now on techniques to identify the best sequence of optimizations for a particular program, or just the best output form for the program. There are no really good infrastructures for this kind of work, but we have been interested in making LLVM useful for such work. (LLVM has been used
2007 Apr 27
0
[LLVMdev] LLVM projects: Change framework
On Wed, 25 Apr 2007, Jakob Praher wrote: > I have used LLVM extensively over the last 2 years. > I have realized a so called change framework that based on the LLVM > framework. I am just now getting a chance to read through your thesis. It looks like excellent work. Do you mind if we add it to llvm.org/pubs ? -Chris > Basically it is a framework that augments the JIT to
2006 Dec 21
2
[LLVMdev] llvm-gcc frontend 4 on intel darwin produces intel assembler
hi all, i surely overlooked something. but i am currently trying to do some benchmarking stuff with llvm. in my thesis i was using llvm-1.5 (i did some extension work, which i would have to frontport now). But unfortunately 1.5 is for some benchmarks unstable (at least on my box) such that llc sigsegvs sometimes, etc. So I wanted to give 1.9 a go and build that on the my intel mac book. I did
2006 Feb 10
1
[LLVMdev] some questions and llvm on mac-intel
hi all, my name is Jakob. I am studying computer science in Austria. Currently I am working on an aspect oriented dynamic monitoring framework based on LLVM as a diploma thesis. It is a very fascinating framework. Is there some research funding for LLVM development somewhere? Sadly there is not much for me todo with LLVM in my University here in Austria after my diploma thesis. Are there
2006 Dec 21
0
[LLVMdev] llvm-gcc frontend 4 on intel darwin produces intel assembler
You need to use -emit-llvm http://llvm.org/docs/GettingStarted.html#tutorial4 -Tanya On Thu, 21 Dec 2006, Jakob Praher wrote: > hi all, > > i surely overlooked something. > but i am currently trying to do some benchmarking stuff with llvm. > in my thesis i was using llvm-1.5 (i did some extension work, which i > would have to frontport now). > > But unfortunately 1.5 is
2006 Apr 18
1
[LLVMdev] Re: LLVM-based JVM JIT for libgcj
>>>>> "Jakob" == Jakob Praher <jp at hapra.at> writes: Jakob> I would definitely like to look into it. I'll send it in private email. Jakob> Yes very much! How did you find writing it directly in Jakob> SSA-form. Actually I used what Chris called "the alloca trick"... the JIT doesn't really generate SSA form but instead uses alloca to
2006 Sep 18
7
drbd using zfs send/receive?
hi everyone, I am planning on creating a local SAN via NFS(v4) and several redundant nodes. I have been using DRBD on linux before and now am asking whether some of you have experience on on-demand network filesystem mirrors. I have yet little Solaris sysadmin know how, but i am interesting whether there is an on-demand support for sending snapshots. I.e. not via a cron job, but via a
2005 Mar 01
2
[LLVMdev] Re: question about gccld and external libraries
Misha Brukman wrote: > Hey, Jakob -- > > On Tue, Mar 01, 2005 at 05:55:07PM +0100, Jakob Praher wrote: > >>I'm really new to llvm. I've successfully bootstrapped llvm-14 on my >>system and am able to successfully compile c code to llvm. >> >>the problem is now that gccld is complaining that it can't find the >>libraries, like "c" or
2005 Mar 01
3
[LLVMdev] question about gccld and external libraries
hi, I'm really new to llvm. I've successfully bootstrapped llvm-14 on my system and am able to successfully compile c code to llvm. the problem is now that gccld is complaining that it can't find the libraries, like "c" or "crtend". [1] all is fine, if I just use intrinsified functions like printf and friends, but I want to use the clock_gettime function and
2005 Mar 01
2
[LLVMdev] Re: question about gccld and external libraries
Chris Lattner wrote: > On Tue, 1 Mar 2005, Jakob Praher wrote: > >> thanks for the pointer. Yes I've done that, but in the new shell >> session I apparently forgot to set the LLVM_LIB_SEARCH_PATH. >> >> now gccld isn't complaining anymore but the interpreter doesn't seem >> to like it still: > > > It looks like the jit doesn't find
2007 May 31
3
zfs boot error recovery
hi all, i would like to ask some questions regarding best practices for zfs recovery if disk errors occur. currently i have zfs boot (nv62) and the following setup: 2 si3224 controllers (each 4 sata disks) 8 sata disks, same size, same type i have two pools: a) rootpool b) datapool the rootpool is a mirrored pool, where every disk has a slice (the s0, which is 5 % of the whole disk) and this
2006 Feb 10
2
[LLVMdev] llvm for macho/x86 target
hi all, sorry I had problems with my last mail (I hope this goes through). Do the llvm binutils currently support macho/x86 (for use with mactels?) thanks in advance -- Jakob ___________________________________________________________ Telefonate ohne weitere Kosten vom PC zum PC: http://messenger.yahoo.de
2005 Mar 01
0
[LLVMdev] question about gccld and external libraries
Hey, Jakob -- On Tue, Mar 01, 2005 at 05:55:07PM +0100, Jakob Praher wrote: > I'm really new to llvm. I've successfully bootstrapped llvm-14 on my > system and am able to successfully compile c code to llvm. > > the problem is now that gccld is complaining that it can't find the > libraries, like "c" or "crtend". [1] Did you install the bytecode
2006 Feb 10
0
[LLVMdev] llvm for macho/x86 target
Hi Jackob, X86 / Darwin support is actively being worked on. It's very new which means you must check out the source from CVS and build your own binary. If you can live with the lack of vector support and the occasional bugs :-), I would urge you to do so and share us with your experience. Cheers, Evan On Feb 10, 2006, at 3:10 PM, Jakob Praher wrote: > hi all, > > sorry
2006 Feb 25
3
[LLVMdev] Re: gcc like attributes and annotations
Hi Reid, Reid Spencer schrieb: > I have some thoughts on this too .. > Great! > On Fri, 2006-02-24 at 19:56 +0100, Jakob Praher wrote: > >>I get you 100 % here. But as you say later in the mail, many information >>is done by some runtime std::map<Value*,foo> stuff. Which is really >>handy at runtime, but I *had* serialization in mind when I was thinking
2005 Mar 01
0
[LLVMdev] Re: question about gccld and external libraries
On Tue, 1 Mar 2005, Jakob Praher wrote: > thanks for the pointer. Yes I've done that, but in the new shell session I > apparently forgot to set the LLVM_LIB_SEARCH_PATH. > > now gccld isn't complaining anymore but the interpreter doesn't seem to like > it still: It looks like the jit doesn't find these because they are located in librt. Try this (or adapt to
2005 Mar 01
0
[LLVMdev] Re: question about gccld and external libraries
On Tue, 1 Mar 2005, Jakob Praher wrote: >> If you pass '-lrt' when linking your program, it should take care of this >> for you. >> > > ah ok. so every library thet gccld can't find as a bytecode lib is added to > the shell script then. Yup. Note there are other options if you don't want to run your program in the JIT. In particular, you can use
2019 Jan 05
4
how to set proxy systemwide (wget and docker)
Hallo, what is the right way to set a proxy systemwide using centos 7? I need this for wget and docker. My first idea was /etc/environment but allthough the proxy is set wget and docker don? t connect to their target-systems. Thanks for hints Ralf
2003 Aug 28
4
NT: Cannot set default print options for client
Hi there! * I put my printer drivers on the [print$] share * Did everything as described in the Samba-Howto Colletcion (made the first connection as root, etc.) * Connected to the printers with a normal user and now I cannot change the default print options allthough the user is in the local Administrators group. Everything is grayed out. Any idea what I am doing wrong? Thank you. +r
2009 Dec 09
5
[LLVMdev] [PATCH] increase the max number of physical registers
On Dec 8, 2009, at 3:31 PM, Jakob Stoklund Olesen wrote: > > On Dec 8, 2009, at 11:33 AM, Evan Cheng wrote: > >> This caused a massive slow down to post-ra scheduler (llc -O3 on x86, -O2 on ARM). I'm going to revert it for now until it has been addressed. > > Probably caused by this member: > > /// KillIndices - The index of the most recent kill (proceding