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 2764 - 2795 of 4504   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2764
Hello Everyone, I'm new to Pin, and I'm trying to figure out if it's possible to maintain 2-3 different levels of instrumentation within a Pintool. Our tool...
michigantrumpet
Offline Send Email
Jul 1, 2008
5:52 pm
2765
We allow multiple versions of instrumentation of the same code. See ToolUnitTests/special.cpp. However, the ability to flip between different versions is...
Cohn, Robert S
rscohn2000
Offline Send Email
Jul 1, 2008
6:06 pm
2767
Hello, I have been using version 18525 of PIN for a while succesfully running a pintool i wrote for monitoring socket calls. When i switched to version 19012 i...
archaon51
Offline Send Email
Jul 2, 2008
6:24 pm
2768
We changed the way instrumentation works around syscall instructions, and you can no longer place an IPOINT_AFTER instrumentation point there. Instead, see...
Lueck, Gregory M
lueckintel
Offline Send Email
Jul 2, 2008
6:33 pm
2770
Hi, I wrote a small pintool to record pthread_mutex_[un|try]lock calls, and it is deadlocking when I try to run some sample applications in it (namely...
ricky.chang
Offline Send Email
Jul 3, 2008
12:11 am
2771
Use PIN_CallApplicationFunction() to call the original function from the replacement routine. See ToolUnitTests/call_app*.cpp for examples. Gail ... it ... ...
glyons01
Offline Send Email
Jul 3, 2008
2:38 am
2772
Hi everybody: I've been looking for some time for some kind of decoder/translator that translates regular CISC x86 instructions into the RISC-LIKE micro- ops...
wkohlani
Offline Send Email
Jul 3, 2008
4:03 pm
2773
My suggestion is to use a x86 simplescalar to model the x86 uops. Pin in itself won't be able to provide you with such information. vj....
Vijay Janapa Reddi
vijay.janapa...
Offline Send Email
Jul 3, 2008
4:31 pm
2774
You might also look into PTLSim, which also models translating x86 CISC ops into uops (using its own internal format, which may or may not have a strong...
Dan Upton
draqza.rm
Offline Send Email
Jul 3, 2008
4:49 pm
2775
You might also try Valgrind. I remember it translate x86 to some RISC-like U-code. Qin www.Ideas4PI.com To: pinheads@...:...
qin zhao
zhaoqin339076
Offline Send Email
Jul 4, 2008
3:34 am
2776
Do the inspection functions INS_IsStackRead() and INS_IsStackWrite() just respond on esp and ebp being part of an instruction's operand? Or do they give...
donjonsn
Offline Send Email
Jul 4, 2008
5:40 pm
2777
For the test purpose, I tried with the following code snippet: at first, replace a function (foo) and install analysis functions for the same "foo". int...
tokki2cut
Offline Send Email
Jul 6, 2008
2:27 am
2778
No. In JIT mode, you cannot safely call the original function directly from the analysis routine on IA-32 and Intel(R) 64 architectures. This is why we...
glyons01
Offline Send Email
Jul 7, 2008
11:40 am
2779
I am recently having a machine upgrade from 32b Debian (4.0r1) to 64b Debian (4.0, r3). As a result, my PIN kit doesn't work anymore, all failing at the same...
chuckchy
Offline Send Email
Jul 7, 2008
6:36 pm
2780
Thank you for the answer. One more question is.. In the code that I posted, a routine is replaced by RTN_ReplaceSignature() and analysis functions are...
tokki2cut
Offline Send Email
Jul 7, 2008
6:53 pm
2781
Are you using the latest pin kit? Earlier versions of pin required a compatibility version of libm, so even if a libm.so is there, the loader may reject it. ...
Cohn, Robert S
rscohn2000
Offline Send Email
Jul 8, 2008
8:16 am
2782
Hi I have just begun using PIN and I wrote a program to view the context registers after a return instruction. Given below is the code :: #include <iostream> ...
Varun Sharma
varuns.iitkgp@...
Send Email
Jul 8, 2008
10:33 am
2783
According to http://rogue.colorado.edu/Pin/docs/19012/Doc/Pin/html/group__INS__INST__API.html#g74a956a0acde197043d04f4adcde4626 IPOINT_AFTER is not valid for...
tjruwase
Online Now Send Email
Jul 8, 2008
5:06 pm
2784
Hi Actually what I actually want to do is analyze the return values from certain function calls.So I introduce a function and use IPOINT_TAKEN_BRANCH as you...
Varun Sharma
varuns.iitkgp@...
Send Email
Jul 8, 2008
5:21 pm
2785
Hi Is there a Page Table Model in PIN? I find ITLBs and DTLBs instantiated but do they actually do any address translation or they are dummies. Has anyone...
asit_nitr2002
Offline Send Email
Jul 8, 2008
5:36 pm
2786
I havent used the context functionality before, but from the docs http://rogue.colorado.edu/Pin/docs/19012/Doc/Pin/html/group__CONTEXT__API.html I think you...
tjruwase
Online Now Send Email
Jul 8, 2008
5:43 pm
2787
Hi I changed the program as :: #include <iostream> #include <fstream> #include "pin.H" // The running count of instructions is kept here // make it static to...
Varun Sharma
varuns.iitkgp@...
Send Email
Jul 8, 2008
5:55 pm
2788
[snip] ... Pin instruments all of the user-level code executed, which includes a lot more than just the instructions corresponding to your C code. Most likely,...
Dan Upton
draqza.rm
Offline Send Email
Jul 8, 2008
6:14 pm
2789
Although your test program has just 2 functions (main() and func1()), the final executable includes many more system support functions that are automatically...
tjruwase
Online Now Send Email
Jul 8, 2008
6:25 pm
2790
Hi Now when I try to modify the output by using PIN_SetContextRegister I observe that nothing happens The code :: #include <iostream> #include <fstream> ...
Varun Sharma
varuns.iitkgp@...
Send Email
Jul 8, 2008
6:29 pm
2791
Thank you for the reply. I was using a relatively old version (15113, before the transition of defaulting compiled to .so ). When I upgraded to the latest...
chuckchy
Offline Send Email
Jul 8, 2008
10:03 pm
2792
Hi I am trying to instrument a function after pthread_mutex_unlock but it does not enter that function .Only IPOINT_BEFORE works for pthread mutex unlock. ...
Varun Sharma
varuns.iitkgp@...
Send Email
Jul 9, 2008
4:23 pm
2793
I'm trying to determine memory footprint and working set sizes for various applications via Pin. I was wondering if anyone has written a Pintool already to do...
Brooks Prumo
brooks.prumo
Offline Send Email
Jul 9, 2008
5:41 pm
2794
Hello, ... You might want to look into MICA (http://www.elis.ugent.be/~kehoste/ mica). Not sure if it completely fits your needs, but it might come in close......
Kenneth Hoste
kehoste
Offline Send Email
Jul 9, 2008
8:48 pm
2795
I'm not sure you want to do this with Pin anyway. Because Pin resides in the same memory space as the application, the size of its code and data would be...
Dan Upton
draqza.rm
Offline Send Email
Jul 9, 2008
9:10 pm
Messages 2764 - 2795 of 4504   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