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...
Show off your group to the world. Share a photo of your group with us.

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 189 - 219 of 4506   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
189
Hi pinheads, is there any branchpredictor simulator available as a pintool? I'll be really grateful if someone gives me that. Arnab. ...
Arnab De
arnabde03
Offline Send Email
Apr 1, 2005
9:37 am
190
Hi Arnab: There is a bimodal branch predictor in PinPoints/branch_predictor.C. You may use that as a starting point. -Harish ... From: Arnab De...
Patil, Harish
harishp1965
Offline Send Email
Apr 1, 2005
12:16 pm
191
Hi Pinheads, I am working on a project "Parameter value characterization of GNU applications". In this project, I want to keep a track of all the parameter...
f_4moin
Offline Send Email
Apr 1, 2005
9:31 pm
192
Hi, I am trying to use pin to collect eip samples during binary execution. When I try the itrace or inscount pintools in ManualExamples, I get very strange eip...
Canturk ISCI
canturkisci
Offline Send Email
Apr 2, 2005
12:16 am
193
Most likely these are the eips from the shared objects loaded. Do a static link of the executable and you will see all the eips reported by pin in the output...
Peri, Ramesh V
rperi3679
Offline Send Email
Apr 2, 2005
1:29 am
194
Furgan: Have a look at the calltrace tool included with the kit. It shows how to get the function name and the first parameter. Unfortunately, it is hard to...
Muth, Robert
rmuth
Offline Send Email
Apr 2, 2005
2:15 am
195
Thanks Ramesh, when statically linked, the addresses all became 0x8048000+ as one would expect. Also I saw that I can actually grep the 0x8... lines from the...
Canturk ISCI
canturkisci
Offline Send Email
Apr 2, 2005
9:53 am
196
Check the file /proc/<process-id>/maps to figure out where these addresses belong while the program is running. This will give you the name of the shared...
Peri, Ramesh V
rperi3679
Offline Send Email
Apr 2, 2005
2:21 pm
197
I am running Linux version 2.4.22-1.2199.nptl I am trying to use Pin to instrument user-mode Linux (2.4.27), but I get the following error: % ../Bin/pin -mt -t...
aviator22
Offline Send Email
Apr 3, 2005
4:43 am
198
Thanks for your reply. I would appreciate if you can tell me the registers which hold the value of the parameters passed. Example if I call foo(a=10) from...
f_4moin
Offline Send Email
Apr 3, 2005
5:36 am
200
Ted: Usermode linux will probably require some more changes to pin in addition to fixing the .stab problem. We will try to play with it locally and see how...
Muth, Robert
rmuth
Offline Send Email
Apr 3, 2005
7:56 pm
201
Did you look at the calltrace tool included with the kit? robert.muth@... 978-553-2973 HD2-2-A13 http://vssad.intel.com/~rmmuth ... From: f_4moin...
Muth, Robert
rmuth
Offline Send Email
Apr 3, 2005
7:58 pm
202
If looking a /proc/<pid>/maps does not help, you can use the debugtrace tool to look at the instructions that are executed at the unusual addresses. Debugtrace...
Cohn, Robert S
rscohn2000
Offline Send Email
Apr 3, 2005
10:12 pm
203
Pin lets you look at the arguments without having to know where they are stored. If you really want to know the location, you have to look at the ABI: Ia32: ...
Cohn, Robert S
rscohn2000
Offline Send Email
Apr 3, 2005
10:27 pm
204
Hello, Thanks a lot for the process map pointer. It was perfectly explaining the numbers as you said. I tried two experiments one on linux 2.4.7 with gcc 2.96,...
Canturk ISCI
canturkisci
Offline Send Email
Apr 4, 2005
1:45 am
205
Hello, I am trying to make pin on a different system, which has an old gcc 2.9.6 on it. As pin doesn't work with this, i installed gcc 3.3.4 on the same system...
Canturk ISCI
canturkisci
Offline Send Email
Apr 4, 2005
8:36 am
206
Hello, Another problem I am having with gcc 3.3.4 installation is, when I make a tool with the new g++ installation, it seems to compile w/o errors, but I when...
Canturk ISCI
canturkisci
Offline Send Email
Apr 4, 2005
8:54 am
207
Hi, Is it possible to instrument pin for specific intervals of the execution time.(e.g. from 10million to 20million instruction count, and again start from...
sadagopan78
Offline Send Email
Apr 4, 2005
8:56 pm
208
See the function PIN_RemoveInstrumentation() in http://rogue.colorado.edu/Pin/docs/1541/group__PIN__CONTROL.html In order to know how far you are along, you'll...
Artur Klauser
Pin.Project@...
Send Email
Apr 5, 2005
8:51 am
209
Dear Pin folks, I am trying to profile passed parameter values. I was able to get this info when I used ALTO, so I was hoping we could do something similar...
davidkaeli
Offline Send Email
Apr 5, 2005
6:51 pm
210
David, I don't think the x86 ABI provides runtime information on the number of parameters passed to a routine. Ia32: http://www.caldera.com/developers/gabi/ ...
Artur Klauser
Pin.Project@...
Send Email
Apr 6, 2005
8:34 am
211
Hola Artur, Que tal? I think you are correct. I forget how it was implemented in Alto/Plto, but I suspect they used static information that is not available...
Prof. David Kaeli
davidkaeli
Offline Send Email
Apr 6, 2005
11:19 am
212
It looks like gdb knows the number and type of arguments, so the information must be in the dwarf information. I don't think anyone here has the time to work...
Cohn, Robert S
rscohn2000
Offline Send Email
Apr 6, 2005
12:37 pm
213
Dave: Since we had complete flowgraphs in ALTO and parameters were passed in registers we could run a register liveness analysis for each routine. Whatever...
Muth, Robert
rmuth
Offline Send Email
Apr 6, 2005
12:58 pm
214
Hi, I have another question about instructions such as CMPS and SCAS when used with the REP family of prefix operations. The number of times such an...
Rahul Saxena
rahulsaxon
Offline Send Email
Apr 7, 2005
2:13 am
215
➢ The number of times ➢ such an instruction is executed depends on terminating conditions so, ➢ it seems that IARG_MEMORYWRITE(READ)_SIZE give you the...
Patil, Harish
harishp1965
Offline Send Email
Apr 7, 2005
2:16 am
216
Hi I am trying to debug my pin tool using gdb. The tool is compiled using : $ make dcache g++ -c -Wall -Werror -Wno-unknown-pragmas -D_GLIBCXX_DEBUG -ggdb -O0 ...
Rahul Saxena
rahulsaxon
Offline Send Email
Apr 8, 2005
11:49 pm
217
Change both occurrences of -g1 to -g. We will make this the default. ... From: Rahul Saxena [mailto:rahul.k.saxena@...] Sent: Friday, April 08, 2005 7:49...
Cohn, Robert S
rscohn2000
Offline Send Email
Apr 8, 2005
11:54 pm
218
Hi, I am trying to do an analysis approx at every 1million instruction count (or every ~200Kth executed BBL) in the dynamic exec-n order. Currently, what i do...
Canturk ISCI
canturkisci
Offline Send Email
Apr 9, 2005
2:09 am
219
Did you try trace level instrumentation? TRACE_InsertCall(Trace, IPOINT_BEFORE, ... etc.) &veej....
VJ
thep0rt
Offline Send Email
Apr 9, 2005
7:51 am
Messages 189 - 219 of 4506   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