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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 287 - 317 of 4503   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
287
Use the -mt switch: pin -mt -t <tool> -- <app> ... ... From: Arrvindh Shriraman [mailto:ashriram@...] Sent: Friday, June 03, 2005 3:46 AM To: PIN...
Cohn, Robert S
rscohn2000
Offline Send Email
Jun 3, 2005
11:10 am
288
Hi, I'm a new user of Pin and I want to report an assert that I get when using Pin 2.0. I'm using the latest version of Pin 2.0 for 64bit x86 on a 2P machine...
akhaleel2001
Online Now Send Email
Jun 8, 2005
5:16 pm
289
Please send me the output for the following commands: ../Bin/pin ../Bin/pin -- uname cat /proc/version Robert ... From: pinheads@yahoogroups.com...
Cohn, Robert S
rscohn2000
Offline Send Email
Jun 8, 2005
9:04 pm
290
[hwsuse:SimpleExamples]$ ../Bin/pin Use -- to specify an application to run VERSION: 1816 BUILDER: rscohn1 DATE: Apr 15 2005 Usage: pin [OPTION] [-t <tool>...
akhaleel2001
Online Now Send Email
Jun 8, 2005
9:38 pm
291
We normally test x86_64 on red hat 3. I tried doing a test on a x86_64 suse linux enterprise server 9 system and "pin -- uname" works. I do see a problem using...
Cohn, Robert S
rscohn2000
Offline Send Email
Jun 9, 2005
5:36 pm
292
Hi everyone, I want to instrument backward going jumps in ia32. I am using INS_Category to determine if the instruction is a conditional JMP. I want to use...
Rahul Saxena
rahulsaxon
Offline Send Email
Jun 12, 2005
4:09 am
293
Indirect branches get their target from a register or memory so if you want to handle these cases, you must use IARG_BRANCH_TARGET_ADDR because their target is...
Cohn, Robert S
rscohn2000
Offline Send Email
Jun 12, 2005
11:28 am
294
I'm trying to use the instruction tracing plugin to trace the instruction execution of the SPECJBB2000 benchmark. Essentially this calls the java vm along with...
akhaleel2001
Online Now Send Email
Jun 13, 2005
5:25 pm
295
Pin does not support self-modifying code (JVM is self modifying). Rmesh ________________________________ From: pinheads@yahoogroups.com...
Peri, Ramesh V
rperi3679
Offline Send Email
Jun 13, 2005
5:51 pm
296
But the benchmark still runs to completion without any problems....
akhaleel2001
Online Now Send Email
Jun 14, 2005
4:27 pm
297
Java might do a fork/exec. The exec wipes out the current address space, including pin and you will lose control of the child process. If you do a "strace -ff"...
Cohn, Robert S
rscohn2000
Offline Send Email
Jun 14, 2005
4:32 pm
298
I've attached the output of trace -sf, I don't see any fork statements in this. Although right at the end it has a rt_sigaction(, NULL, <unfinished ...> which...
akhaleel2001
Online Now Send Email
Jun 14, 2005
11:21 pm
300
I don't see any fork, clone, or execs here either. You said there were a number of processes, so another process must be creating them. Another thing to try is...
Cohn, Robert S
rscohn2000
Offline Send Email
Jun 16, 2005
1:54 pm
301
I tried this code with malloctrace and didnt detect malloc main() { int *a=(int*)malloc(10); } I dumped the binary and it doesnt have any routing with malloc. ...
arrvindh_shriraman
arrvindh_shr...
Offline Send Email
Jun 16, 2005
4:39 pm
302
I have a debug trace output. I've uploaded it the pinhead files section as its too big to just post within a message. Just go to the files link on the left...
akhaleel2001
Online Now Send Email
Jun 16, 2005
11:11 pm
303
The program is in exec, so you will lose control of the application after that. 545783 | | | | Call execvp+0x008d -> .plt+0x0370(0x5182744c, ...) Some people...
Cohn, Robert S
rscohn2000
Offline Send Email
Jun 17, 2005
12:32 pm
304
This depends on your libc having symbols. Do ldd <appname> to see which libc you are using and then objdump -x <libcname> to see if there are symbols. I think...
Cohn, Robert S
rscohn2000
Offline Send Email
Jun 17, 2005
12:46 pm
305
Is there any way to instrument only the commited instructions and measure IPC...
arrvindh_shriraman
arrvindh_shr...
Offline Send Email
Jun 20, 2005
11:31 pm
306
Dear VJ, Does PIN instruction tracer. trace all the instructions (issued and along mispredicted branches) or only the commited instructions. if only commited ...
arrvindh shriraman
arrvindh_shr...
Offline Send Email
Jun 21, 2005
1:39 pm
307
Good morning :), I found that Pin instruments the same trace (as far as I can tell) twice in a very short period of time.. This happens almost immediately when...
Micha Moffie
micha_moffie
Online Now Send Email
Jun 21, 2005
2:39 pm
308
Hi Micha, Could you tell me the API you are using to determine that the trace was instrumented twice? Kim ... From: pinheads@yahoogroups.com...
Hazelwood Cettei, Kim...
hazelwoodkim
Offline Send Email
Jun 21, 2005
2:42 pm
309
Hi Kim :), I use TRACE_AddInstrumentFunction(Trace_instrument_callback, 0); I then check the trace in the instrumentation callback function. (I print...
Micha Moffie
micha_moffie
Online Now Send Email
Jun 21, 2005
3:04 pm
310
Just so we are all on the same page - this is not a bug in Pin. This is a side-effect of Pin's internal design. & veej....
VJ
thep0rt
Offline Send Email
Jun 21, 2005
3:06 pm
311
Hi Micha, The reason you are seeing the same address being instrumented twice is because there are actually two versions of the trace present in the code ...
Hazelwood Cettei, Kim...
hazelwoodkim
Offline Send Email
Jun 21, 2005
3:23 pm
312
Oops... a slight correction: The register allocator cannot be turned off, you will not be able to apply instrumentation if you do so. & veej....
VJ
thep0rt
Offline Send Email
Jun 21, 2005
3:27 pm
313
Thanks you and veej so much Just wanted to make sure its o.k. ... micha....
Micha Moffie
micha_moffie
Online Now Send Email
Jun 21, 2005
3:49 pm
314
Good afternoon, I am comparing FILTER_LIB results to my own implementation. I find a few differences where FILTER_LIB filters the address out (i.e. Returns ...
Micha Moffie
micha_moffie
Online Now Send Email
Jun 21, 2005
4:47 pm
315
I did a quick test and don't see anything wrong. The source for the filters is in InstLib/filter.H It walks the up pointers from TRACE to IMG and then checks...
Cohn, Robert S
rscohn2000
Offline Send Email
Jun 21, 2005
6:22 pm
316
I use pin to trace every instruction and all associated processor state, registers read/write etc. Few lines of every Ins trace shows read/write to...
arrvindh_shriraman
arrvindh_shr...
Offline Send Email
Jun 21, 2005
7:57 pm
317
Hi robert, I debugged, There are two problems, if I fix those I get the same results as my implementation: 1. The _noSharedLibKnob.Value() is always false -...
Micha Moffie
micha_moffie
Online Now Send Email
Jun 21, 2005
8:56 pm
Messages 287 - 317 of 4503   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