similar to: [LLVMdev] Creating a LLVM Project from the Sample project

Displaying 20 results from an estimated 1000 matches similar to: "[LLVMdev] Creating a LLVM Project from the Sample project"

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 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
2009 Jun 05
0
[LLVMdev] Using LLVM JIT inside a Cocoa application
Hello, I'm not an LLVM expert, but I think you can build a Cocoa/LLVM project by using the LLVM's libraries and headers the same way you did with any other third party library. In fact, that's what the clang Xcode project does. It does not use any makefile. In short: - Add the llvm/include folder in you header search path (in the project's build settings). To add
2009 Jan 12
0
[LLVMdev] Creating an LLVM Project
On Jan 3, 2009, at 10:20 AM, Martin Geisse wrote: > > 2. The line > > AutoRegen.sh > > ("Create a Project from the Sample Project", step 5) should be > changed to > > ./AutoRegen.sh > > so it will work if . is not in the path. Fixed. > > > 3. In "Create a Project from the Sample Project", step 6 the > arguments are used to
2009 Jan 03
3
[LLVMdev] Creating an LLVM Project
Hello, I just tried to work through the "Creating an LLVM Project" tutorial and have some suggestions to improve that page (http://www.llvm.org/ docs/Projects.html). 1. The tutorial says "remove all the directories named .svn ("Create a Project from the Sample Project", step 2), so here's a command to copy-and-paste and run from within the new project
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 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
2007 Feb 23
1
[LLVMdev] Trouble with sample project's autoconf
On 2/23/07, Reid Spencer <rspencer at reidspencer.com> wrote: > > However, if I run the AutoRegen.sh script (after modifying it to > > accept autoconf 2.61, which I think is fine as gentoo slots it the > > same as the 2.5[0-9] versions), the configure no longer works: > > ~/programming/llvm-1.9/projects/zhe $ cd autoconf/ > >
2007 Feb 21
2
[LLVMdev] Trouble with sample project's autoconf
I'm trying to follow docs/Projects.html to use llvm in a project of my own. If I just copy the sample directory, running configure in the new one works fine: ~/programming/llvm-1.9/projects $ cp -a sample/ zhe ~/programming/llvm-1.9/projects $ cd zhe/ ~/programming/llvm-1.9/projects/zhe $ ./configure configure: creating ./config.status config.status: creating Makefile.common config.status:
2008 Apr 12
0
[LLVMdev] Setting up new project
On Sat, Apr 12, 2008 at 1:26 PM, Lane Schwartz <dowobeha at gmail.com> wrote: > John, > > Thanks for the advice. The script you sent gives me the same problem. > I am now able to work around the issue by making the following change > to the AutoRegen.sh script that comes with the sample project: > > 16,17c16,17 > < llvm_src_root=../../.. > <
2012 Mar 13
7
ROC Analysis
Hi everybody, I have a data set with a value and a status (positive or negative case) and I want make a ROC Analysis. So, with ROCR Package, I have got the ROC curve (True Positive Fraction [tpf] according 1-True Negative Fraction [1-tnf]). http://r.789695.n4.nabble.com/file/n4469203/01.png But, now I want a new graphic which show the sum of true positive fraction and true negative fraction
2008 Apr 13
0
[LLVMdev] Setting up new project
On Sat, Apr 12, 2008 at 3:52 PM, Criswell, John T <criswell at ad.uiuc.edu> wrote: > Try using the --with-llvmsrc and --with-llvmobj options to explicitly set the locations of your LLVM source tree and object tree, respectively. I faintly recall seeing this error and seem to recall using these options to work around it. OK. Here are the complete steps required to successfully build the
2008 Apr 12
2
[LLVMdev] Setting up new project
On Fri, Apr 11, 2008 at 3:24 PM, John Criswell <criswell at cs.uiuc.edu> wrote: > Lane Schwartz wrote: > > > [snip] > > > > OK then. I didn't realize that having a newer version would be a problem. > > > > I compiled and installed autoconf 2.59. I still get the same problem: > > > > $ autoconf --version > > autoconf (GNU Autoconf)
2008 Apr 12
3
[LLVMdev] Setting up new project
Try using the --with-llvmsrc and --with-llvmobj options to explicitly set the locations of your LLVM source tree and object tree, respectively. I faintly recall seeing this error and seem to recall using these options to work around it. -- John T. ________________________________________ From: llvmdev-bounces at cs.uiuc.edu [llvmdev-bounces at cs.uiuc.edu] On Behalf Of Lane Schwartz [dowobeha at
2006 Apr 13
3
editor for Ubuntu
Hello, I am new on Ubuntu. I would like to use R, but I tried Kate and Scite. The first one keeps trying to use KDE applications,while the other does not understand the language. I have searched for another editor for hours, in vain. Which editor should work with Ubuntu? I am looking forward to your answer, thanks, Camille
2006 Dec 19
1
Is logic right?
OK. My basic asterisk install seems to be working. I can get caller ID. My dialplan says: [incoming] ; incoming calls from the FXO port are directed to this context from zapata.conf exten => s/9185415897,1,Set(CALLERID(name)=Michael Sullivan) exten => s/9185415897,1,HANGUP(1) exten => s,1,Set(CALLERID(name)=Someone Else) This is for testing. It's supposed to check the caller ID
2004 Sep 27
1
multinom object :way of plotting??
Dear all, I'm fitting a multinom function to my dataset (multinom(outcome~age+K+D)) and I need to present my results on a poster. Does someone know a nice way of doing that? I think I saw in an archive that you cannot plot a multinom.object, is it true? Thank you by advance for your help, Cheers Camille
2006 Dec 12
3
Need help getting started with asterisk
I am new to asterisk. I need help getting started, if it's even worth getting started. I say if it's worth getting started because I'm not sure if my hardware will even work with asterisk. I have a US ROBOTICS 56K V.90 PCI SOFT MODEM. I have standard twisted pair telephone wire. I can't afford to alter my hardware. I know I won't be able to do any sophistocated VoIP stuff.