Search the web
Sign In
New User? Sign Up
pinheads · Pin Dynamic Binary Instrumentation Tool
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2101 - 2132 of 4499   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2101
I am trying to a run multi-threaded program that spawns 1024 threads. Unfortunately, pin bails after spawning thread #999. Is this a limitation of pin? Is...
danamvan
Offline Send Email
Nov 1, 2007
9:24 pm
2102
Yes, there is a compiled-in limit of 1000 active threads in Pin. Note, it's OK if the application creates more than 1000 threads so long as there isn't more...
Lueck, Gregory M
lueckintel
Offline Send Email
Nov 1, 2007
10:17 pm
2103
Li, What Linux distribution are you using? What command line did you use? Thanks, Gail ... need ... (rtn) ... newfunc, ... IARG_FUNCARG_ENTRYPOINT_VALUE, i, ...
glyons01
Offline Send Email
Nov 2, 2007
1:00 pm
2104
RedHat Enterprise Linux 4.0 ../Bin/pin -probe -t replacesig_empty -- /usr/local/sbin/pure-ftpd I have also found that there is also some problem in...
lzwict
Offline Send Email
Nov 2, 2007
1:32 pm
2105
Li, Could you describe how this fails? Do you see an error message? Does it occur on any file transfer? Thanks, Gail ... pread64. ... I ... calls ... RTN_Name...
glyons01
Offline Send Email
Nov 2, 2007
9:44 pm
2106
Hmm, there are seems to be problems when I run linpack in double precision (DP) mode. When I run the SimpleExamples catmix on a small (1000x1000 matrix) in...
emvanrijk
Offline Send Email
Nov 2, 2007
10:14 pm
2107
Without PIN, downloading a file from this FTPD server is successful (using *get test.txt* under a ftp client in my case). If under PIN using my tool...
lzwict
Offline Send Email
Nov 3, 2007
1:30 pm
2108
It seems like either the arguments that are being captured by the probe are not right, or they are right and there is an issue with the probe's invocation of...
Cohn, Robert S
rscohn2000
Offline Send Email
Nov 3, 2007
3:55 pm
2109
I have a very basic question on the difference of analysis code and instrumentation code, while tuning for a pintool for performance. Why do we need...
chuckchy
Offline Send Email
Nov 4, 2007
12:28 pm
2110
Hiya, ... The instrumentation is only done once (this is not exactly true, but still) for every static instruction (i.e. the ones you can see using objdump for...
Kenneth Hoste
b0egel
Offline Send Email
Nov 4, 2007
6:04 pm
2111
Kenneth, Thank you for the reply. I guess I was confusing between static instrumentation (instrumentation routine) and dynamic execution (analysis routine). ...
chuckchy
Offline Send Email
Nov 4, 2007
10:16 pm
2112
I have done the debug as of your suggestions. The wrap-up on my findings from the failure is recorded as follows. (1) first, I have used the following command...
lzwict
Offline Send Email
Nov 5, 2007
3:42 am
2113
Hi, I just checked it. Following is what I got. Program received signal SIGILL, Illegal instruction. 0x0000080000640651 in ?? () (gdb) x/i 0x0000080000640651 ...
shanlu_uiuc
Offline Send Email
Nov 5, 2007
5:54 am
2114
Hi ... If you're staring at the MICA v0.1 code, please bare in mind I will be releasing a v0.2 soon. I know the code in v0.1 is very messy, and also contains...
Kenneth Hoste
b0egel
Offline Send Email
Nov 5, 2007
6:43 am
2115
Hello, I'm having problems with the latest Pin kit (gcc 4.0.0), which I didn't have before (with kit 14297). When I run ammp (one of the SPEC CPU2000...
Kenneth Hoste
b0egel
Offline Send Email
Nov 5, 2007
10:59 am
2116
It looks like you are showing a case where interception of mmap worked. You said that an invocation of mmap64 returns 0xfffffff. We need to see that invocation...
Cohn, Robert S
rscohn2000
Offline Send Email
Nov 5, 2007
11:59 am
2117
It looks like a pin internal data structure was corrupted. Looking at your stacktrace, the problem must have occurred before PIN_StartProgram was invoked. Try...
Cohn, Robert S
rscohn2000
Offline Send Email
Nov 5, 2007
12:04 pm
2118
... You're right, something fishy was going on there... Sorry about the noise. ... -- Prediction is very difficult, especially about the future. (Niels Bohr) ...
Kenneth Hoste
b0egel
Offline Send Email
Nov 5, 2007
12:21 pm
2119
Can you double-check your prototype for mmap64()? Your tool defines it this way: typedef void * (*FNPTR_MMAP64)(void *, size_t, int, int, int, off_t); ...
Lueck, Gregory M
lueckintel
Offline Send Email
Nov 5, 2007
1:57 pm
2120
I am sure that pure-ftpd is using mmap64, but the dump from strace is showing mmap64 as mmap2 instead. The invocation is due to my trick in intercepting...
lzwict
Offline Send Email
Nov 5, 2007
2:15 pm
2123
Thank you for pointing out Yes, initially, I am using __off64_t, but it will not work at all: the loading of the library image fails with __off64_t. So I just...
lzwict
Offline Send Email
Nov 5, 2007
4:15 pm
2124
Li, PIN_PARG(long long) is not currently supported in Pin. The problem occurs when you pass the "off" argument into the replacement routine. This corrupts...
glyons01
Offline Send Email
Nov 5, 2007
4:34 pm
2125
Hi, Gail, Great, it works. As it stands out, I have one solution for this problem. Please let me know whether it works based on PIN. Declare FNPTR_MMAP64 with...
lzwict
Offline Send Email
Nov 5, 2007
6:23 pm
2126
Hi, We are trying to write a pin-tool for multi-threaded apps written using pthreads. What we want to be able to do is for the pin-tool to be able to control...
Harshad Kasture
harshadkasture
Offline Send Email
Nov 6, 2007
12:08 am
2127
... under pin, the multiple ... This is true. To answer your larger problem ... Unfortunately, it is not possible to use the pthread library inside of a tool....
Lueck, Gregory M
lueckintel
Offline Send Email
Nov 6, 2007
1:25 pm
2128
... It works, and quite well. See http://people.redhat.com/drepper/futex.pdf for information on how futexes work & how to program with them....
tucek@...
Send Email
Nov 6, 2007
3:27 pm
2129
Depending upon your tool, you might build a client-server kind of package, where the pin tool generates output, and stuffs it into shared memory. Then, other...
Richard Gorton
rgorton_amt
Offline Send Email
Nov 6, 2007
8:38 pm
2130
Hi, Is it possible to have on demand instrumentation through Pin? What I am looking for is to be able to turn on Pin while in middle of a process, or start the...
shahriyarmamini
Offline Send Email
Nov 7, 2007
12:02 am
2131
Hello, You could write a pin tool that does the most minimal instrumentation (e.g. icount2) and at the same time polls a file every N instructions. For...
Jaleel, Aamer
aamer0604
Offline Send Email
Nov 7, 2007
12:04 pm
2132
I didn't find a PIN_Attach() call neither, so I guess what Aamer said would be the plausible way to try. Chuck...
chuckchy
Offline Send Email
Nov 7, 2007
12:56 pm
Messages 2101 - 2132 of 4499   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help