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 your group to be featured on the Yahoo! Groups website? 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 3236 - 3265 of 4502   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3236
Hi friends, I am a beginner in using PIN tool. I need good tutorial on PIN tool and programs. Can you suggest me some sites for PIN tutorial and programming???...
soumya tr
trsoumya_88
Offline Send Email
Jan 1, 2009
1:39 pm
3237
hi, I am a begginer in PIN. I need full information (i.e, installation, writing and executing PIN program etc.). Kindly help me as soon as possible. Add more...
soumya tr
trsoumya_88
Offline Send Email
Jan 3, 2009
5:31 am
3238
On pintool.org there is a link 'learn pin' with slides from a tutorial. Under 'downloads' there is a manual. Robert ________________________________ From:...
Cohn, Robert S
rscohn2000
Offline Send Email
Jan 3, 2009
4:34 pm
3239
Hello, I would like to make a cache analyzer by pin. Please guide me if you have any similar experience. Your helps would be highly appreciated. kind regards, ...
Fahimeh Yazdanpanah
fahim_yazdan
Online Now Send Email
Jan 6, 2009
5:39 pm
3240
Can anyone please tell me the correct way to use RTN_ReplaceSignature to wrap a varargs function like printf. I used to use RTN_Replace but according to the...
Jim Clause
clause33
Offline Send Email
Jan 7, 2009
6:31 pm
3241
Hi, Please guide me about Counting Synchronization Primitives such as Locks, Barriers, Conditions, ... of a program by Pin. Would you please introduce the API...
Fahimeh Yazdanpanah
fahim_yazdan
Online Now Send Email
Jan 7, 2009
6:49 pm
3242
I've played with this a bit more and I think I've come up with something that works, at least for the cases I've tried so far. void REPLACE_printf(AFUNPTR...
Jim Clause
clause33
Offline Send Email
Jan 7, 2009
10:00 pm
3243
I have the same problem too, is there anyone have experiences to do this? 2009/1/8 Fahimeh Yazdanpanah <fahim_yazdan@...>...
Veydan Wu
veydanwu
Offline Send Email
Jan 8, 2009
11:39 am
3244
Hi, Please guide me about using of gprof of pin. Thanks a lot, Fahimeh...
Fahimeh Yazdanpanah
fahim_yazdan
Online Now Send Email
Jan 8, 2009
2:38 pm
3245
Pin does not have a general solution for replacing functions with a variable number of parameters. I think the code you have will probably work if all the...
Lueck, Gregory M
lueckintel
Offline Send Email
Jan 9, 2009
12:21 am
3246
The example tool "ManualExamples/proccount" counts calls to each procedure. You could change it to count only calls to certain synchronization procedures such...
Lueck, Gregory M
lueckintel
Offline Send Email
Jan 9, 2009
12:25 am
3247
Just wanted to know how to make out whether main() function has started and/or ended using PIN tool. Thanks, Sandeep...
brsandeep
Offline Send Email
Jan 9, 2009
2:26 am
3248
Thanks. It worked. ... Behalf Of brsandeep...
brsandeep
Offline Send Email
Jan 9, 2009
2:33 am
3249
Using PIN, how to find out when the context switch has occurred between two threads of a process? I am using pthread_create() and pthread_yield() for thread...
brsandeep
Offline Send Email
Jan 9, 2009
4:04 am
3250
Hello, I've seen in the Exploratory Extensions section of the PinTutorial a page about tracing physical and virtual addresses. I found it very interesting...
Perikles Vassiliou
pvassiliou55
Offline Send Email
Jan 12, 2009
10:13 am
3251
... a page about ... interesting because I want ... last version of PIN. ... virtual addresses is ... if I get a trace of ... a simulator, ... assure it...
jim.cownie
Offline Send Email
Jan 12, 2009
10:34 am
3252
Pin cannot tell you when the kernel has switched a thread off of a processor. If you just want to know when the thread calls pthread_yield(), you can, of...
Lueck, Gregory M
lueckintel
Offline Send Email
Jan 12, 2009
4:08 pm
3253
You can use "RTN_InsertCall(IPOINT_BEFORE, ...)" to find out when "main" starts. You can try using "RTN_InsertCall(IPOINT_AFTER, ...)" to find out when "main"...
Lueck, Gregory M
lueckintel
Offline Send Email
Jan 12, 2009
4:17 pm
3254
Hello, I would like to ask if there is a way of measuring (execution?) time between instructions. For example if the total number of instructions executed is...
Perikles Vassiliou
pvassiliou55
Offline Send Email
Jan 13, 2009
9:25 am
3255
you mean, like putting an instrumentation point before and after what you want to measure, two gettimeofday() on them? On Tue, Jan 13, 2009 at 10:25 AM,...
Alexandre Strube
alexandre_ganso
Offline Send Email
Jan 13, 2009
11:32 am
3256
I am not quite sure if gettimeofday() is appropriate. I need something fast (because it will be used very often) and precise. For example I might need to know...
pvassiliou55
Offline Send Email
Jan 13, 2009
3:16 pm
3257
I think using the RDTSC instruction will give you the precision you want. If you google for it'll you'll find a lot of information explaining what it is and...
Jim Clause
jim.clause
Offline Send Email
Jan 13, 2009
4:01 pm
3258
Thanks, I appreciate your help. Perikles ... time...
pvassiliou55
Offline Send Email
Jan 13, 2009
6:22 pm
3259
Beware that measuring time in Pin will also measure the instructions that Pin inserts. If you want a precise timing of application instructions, it's better...
Lueck, Gregory M
lueckintel
Offline Send Email
Jan 13, 2009
6:46 pm
3260
A real minor point, but is rev 24110 pin 2.5 or pin 2.6? Manual and release notes say that it is pin 2.6 but the name of the tar.gz file shows that it is pin...
geniajh78
Offline Send Email
Jan 13, 2009
6:50 pm
3261
While trying to do some application characterization, the following error appears to me in an Ubuntu 8.10 machine. pin -t...
Alexandre Strube
alexandre_ganso
Offline Send Email
Jan 13, 2009
7:12 pm
3262
See http://tech.groups.yahoo.com/group/pinheads/message/3085 . Also, you might try updating to one of the newer kits. -dan...
Dan Upton
draqza.rm
Offline Send Email
Jan 13, 2009
7:20 pm
3263
Rev. 24110 is pin 2.6. I need to fix the kit name. Thank-you for bringing this to my attention. Gail...
glyons01
Offline Send Email
Jan 13, 2009
9:23 pm
3264
I want to insert calls in JIT mode to functions from the original application using function pointers I gathered beforehand. In one post I read that one should...
donjonsn
Offline Send Email
Jan 14, 2009
12:36 pm
3265
When you insert a call to an analysis routine with INS_InsertCall(), Pin makes a native call to the analysis routine. In contrast, Pin usually executes...
Lueck, Gregory M
lueckintel
Offline Send Email
Jan 14, 2009
2:43 pm
Messages 3236 - 3265 of 4502   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