search for: shengmei

Displaying 13 results from an estimated 13 matches for "shengmei".

2009 Dec 11
2
[LLVMdev] IR of LLVM
Hi, all We want to learn the IR of LLVM. Are there any information or documents you can suggest? Or any suggestions are welcome. Thanks Shengmei -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20091211/0a788413/attachment.html>
2009 Dec 21
2
[LLVMdev] What benchmarks can LLVM compile and run successfully?
Hi, I want to know what benchmarks can LLVM compile and run successfully. Such as SPEC CPU2000, SPEC CPU2006 or other benchmarks. Thanks Shengmei -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20091221/ed70efce/attachment.html>
2009 Dec 21
0
[LLVMdev] What benchmarks can LLVM compile and run successfully?
On Sun, Dec 20, 2009 at 7:06 PM, Li Shengmei <lism03 at gmail.com> wrote: > Hi, > >          I want to know what benchmarks can LLVM compile and run > successfully. > > Such as SPEC CPU2000, SPEC CPU2006 or other benchmarks. llvm-gcc can compile essentially anything in C/C++. -Eli
2009 Dec 23
2
[LLVMdev] Problem while compling SPEC2000 with llvm-gcc
...etc. The error messages are as follows. .. zh.o unlzw.o unpack.o unzip.o util.o zip.o -o gzip bits.o: file not recognized: File format not recognized collect2: ld returned 1 exit status specmake: *** [gzip] Error 1 specmake options 2> options.err | tee options.out COMP: /home2/lishengmei/tools/llvm-gcc-4.2/bin/llvm-gcc -c -o options.o -O4 LINK: /home2/lishengmei/tools/llvm-gcc-4.2/bin/llvm-gcc -o options Some files did not appear to be built: gzip *** Error building 164.gzip If you wish to ignore this error, please use '-I' or ignore errors. When I...
2009 Dec 23
0
[LLVMdev] Problem while compling SPEC2000 with llvm-gcc
On 2009-12-23 08:22, Li Shengmei wrote: > > Hi, all > > I use llvm-gcc –O4 to compile SPEC 2000, some benchmarks > can’t be built successfully, such as 164.gzip, 175.vpr etc. > > The error messages are as follows. > > > > …… > > zh.o unlzw.o unpack.o unzip.o util.o zip.o -o gzi...
2009 Dec 08
2
[LLVMdev] Problem while building llvm
Hi, all I come across the problem when building llvm. The errors are as follows ... etJITInfo&, llvm::JITMemoryManager*, llvm::CodeGenOpt::Level, bool)': : undefined reference to `__register_frame' collect2: ld returned 1 exit status make[2]: *** [/home/lishengmei/llvm-2.6/Release/bin/lli] Error 1 make[2]: Leaving directory `/home/lishengmei/llvm-2.6/tools/lli' make[1]: *** [lli/.makeall] Error 2 make[1]: Leaving directory `/home/lishengmei/llvm-2.6/tools' make: *** [all] Error 1 I search the key words with google but can't find...
2009 Dec 31
0
[LLVMdev] Problems of source to source transformation of LLVM
Nobody give comments on this? Is the source to source transformation of LLVM robust enough? Thanks in advance. Shengmei _____ Problems of source to source transformation of LLVM Hi, I did experiments of the source transformation of LLVM on SPEC2000 C programs. But I found most benchmarks can't be transformed from source to source successfully. The steps are as follows. 1. I write a s...
2010 Jan 05
1
[LLVMdev] Clang "warning: cannot find entry symbol mit-llvm-bc"
...c0 llc: bitcode didn't read correctly." When I use lli to execute the test.bc as $lli test. bc The error message is "lli: error loading program 'test.bc': Bitcode stream should be a multiple of 4 bytes in length" Anyone give help on it? Thanks in advance. Shengmei -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100105/1cd46ff9/attachment.html>
2009 Dec 08
0
[LLVMdev] Problem while building llvm
Hi, all I come across the problem when building llvm. The errors are as follows ... etJITInfo&, llvm::JITMemoryManager*, llvm::CodeGenOpt::Level, bool)': : undefined reference to `__register_frame' collect2: ld returned 1 exit status make[2]: *** [/home/lishengmei/llvm-2.6/Release/bin/lli] Error 1 make[2]: Leaving directory `/home/lishengmei/llvm-2.6/tools/lli' make[1]: *** [lli/.makeall] Error 2 make[1]: Leaving directory `/home/lishengmei/llvm-2.6/tools' make: *** [all] Error 1 I search the key words with google but can't find...
2009 Dec 08
0
[LLVMdev] Problem while building llvm
Hi, > / : undefined reference to `__register_frame' / this is defined in libgcc on most platforms and is used for registering exception handling frames. LLVM's JIT makes use of it on some platforms. What version of gcc are you using? Ciao, Duncan.
2009 Dec 08
1
[LLVMdev] Problem while building llvm
Thanks, sands My gcc version is 3.4.6. Any problems? Shengmei ---------------- Hi, > / : undefined reference to `__register_frame' / this is defined in libgcc on most platforms and is used for registering exception handling frames. LLVM's JIT makes use of it on some platforms. What version of gcc are you using? Ciao, Duncan.
2009 Dec 25
0
[LLVMdev] Problems of source to source transformation of LLVM
...from MD5.c:28: cop.h:217: error: expected specifier-qualifier-list before 'bool' 3. 255.gap oa1.c: In function 'OaCompare': oa1.c:1714: error: duplicate case value oa1.c:1705: error: previously used here Can anyone give help? Thanks very much in advance. Shengmei -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20091225/1f530c46/attachment.html>
2010 Aug 19
1
[LLVMdev] About loop information in LLVM during compiling
Hi, all Can we get the loop information in LLVM during compiling? In which phase or function we can obtain the loop related information? Thanks May