search for: theans

Displaying 9 results from an estimated 9 matches for "theans".

Did you mean: thans
2005 Dec 15
2
[LLVMdev] List Scheduling on LLVM Instructions
Hi All, I am planning to use list scheduling on LLVM instructions. Any recommendation on how to start ? As in which codes in LLVM that I need to look at. Since I am still a newbie, any readings recommended? :) Thanks a lot for the help. Regards, Kiat -------------- next part -------------- An HTML attachment was scrubbed... URL:
2005 Dec 15
0
[LLVMdev] List Scheduling on LLVM Instructions
On Thu, 15 Dec 2005, thean kiat sew wrote: > I am planning to use list scheduling on LLVM instructions. > Any recommendation on how to start ? As in which codes in LLVM that I need > to look at. We don't currently have a list scheduler in the target-independent code generator, but we do have the infrastructure needed to implement one. Check out the
2005 Dec 16
1
[LLVMdev] List Scheduling on LLVM Instructions
Didn't SparcV9 backend implement list scheduling? 2005/12/16, Chris Lattner <sabre at nondot.org>: > On Thu, 15 Dec 2005, thean kiat sew wrote: > > I am planning to use list scheduling on LLVM instructions. > > Any recommendation on how to start ? As in which codes in LLVM that I need > > to look at. > > We don't currently have a list scheduler in the
2009 Feb 02
6
Selectively Removing objects
Dear list members, Does anyone know how to use rm() to remove only variables but not declared functions from the environment ? I understand I could name all the functions with, let's say "f_something", make sure that all variables do not start with "f_" and then remove all BUT objects starting with "f_". However, I have already defined all the functions and it
2005 May 19
0
[LLVMdev] Building LLVM cfrontend
The very first time you build GCC, you should do "make bootstrap". After that, you can use "make" and "make install" Reid. On Fri, 2005-05-20 at 00:15 +0800, thean kiat sew wrote: > Hi, I am still new to LLVM and also GNU softwares. > > I am doing a project using LLVM. > > I was building cfrontend on my windows cygwin, however I encountered >
2005 May 25
2
[LLVMdev] LLVM Cygwin Run Errors
Hi, I am wondering whether the bytecode generated by my llvm-gcc is correct? When I run $ llvm-gcc hello.c -o hello What I get is hello.exe.bc, and hello.exe (I can actually llvm-dis the bytecode file which is hello.exe.bc). However, I do not get a shell script(named hello) as stated in the documentation... Best Regards, Kiat On 5/25/05, Aaron Gray <angray at beeb.net> wrote: >
2005 May 19
2
[LLVMdev] Building LLVM cfrontend
Hi, I am still new to LLVM and also GNU softwares. I am doing a project using LLVM. I was building cfrontend on my windows cygwin, however I encountered this problem, may I now what is the cause? ******************************** my configuration output is: bash-2.05b$ ../src/configure --prefix=$CFEINSTALL --disable-threads --disable-n ls --disable-shared --enable-languages=c,c++ loading
2005 May 25
5
[LLVMdev] LLVM Cygwin Run Errors
Hi, I installed the cfrontend 1.5 and LLVM 1.5 from source in cygwin successfully using GCC3.4.3 and binutils2.15 (as in makefiles do not complain errors except some warnings). However when I do this, there are some errors like, *************************************************************** u0201201 at 9nnvf2ay /home/cfrontend/install/lib $ llvm-ranlib libiberty.a llvm-ranlib: Error opening
2005 May 26
0
[LLVMdev] LLVM Cygwin Run Errors
Hi, Maybe I can provide you with the installation steps that I done in my machine. What I did is, 1. first install cygwin, I attached a list of the packages I installed. (there are quite a lot of packages) 2. build the binutils-2.15. 3. Then gcc-3.4.3. (I am using the new binutils which is the 2.15) 4. Next, I follow the instructions in the LLVM documentation to further build the