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 2430 - 2459 of 4499   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2430
What did you try? What happened? ________________________________ From: pinheads@yahoogroups.com [mailto:pinheads@yahoogroups.com] On Behalf Of ruiwangwarm ...
Cohn, Robert S
rscohn2000
Offline Send Email
Mar 1, 2008
6:28 pm
2431
Hi: I am using Pin 2.2 - 15865 on Winodws XP. I read some paper which said pin does not support monitoring self-modifying code. But that paper was published on...
River Wang
jwangzju
Offline Send Email
Mar 2, 2008
1:37 am
2432
I know how to instrument function calls which have static number of parameters. For example, to instrument the function strlen, I'll use the following...
ruiwangwarm
Offline
Mar 2, 2008
3:51 am
2433
Hi, I am trying to get the CONTEXT in Itanium machine. With: void Checkpointing(CONTEXT *ctxt) // I tried with VOID * also { } VOID CheckRt(RTN rtn, VOID* v) {...
packirisamy venkatesan
kotturvenkat
Offline Send Email
Mar 2, 2008
8:31 am
2434
* But these codes cannot be used for instrumenting function calls like printf, whose parameter number is dynamic. Why not? When passing arguments to a...
Cohn, Robert S
rscohn2000
Offline Send Email
Mar 2, 2008
12:50 pm
2435
If you add the code in Tests/smc_check.cpp to your tool, pin will handle smc applications. Native smc support will happen in a few months. ...
Cohn, Robert S
rscohn2000
Offline Send Email
Mar 2, 2008
12:56 pm
2436
Hi everyone, I am writing a pintool to keep track of mutex/lock variable. Do I have to instrument pthread_mutex functions or is there any other way to get the...
Abdullah A. Muzahid
prince_cse99
Offline Send Email
Mar 2, 2008
5:22 pm
2437
Hi, I am new to PIN and have some questions regarding IPOINT_BEFORE and IPOINT_AFTER. The following is a method taken from ManualExamples/inscount0.cpp. It...
shaoshal_uci
Offline Send Email
Mar 3, 2008
1:19 am
2438
IPOINT_AFTER can't be used with instructions that don't have a fall- through i.e. direct branches. Look at INS_HasFallThrough to detect if you can safely us...
James Clause
clause33
Offline Send Email
Mar 3, 2008
2:02 am
2439
Pin does not have any built-in knowledge of mutex variables in the application. Tracing calls to the pthread_mutex functions seems like the right thing to do....
Lueck, Gregory M
lueckintel
Offline Send Email
Mar 3, 2008
1:25 pm
2440
You can use SEC_Type() or SEC_IsWriteable(). You will need to track each image as it is loaded, iterate over the images, then create a mapping between each...
Lueck, Gregory M
lueckintel
Offline Send Email
Mar 3, 2008
2:04 pm
2441
Unfortunately, we do not yet support a way to pass FP registers to analysis routines on Itanium. As you saw, IARG_CONTEXT is not supported and IARG_REG_VALUE...
Lueck, Gregory M
lueckintel
Offline Send Email
Mar 3, 2008
2:17 pm
2442
Thanks for the clarification. I tried with pin.0.179, IARG_REG_VALUE works for floating point registers. Though I am not sure if it will work for all floating...
kotturvenkat
Offline Send Email
Mar 3, 2008
3:09 pm
2443
Hi, I used icount2.cpp, the basic block tracing example in Pin package, with Splash program (FFT). I was supprised that it was almost 7 times slower than...
cozy1626
Offline
Mar 4, 2008
3:21 am
2444
Hi all I am using PIN to generate Basic Block traces of an application Aplications I am using MPI c and c++ applications (sometimes charm++ programs). I am...
Sanjay H A
sanjaygowda2000
Offline Send Email
Mar 4, 2008
4:40 am
2445
Hi: I use Tests/smc_check.cpp to check my small smc code again. But no luck. The smc count is still 0. Maybe it does not support Window API ...
River Wang
jwangzju
Offline Send Email
Mar 4, 2008
10:54 pm
2446
The smc_check.cpp tool checks the contents of memory every time a trace is executed. It should work no matter how you modify the memory. ...
Cohn, Robert S
rscohn2000
Offline Send Email
Mar 4, 2008
11:12 pm
2447
Hi, My pintool traces every BB block and records some information about the BB in a global buffer. While analyzing the overhead, I found that if I declared a...
cozy1626
Offline
Mar 5, 2008
4:08 am
2448
I want to monitor the behaviour of a part of my program (some functions). Is it possible to change the source code of program and asking Pin to monitor that...
Farokh
farokh_k
Offline Send Email
Mar 5, 2008
10:31 am
2449
... to ... I found its response here: http://tech.groups.yahoo.com/group/pinheads/message/1026 Has the situation changed since that time?...
Farokh
farokh_k
Offline Send Email
Mar 5, 2008
1:16 pm
2450
Hi: Is there any example for smc which I can test against on Windows? I tried smc_test_l.c, but it is obviously written for Linux. Thanks. Re: +Re: Does Pin...
River Wang
jwangzju
Offline Send Email
Mar 5, 2008
4:48 pm
2451
Hi, Reading the previous posts, I found that RTN_BblHead() is not worked to get bbls for static analysis purpose. Maybe it just retuns a single bbl that...
tokki2cut
Offline Send Email
Mar 5, 2008
7:28 pm
2452
Hi Rodrigo, Just to follow up - I don't know of a link for a 3.3.1 arm cross compiler, so you will most likely have to compile one yourself. But let us know if...
Kim Hazelwood
hazelwood@...
Send Email
Mar 5, 2008
10:32 pm
2453
A 7X slowdown for icount2 could easily be correct. I collected icount2 overheads last year for the SPEC benchmarks and found a worst case of 7X (for perlbench)...
Kim Hazelwood
hazelwood@...
Send Email
Mar 5, 2008
10:40 pm
2454
Thank you for your answer. Is the graph showing icount2 (BB tracing) or icount0 (intercepting every instruction)? I guess icount2 inserts only 2 or 3...
cozy1626
Offline
Mar 6, 2008
12:42 am
2455
The graph I pointed you to shows results for icount2. Since Pin is inlining the counting instructions in with the application code it may need to save and...
Kim Hazelwood
hazelwood@...
Send Email
Mar 6, 2008
1:24 am
2456
Hi: From my experience, most huge Windows application like PPT and Words perform some self code modification.Best Regards Qin To: pinheads@...:...
qin zhao
zhaoqin339076
Offline Send Email
Mar 6, 2008
1:46 am
2457
I am not a Pin developer, so correct me if I am wrong. I guess it is because of JIT compiler. When you declare a local variable, the access to local variable...
qin zhao
zhaoqin339076
Offline Send Email
Mar 6, 2008
1:54 am
2458
Right now, Pin does not perform any CFG analysis on RTN_Open and you'll see only one BBL in routine and a list of instructions inside this BBL. You'll get the...
Demikhovsky, Elena
elena.demikh...
Offline Send Email
Mar 6, 2008
8:05 am
2459
You should look at the disassembly of the analysis function to verify that it is 'only 2 or 3' instructions. If the analysis function modifies the eflags, we...
Cohn, Robert S
rscohn2000
Offline Send Email
Mar 6, 2008
12:21 pm
Messages 2430 - 2459 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