search for: x86shell

Displaying 4 results from an estimated 4 matches for "x86shell".

2007 Dec 25
3
[LLVMdev] Optimization feasibility
...#uses=0] store i32 0, i32* %tmp %tmp5 = load i32* %tmp ; <i32> [#uses=1] store i32 %tmp5, i32* %retval br label %return return: ; preds = %entry %retval6 = load i32* %retval ; <i32> [#uses=1] ret i32 %retval6 } declare i32 @printf(i8*, ...) <<---tailcall.ll --->> x86Shell:> llvm-as < tailcall.ll | llc -tailcallopt | gcc -x assembler - x86Shell:> ./a.out if you have got any questions regarding tail call stuff i would be happy to help regards arnold
2008 Jan 02
0
[LLVMdev] Optimization feasibility
...; <i32> [#uses=1] > store i32 %tmp5, i32* %retval > br label %return > > return: ; preds = %entry > %retval6 = load i32* %retval ; <i32> [#uses=1] > ret i32 %retval6 > } > > declare i32 @printf(i8*, ...) > <<---tailcall.ll --->> > > x86Shell:> llvm-as < tailcall.ll | llc -tailcallopt | gcc -x > assembler - > x86Shell:> ./a.out > > if you have got any questions regarding tail call stuff i would be > happy to help > > regards arnold > > _______________________________________________ > LLVM Devel...
2007 Dec 25
0
[LLVMdev] Optimization feasibility
Hi Jo, On 2007-12-24, at 14:43, Joachim Durchholz wrote: > I'm in a very preliminary phase of a language project which requires > some specific optimizations to be reasonably efficient. > > LLVM already looks very good; I'd just like to know whether I can > push these optimizations through LLVM to the JIT phase (which, as > far as I understand the docs, is a
2007 Dec 24
3
[LLVMdev] Optimization feasibility
Hi all, I'm in a very preliminary phase of a language project which requires some specific optimizations to be reasonably efficient. LLVM already looks very good; I'd just like to know whether I can push these optimizations through LLVM to the JIT phase (which, as far as I understand the docs, is a pretty powerful part of LLVM). The optimizations that I need to get to work are: *