Displaying 8 results from an estimated 8 matches for "osculating".
Did you mean:
oscilating
2009 Jun 01
0
[LLVMdev] Questions about LLVM
On Mon, Jun 1, 2009 at 4:25 AM, Camille Troillard<camille at osculator.net> wrote:
> 1. Do you think it would make sense to use the clang codebase (specifically
> Objective-C CodeGen / CGObjCRuntime) in order to generate the code that will
> replace F-Script's interpretation? If that is possible it would enable me
> to start progressively porting F-Script to LLVM, instead of
2009 Jun 05
2
[LLVMdev] Creating a LLVM Project from the Sample project
Hello,
I have followed the steps described in http://llvm.org/docs/Projects.html.
It seems there is a problem with the AutoRegen.sh script.
In order to get the whole sample project working in a directory
outside of llvm directory structure, I had to replace lines 22 and 23
by :
llvm_src_root=../llvm
llvm_obj_root=../llvm
I am not a configuration specialist, so I can't tell if this is a
2009 Jun 06
0
[LLVMdev] Creating a LLVM Project from the Sample project
2009/6/5 Camille Troillard <camille at osculator.net>:
>
> I have followed the steps described in http://llvm.org/docs/Projects.html.
> It seems there is a problem with the AutoRegen.sh script.
>
I'm not sure anyone actually uses that -- the bug about it seems to be
ignored: http://llvm.org/bugs/show_bug.cgi?id=1220
Perhaps if you add your findings to it it might get
2009 Jun 11
2
[LLVMdev] Access a specific address in the JIT compiler
Hi,
I am using the JIT compiler to execute code that must interface with
the running process.
I would like to access some specific addresses.
The solution I found is to create a global variable for each address I
want to reference, and pass it as a mapping to the ExecutionEngine
with addGlobalMapping.
Is that how I should do this?
Is there no way to just reference the addresses with constants?
2009 Jun 11
0
[LLVMdev] Access a specific address in the JIT compiler
This seems to be the "proper" way to do that.
Another possibility, is to create a ConstantInt with the size of the pointer
(found in TargetData), then do a IntToPtr cast, and use this absolute
address in load/store/call.
Cheers,
Olivier.
On Thu, Jun 11, 2009 at 12:27 PM, Camille Troillard
<camille at osculator.net>wrote:
> Hi,
>
> I am using the JIT compiler to
2006 Oct 13
4
Log-scale in histogramm
Hello
My data looks ugly in a normal histogramm. How can I create a histogramm with a Y-axis in log-scale?
Thanks for your help!
David Graf
--
2009 Jun 01
2
[LLVMdev] Questions about LLVM
Dear list,
I am learning LLVM and would like to add JIT support to the F-Script
language. F-Script is a Smalltalk like scripting language that lives in the
Objective-C runtime. It is written by Philippe Mougin.
The goal is for me to become more familiar with LLVM, and learn about the
conclusions we can draw in terms performance improvements (or degradation
!), possible optimizations, etc. So
2009 Jun 05
2
[LLVMdev] Using LLVM JIT inside a Cocoa application
Hello,
I am trying to compile a project I am writing with Xcode that will use
LLVM libraries to generate code executed with the JIT.
I would be curious to learn how you deal with LLVM header files,
libraries, makefiles and Cocoa application projects.
My candid understanding is that LLVM projects need to be built with
LLVM makefiles (hence the previous message I sent about LLVM
Projects). I am