similar to: [LLVMdev] profile.pl (llvm-prof) crash

Displaying 20 results from an estimated 10000 matches similar to: "[LLVMdev] profile.pl (llvm-prof) crash"

2007 Jun 13
3
DO NOT REPLY [Bug 4693] New: Amazon S3 storage interface for rsync
https://bugzilla.samba.org/show_bug.cgi?id=4693 Summary: Amazon S3 storage interface for rsync Product: rsync Version: 3.0.0 Platform: Other OS/Version: Linux Status: NEW Severity: enhancement Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: rsync.20.bdixon@xoxy.net
2011 Apr 25
2
[LLVMdev] Failed to decode profile dump with llvm-prof
Hi, all I'm using profiling mechanism provided by LLVM. What I did is, $ ./${LLVM_SRC}/utils/profile.pl hello.bc But it turned out that llvm-prof failed to interpret the profile dump, llvm-prof gave me the error message below. llvm-prof: Unknown packet type #5! Any idea? Regards, chenwj -- Wei-Ren Chen (陳韋任) Computer Systems Lab, Institute of Information Science, Academia Sinica,
2011 Nov 02
1
[LLVMdev] Failed to decode profile dump with llvm-prof
陳韋任 <chenwj <at> iis.sinica.edu.tw> writes: > > Hi, all > > I'm using profiling mechanism provided by LLVM. > What I did is, > > $ ./${LLVM_SRC}/utils/profile.pl hello.bc > > But it turned out that llvm-prof failed to interpret > the profile dump, llvm-prof gave me the error message > below. > > llvm-prof: Unknown packet type #5!
2011 Nov 07
0
[LLVMdev] Failed to decode profile dump with llvm-prof
I'm having the same problem. Does anyone know what's causing this? Kind regards, Wim On Wed, Nov 2, 2011 at 3:07 AM, Michael <michael.humor at gmail.com> wrote: > 陳韋任 <chenwj <at> iis.sinica.edu.tw> writes: > > > > > Hi, all > > > > I'm using profiling mechanism provided by LLVM. > > What I did is, > > > > $
2013 Feb 01
0
[LLVMdev] Rounding error in llvm-prof output
Hello. I've used these commands to compile the code below with edge-profiling-instrumentation: $> clang -emit-llvm -c rnd.c -o rnd.bc $> opt -insert-edge-profiling rnd.bc -o rnd-prof.bc $> clang rnd-prof.bc -lprofile_rt -L/paths/lib -o rnd this is the source: #include <stdio.h> void hello() { printf("hello\n"); } int main() { int i=0; for (i=0; i<149; i++)
2011 Nov 08
0
[LLVMdev] Failed to decode profile dump with llvm-prof
Turns out I was using `opt -profile-loader` instead of `opt -path-profile-loader`. Switching to the path profile loader fixed the problem. Wim On Tue, Nov 8, 2011 at 3:18 AM, 陳韋任 <chenwj at iis.sinica.edu.tw> wrote: > On Mon, Nov 07, 2011 at 04:10:29PM +0100, Wim Vander Schelden wrote: > > I'm having the same problem. Does anyone know what's causing this? > > >
2011 Nov 08
3
[LLVMdev] Failed to decode profile dump with llvm-prof
On Mon, Nov 07, 2011 at 04:10:29PM +0100, Wim Vander Schelden wrote: > I'm having the same problem. Does anyone know what's causing this? > > Kind regards, > > Wim What's your profiling procedure? I can only guess llvm-prof does not recognize the profiling data. Regards, chenwj -- Wei-Ren Chen (陳韋任) Computer Systems Lab, Institute of Information Science, Academia
2013 Sep 04
0
[LLVMdev] llvm-prof: Error opening 'llvmprof.out': Illegal seek
It is solved. The problem was trying to profile while the llvmprof.out has not been generated. Below, the sequence of instructions that worked with me $ clang -03 -emit-llvm hello.c -c -o hello.bc $ opt -insert-edge-profiling hello.bc -o hello.profile.bc $ llc hello.profile.bc -o hello.profile.s $ clang -o hello.profile hello.profile.s
2012 Jan 03
1
[LLVMdev] Current LLVM/CLANG build failure.
I did an update about 1/2 hr ago, and instead of failing to link with -O4, I'm getting an error elsewhere in the compile. I think I need to stop chasing the bleeding edge. pandora 142% svn update At revision 147455. pandora 143% uname -a Darwin pandora.psychiatry.uiowa.edu 10.8.0 Darwin Kernel Version 10.8.0: Tue Jun 7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386 i386 pandora 144%
2011 Oct 26
1
problem profiling rspec boot time with ruby-prof
We recently upgraded to rspec2 / rails 3 and our specs are taking a very long time to run. It takes nearly 12 minutes before the first dot comes out. Before the upgrade, our entire suite of 6000+ specs would run in about 6 minutes. The majority of the delay seems to be during the loading of the spec files. Adding instrumentation to the rspec-core lib/rspec/core/ command_line.rb, you can see
2007 Dec 29
1
[LLVMdev] svn broken on cygwin
Function.cpp:167: error: call of overloaded `AddInteger(uint32_t&)' is ambiguous /home/Seb/llvm/include/llvm/ADT/FoldingSet.h:151: note: candidates are: void llv m::FoldingSetImpl::NodeID::AddInteger(int) /home/Seb/llvm/include/llvm/ADT/FoldingSet.h:152: note: void llvm::FoldingSetIm pl::NodeID::AddInteger(unsigned int) /home/Seb/llvm/include/llvm/ADT/FoldingSet.h:153: note: void
2011 Sep 26
0
[LLVMdev] The ComputeHash algorithm in FoldingSet isunsafe
I should also implement NodeEquals() method. Please ignore this message. ------------------ Original ------------------ From: "Xu Zhongxing"<xuzhongxing at foxmail.com>; Date: Mon, Sep 26, 2011 10:11 PM To: "llvmdev"<llvmdev at cs.uiuc.edu>; Subject: [LLVMdev] [LLVMDev] The ComputeHash algorithm in FoldingSet isunsafe I use FoldingSet to save some data
2011 Aug 01
2
[LLVMdev] profile.pl
Hi all I want to use "'/home/llvm/src/utils/profile.pl' -edge sort.bc" command, but i face this error: Error opening '/usr/local/lib/profile_rt.so': /usr/local/lib/profile_rt.so: cannot open shared object file: No such file or directory -load request ignored. LLVM ERROR: Program used external function 'llvm_start_edge_profiling' which could not be resolved!
2011 Aug 01
0
[LLVMdev] profile.pl
On 8/1/11 12:16 PM, neda 8664 wrote: > Hi all > > I want to use "'/home/llvm/src/utils/profile.pl <http://profile.pl>' -edge sort.bc" command, but i face this error: > > Error opening '/usr/local/lib/profile_rt.so': > /usr/local/lib/profile_rt.so: cannot open shared object file: No such > file or directory > -load request ignored. >
2011 Aug 24
0
[LLVMdev] profile.pl
hi i have another question, how can change the display of result on screen?For this purpose, i have modified the llvm-prof file and make it again. But received no results
2008 Aug 15
0
[LLVMdev] install question
Rubin, Norman wrote: > I'm trying to install llvm on my windows development box and hit a > problem > I'm using cygwin > cygwin% gcc --version > gcc (GCC) 3.4.4 (cygming special, gdc 0.12, using dmd 0.125) > > I downloaded both the top of tree via svn > I ran ./configure > make > > make[1]: Entering directory `/cygdrive/c/llvm/lib/Support' >
2008 Aug 15
3
[LLVMdev] install question
I'm trying to install llvm on my windows development box and hit a problem I'm using cygwin cygwin% gcc --version gcc (GCC) 3.4.4 (cygming special, gdc 0.12, using dmd 0.125) I downloaded both the top of tree via svn I ran ./configure make make[1]: Entering directory `/cygdrive/c/llvm/lib/Support' llvm[1]: Compiling APFloat.cpp for Debug build llvm[1]: Compiling APInt.cpp
2008 Oct 07
2
[LLVMdev] can't build LLVM under Cygwin | released MinGW llvm-2.3 image
I used to be able to build LLVM (from source) under Cygwin for llvm-2.2 and previous releases, but can't continue the trend since the release of LLVM 2.3. I have tried a wide variety of gcc compilers (gcc 3.4.4, 4.1.2, 4.2.4 and 4.3.2) on cygwin, they all fail at the same location: C:\cygwin\home\czhao\ResearchTools\LLVM\2.3\obj2.3>make make[1]: Entering directory
2007 Aug 06
2
[LLVMdev] Problem compiling LLVM under Cygwin/Mingw
Hello, I'm starting to play with LLVM today and I've trouble compiling it. I'm working under Windows Vista, with the gcc from Cygwin: gcc (GCC) 3.4.4 (cygming special, gdc 0.12, using dmd 0.125) Is LLVM supposed to work with this version of GCC (probably using the -mno-cygwin option to get a Mingw-like behavior)? The LLVM source tree is from the current SVN trunk. Compilation
2011 Sep 26
0
[LLVMdev] [LLVMDev] The ComputeHash algorithm in FoldingSet is unsafe
I use FoldingSet to save some data structures. And I found somehow it always abandon a new node. I tracked the bug into the ComputeHash() function of FoldingSet. It computes the SAME hash value for these two 32-bit unsigned integer sequences: size: 17