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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 57 - 86 of 4510   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
57
Since pin counts all instructions executed, in principle isn't INST_DISPERSED (pfmon), measured at the user level, a better match to the pin instruction count...
Pradeep Rao
pradeep@...
Send Email
Nov 12, 2004
9:29 am
58
* , I'd like to make sure I understood the statement right. * A chk.a fails if there was an intervening store to the same address the * load...
Patil, Harish
harishp1965
Offline Send Email
Nov 12, 2004
11:11 am
59
Ok guys, I have been bugging you for the past few days, but it has come to my notice that all the examples compile but when I execute anything I get a...
sohail@...
saqib511
Offline Send Email
Nov 12, 2004
7:07 pm
60
Hi, My name is Liron Kopinsky and I'm a student at the University of Colorado. But onto the more important information. For a project, a partner and I are...
skipi17
Offline Send Email
Nov 23, 2004
3:08 am
61
The pintool and benchmark are the same process. If the pintool does a kill(0, SIGUSR2) the benchmark signal handler will be invoked. Making a signal handler in...
Cohn, Robert S
rscohn2000
Offline Send Email
Nov 23, 2004
11:58 am
62
There is a new release of pin0 for ipf. Kit 178 includes * fixes for problems with line number and symbol information * fixes for problems with allocating...
rscohn2000
Offline Send Email
Nov 26, 2004
8:55 pm
63
Hi, I'm working on a paper that used PIN for some number gathering and I need a bibtex citation. What do you folks recommend? thanks, Ian -- Ian R. Bratt 77...
Ian Bratt
iandotbratt
Offline Send Email
Nov 30, 2004
2:45 pm
64
Hi Ian, We submitted a paper to PLDI earlier this month; that would be the reference when/if it is published. Until then, the web site is the best reference. ...
Muth, Robert
rmuth
Offline Send Email
Nov 30, 2004
3:00 pm
65
We submitted a paper to PLDI, but won't know if it is accepted until Jan 24. In the meanwhile, the web site URL is all we have. ... From: Ian Bratt...
Cohn, Robert S
rscohn2000
Offline Send Email
Nov 30, 2004
3:49 pm
66
We put up new kits for ia32/ia32e/ipf. All the kits now include the PinPoints tools. This uses the UCSD SimPoint method to identify representative slices of...
rscohn2000
Offline Send Email
Dec 6, 2004
12:10 pm
67
Hello, I am trying to understand the code of the dcache simulator, but there is something It is not clear for me. Is the simulated cache being virtually...
yiech
Offline Send Email
Dec 9, 2004
11:52 pm
68
Pin only lets you see virtual addresses. Robert ... From: yiech [mailto:yiech@...] Sent: Thursday, December 09, 2004 6:53 PM To: pinheads@yahoogroups.com...
Cohn, Robert S
rscohn2000
Offline Send Email
Dec 10, 2004
12:07 am
69
In fact, on pin/x86, what you are seeing is not even necessarily the virtual address (ie. linear address in x86 parlance), but rather the 'effective address'...
Artur Klauser
Pin.Project@...
Send Email
Dec 10, 2004
9:21 am
70
Thank you for all the information, Regards, Tapia ... virtual ... the same ... offset has ... address. ... segment offset...
yiech
Offline Send Email
Dec 10, 2004
5:58 pm
71
We have made a new release 1352 for ia32 and ia32e pin. More performance improvements for simple inlineable analysis functions, especially when using the new...
rscohn2000
Offline Send Email
Dec 13, 2004
10:26 pm
72
Hi, I 've used PIN to extract all memory references of my benchmarks. I used "Atrace" tool but it registers all references of the code is executed (my program...
Mehdi
m_plusplus
Offline Send Email
Jan 2, 2005
7:24 pm
73
Look at InstLibExamples/filter.C If you add the filter to atrace, then the switch -filter_no_shared_libs will prevent instrumenting shared libraries. ... From:...
Cohn, Robert S
rscohn2000
Offline Send Email
Jan 2, 2005
7:29 pm
74
Hello, I have the same problem. Does anyone have the necessary files to fix this. My OS: mandrake 9.2 gcc 3.3.1) thanks, Sada...
sadagopan78
Offline Send Email
Jan 7, 2005
10:29 pm
75
Robert, Since it's not in the FAQ yet, I'm guessing that you haven't received a response to this yet. The problem is somewhat trivial, but it manifests itself...
petaflops
Offline Send Email
Jan 9, 2005
8:05 pm
76
Hi, We get the same error with or without -d option. Just the basic ../Bin/pin -- /bin/ls alone works. We compiled it using gcc version 3.3.2 (Mandrake Linux...
sadagopan78
Offline Send Email
Jan 9, 2005
8:24 pm
77
We are pleased to announce that our latest paper describing Pin has been accepted to PLDI 2005! Pin: Building Customized Program Analysis Tools with Dynamic ...
Hazelwood Cettei, Kim...
hazelwoodkim
Offline Send Email
Jan 20, 2005
10:08 pm
78
We have released kit 1508 ia32/ia32e versions of pin. There are many minor bug fixes and better management of memory. It also includes a preview for using pin...
rscohn2000
Offline Send Email
Jan 22, 2005
2:34 pm
79
Hi, I'm running an emptry callback on every RTN as below. -- #include "pin.H" VOID nullproc(VOID) { } VOID Routine(RTN rtn, VOID *v) { RTN_Open(rtn); ...
habals
Offline Send Email
Jan 25, 2005
11:51 pm
80
Jungwoo: The instrumentation via RTN_AddInstrumentFunction is expensive if the application does not run very long. Try to remove RTN_InsertCall(), you should...
Muth, Robert
rmuth
Offline Send Email
Jan 26, 2005
12:26 am
81
Hi, Thanks for the kind answers for my previous question. I found out that FiniFunction is not executed when application crashes. Also any functions registered...
habals
Offline Send Email
Jan 27, 2005
4:37 am
82
Jungwoo: Having a crashing application is somewhat tricky. atexit() will most likely not work in pintools even when there is no crash. One option would be a to...
Muth, Robert
rmuth
Offline Send Email
Jan 27, 2005
5:40 am
83
You can use sigaction to register your own handler for segv in the main of the pintool. The handler could close the gzip file. It would catch the case in your...
Cohn, Robert S
rscohn2000
Offline Send Email
Jan 27, 2005
4:50 pm
84
Hi, I was trying to use PIN to check stack overflows. I had talked to Robert Cohn earlier and my code is given below. I am facing a weird problem : there are...
akshatagarwal
Offline Send Email
Feb 4, 2005
5:30 pm
85
For the symbol problem, you are passing the address of a local variable (rtn) in the instrumentation function to an analysis function. This cannot work because...
Cohn, Robert S
rscohn2000
Offline Send Email
Feb 4, 2005
6:15 pm
86
Hi, Heres a newbie question. The following is an attempt to generate routine names from traces. However, I end up getting a whole ot of ' .text 's instead....
Kapil Vaswani
kapil_vaswani
Offline Send Email
Feb 7, 2005
5:55 pm
Messages 57 - 86 of 4510   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