search for: jingl1345

Displaying 20 results from an estimated 40 matches for "jingl1345".

2010 Jun 06
1
[LLVMdev] Error while compiling mysql using LLVM-gold
...ings to check: Run llvm-gcc a.c -emit-llvm -use-gold-plugin -Wl,debug This will print the link command line. What is it? Do you get the same error messages if you run just that? Are gold and the plugin linked with the same libstdc++? Cheers On Jun 5, 2010 11:50 PM, "Guoliang Jin" <jingl1345 at gmail.com> wrote: The errors are /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found /lib/libc.so.6: version `GLIBC_2.7' not found I can not use it in the command line... Rafael Espindola wrote: >> >> However, I got >> "... >> checking for gcc....
2010 Jun 06
0
[LLVMdev] Error while compiling mysql using LLVM-gold
...se-gold-plugin -Wl,debug > > This will print the link command line. What is it? Do you get the same > error messages if you run just that? > > Are gold and the plugin linked with the same libstdc++? > > Cheers > >> On Jun 5, 2010 11:50 PM, "Guoliang Jin" <jingl1345 at gmail.com >> <mailto:jingl1345 at gmail.com>> wrote: >> >> The errors are >> /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found >> /lib/libc.so.6: version `GLIBC_2.7' not found >> >> I can not use it in the command line... >&...
2010 Jul 22
1
[LLVMdev] gold and debug information
On Thu, Jul 22, 2010 at 1:21 PM, Jin Guoliang <jingl1345 at gmail.com> wrote: > On Thu, Jul 22, 2010 at 11:35 AM, Devang Patel <devang.patel at gmail.com>wrote: > >> On Wed, Jul 21, 2010 at 9:50 AM, Jeffrey Yasskin <jyasskin at google.com> >> wrote: >> >> This (Unknown constant! in bitcode writer when -g is u...
2010 Jun 06
2
[LLVMdev] Error while compiling mysql using LLVM-gold
The errors are /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found /lib/libc.so.6: version `GLIBC_2.7' not found I can not use it in the command line... Rafael Espindola wrote: >> However, I got >> "... >> checking for gcc... llvm-gcc -use-gold-plugin >> checking for C compiler default output file name... >> ... >> configure: error: C
2010 Jun 06
2
[LLVMdev] Error while compiling mysql using LLVM-gold
On 6 June 2010 13:48, Guoliang Jin <jingl1345 at gmail.com> wrote: > Thanks Rafael. > > I compiled llvm-gcc by myself, and I can compile mysql now. > > Right now, when I run llvm-gcc a.c -emit-llvm -use-gold-plugin -Wl,debug > I got > ld: error: cannot open debug: No such file or directory > collect2: ld returned 1 e...
2010 Jun 25
0
[LLVMdev] libLLVMgold.so: could not load plugin library
On 25 June 2010 03:17, Guoliang Jin <jingl1345 at gmail.com> wrote: >  Hi there, > > I checked out the latest code from the repository, and wanna use the gold > plugin, but I got the following: > > libLLVMgold.so: could not load plugin library > > Do you know why this is happening? > > Also I noticed the name of...
2010 Jul 08
0
[LLVMdev] passing parameters for a analysis pass
You can use llvm::sys::Path::GetTemporaryDirectory() and put the inputs and outputs there. Reid On Wed, Jul 7, 2010 at 4:23 PM, Guoliang Jin <jingl1345 at gmail.com> wrote: >  Hi, > > I want to pass parameter to a analysis pass. My pass need to use some > result from some other tools. I can hard code a file name into my pass, > and let my pass read input there, but what if I do not want the file > name to be hard coded? > &...
2010 Jul 20
0
[LLVMdev] gold and debug information
On Mon, Jul 19, 2010 at 11:06 PM, Guoliang Jin <jingl1345 at gmail.com> wrote: >  Hi, > > I would like to get the whole program bitcode with debug information in it. > > I tried to use CFLAGS = "-O4 -g", but it ends with the following error: > collect2: ld terminated with signal 6 [Aborted] > Unknown constant! > UNREAC...
2010 Jul 20
2
[LLVMdev] gold and debug information
Hi, I would like to get the whole program bitcode with debug information in it. I tried to use CFLAGS = "-O4 -g", but it ends with the following error: collect2: ld terminated with signal 6 [Aborted] Unknown constant! UNREACHABLE executed at /local.toadette/aliang/fixing/llvm-2.7/llvm-2.7/lib/Bitcode/Writer/BitcodeWriter.cpp:895! What is the right way to get a whole program bitcode
2010 Jun 25
2
[LLVMdev] libLLVMgold.so: could not load plugin library
Hi there, I checked out the latest code from the repository, and wanna use the gold plugin, but I got the following: libLLVMgold.so: could not load plugin library Do you know why this is happening? Also I noticed the name of the library is changed to LLVMgold.so, and I just renamed it to libLLVMgold.so when I copied it. Is this the right thing to do? Thanks, Guoliang
2010 Jul 07
3
[LLVMdev] passing parameters for a analysis pass
Hi, I want to pass parameter to a analysis pass. My pass need to use some result from some other tools. I can hard code a file name into my pass, and let my pass read input there, but what if I do not want the file name to be hard coded? Is it possible to do that? If yes, where can I find some documentation about it? Thanks, Guoliang
2010 Aug 31
0
[LLVMdev] What are the optimizations that gold uses during the final link stage?
On 19 August 2010 01:25, Guoliang Jin <jingl1345 at gmail.com> wrote: >  Hi, > > I am using gold plugin with the option "-use-gold-plugin > -Wl,-plugin-opt=also-emit-llvm" to compile apache. > > I objdumped the final executable httpd to httpd.S. > > I also compiled those per file bytecode into native code usin...
2010 Aug 19
2
[LLVMdev] What are the optimizations that gold uses during the final link stage?
Hi, I am using gold plugin with the option "-use-gold-plugin -Wl,-plugin-opt=also-emit-llvm" to compile apache. I objdumped the final executable httpd to httpd.S. I also compiled those per file bytecode into native code using the following: llc filename.o llvm-gcc -c filename.o.s -o filename.o.o Then I objdumped filename.o.o to filename.o.S and compared some functions between
2010 Jun 06
1
[LLVMdev] whole program bitcode and gold plugin
Hi, I found some posts on the topic of whole program bitcode and gold plugin. I put lto_codegen_write_merged_modules(cg, "/path/to/output.bc") into gold-plugin.cpp all_symbols_read_hook() and compiled one autotooled program (ftp://ftp.gnu.org/gnu/diction/diction-1.11.tar.gz) as described in the gold plugin document, however, I still did not see the output.bc. Can anyone has
2010 Jul 22
2
[LLVMdev] gold and debug information
On Wed, Jul 21, 2010 at 9:50 AM, Jeffrey Yasskin <jyasskin at google.com> wrote: >> This (Unknown constant! in bitcode writer when -g is used) is a known >> bug in CloneModule, because it is not cloning MDNodes appropriately. > > What's the link to the bug report? Are you fixing it? PR 7689. Fixed in r109117. - Devang
2010 Jul 22
0
[LLVMdev] gold and debug information
On Thu, Jul 22, 2010 at 11:35 AM, Devang Patel <devang.patel at gmail.com>wrote: > On Wed, Jul 21, 2010 at 9:50 AM, Jeffrey Yasskin <jyasskin at google.com> > wrote: > >> This (Unknown constant! in bitcode writer when -g is used) is a known > >> bug in CloneModule, because it is not cloning MDNodes appropriately. > > > > What's the link to the
2010 Aug 19
1
[LLVMdev] questions about context
Hi, I am trying to load another bytecode file in one pass. I checked the opt.cpp, it uses following to load a bytecode file: ... LLVMContext &Context = getGlobalContext(); ... SMDiagnostic Err; // Load the input module... std::auto_ptr<Module> M; M.reset(ParseIRFile(InputFilename, Err, Context)); ... My question is in the runOnModule method where I want to load
2010 Aug 27
0
[LLVMdev] how to check whether from basicblock A we can go to basicblock B within the same function?
Yes, that would be better. -----Original Message----- From: Guoliang Jin <jingl1345 at gmail.com> Sent: Friday, August 27, 2010 5:05 PM To: llvmdev at cs.uiuc.edu <llvmdev at cs.uiuc.edu> Subject: Re: [LLVMdev] how to check whether from basicblock A we can go to basicblock B within the same function? > Every basic block ends with a terminator instruction that indicat...
2010 Jun 06
0
[LLVMdev] Error while compiling mysql using LLVM-gold
Rafael Espindola wrote: > On 6 June 2010 13:48, Guoliang Jin <jingl1345 at gmail.com> wrote: > >> Thanks Rafael. >> >> I compiled llvm-gcc by myself, and I can compile mysql now. >> >> Right now, when I run llvm-gcc a.c -emit-llvm -use-gold-plugin -Wl,debug >> I got >> ld: error: cannot open debug: No such file or dire...
2010 Jul 08
1
[LLVMdev] passing parameters for a analysis pass
...and you're on your way. ~Will On Wed, Jul 7, 2010 at 9:55 PM, Reid Kleckner <reid.kleckner at gmail.com> wrote: > You can use llvm::sys::Path::GetTemporaryDirectory() and put the > inputs and outputs there. > > Reid > > On Wed, Jul 7, 2010 at 4:23 PM, Guoliang Jin <jingl1345 at gmail.com> wrote: >>  Hi, >> >> I want to pass parameter to a analysis pass. My pass need to use some >> result from some other tools. I can hard code a file name into my pass, >> and let my pass read input there, but what if I do not want the file >> name...