Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

pinheads · Pin Dynamic Binary Instrumentation Tool

The Yahoo! Groups Product Blog

Check it out!

Group Information

? 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.

Messages

Advanced
Messages Help
Messages 705 - 734 of 9106   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
705 makozuch Send Email Mar 3, 2006
8:30 pm
Has anyone published any PIN tools that perform the type of correctness-checking tasks that Valgrind is typically used for (memory access checking, lock access...
706 speisert Send Email Mar 5, 2006
7:36 pm
To get around the current, single-threaded limitation on FreeBSD for at least some of my work, I'm planning on getting a Linux box up. The FAQ says: Q: What...
707 Nikhil Bhatia
nick_btwenty Send Email
Mar 6, 2006
8:22 pm
Hello, Do you support this function for IA32E PIN-2.0 versions? I run into error when I use my PINTOOL on a IA-32E and everything works well on IA-32 machine....
708 Jungwoo Ha
habals Send Email
Mar 9, 2006
9:24 am
I'm running Pin on Ubuntu Breezy-Badger on Xeon processor. It works perfect on both 64bit and 32bit mode. -habals ... -- -- Jungwoo Ha...
709 speisert Send Email Mar 9, 2006
3:39 pm
Hi -- I see the FAQ says: Q: Does Pin handle self-modifying code? A: Pin is able to instrument dynamically generated code. However, Pin does not detect that ...
710 Lueck, Gregory M
gregorylueck Send Email
Mar 9, 2006
3:52 pm
Technically, what you want exists now. Pin is able to detect and instrument the dynamically generated stack code. However, if your application later rewrites...
711 Jungwoo Ha
habals Send Email
Mar 9, 2006
9:56 pm
Hi, Is there a simple way (or API) to detect backedges on call graph instead of creating call graphs on-the-fly and do depth-first-search? What I'm doing now...
712 Vijay J
thep0rt Send Email
Mar 9, 2006
10:11 pm
... How precise does your control flow have to be? Would it suffice if you simply had a handle to a control flow graph which decrypts the image based on direct...
713 Jungwoo Ha
habals Send Email
Mar 10, 2006
8:37 pm
I'm trying to get all the caller/callee address Callee address is easy to get using RTN_Address(rtn). I tried two ways to get caller address, but neither...
714 apala guha
apala_guha Send Email
Mar 10, 2006
8:52 pm
Hi, I am trying to gather statistics about code cache in ARM. But the Pintool I have written to record the code cache size does not get compiled for ARM. The...
715 Cohn, Robert S
rscohn2000 Send Email
Mar 10, 2006
9:38 pm
IARG_FUNCARG_* gives you the value of function arguments. You want IARG_INST_PTR and IARG_BRANCH_TARGET_ADDR ...
716 shan_uiuc Send Email Mar 12, 2006
10:30 pm
Hi, Do INS_RegR and INS_RegW track flag registers? I know they can tell me all the general registers that are read or written by an instruction. How about flag...
717 Libin Varghese
libin_v Send Email
Mar 13, 2006
8:09 pm
Hi all, How do I get to know of the count of instructions executed per thread? Or to be more specific how do I find out if a certain read of memory was done by...
718 Libin Varghese
libin_v Send Email
Mar 13, 2006
8:14 pm
Hi, There is a tool mypthreadtool in the Pthread directory of the 3077 kit. Since I could not get much documentation about this, what does this tool do? ...
719 Vijay J
thep0rt Send Email
Mar 13, 2006
8:16 pm
There is an argument called IARG_THREAD_ID that you can use to tag information independantly on a per thread basis. ... -- &veej....
720 Libin Varghese
libin_v Send Email
Mar 13, 2006
8:53 pm
... Ok, Since the document says IARG_THREAD_ID Type: UINT32. Pin thread id. I considered IARG_THREAD_ID to return the thread ID of PIN only. I just tried...
721 Heidi Pan
wahbahdoo Send Email
Mar 13, 2006
9:26 pm
hi libin, the entire directory is a single user-level pthread library described in http://cag.csail.mit.edu/scale/papers/pin-wbia.pdf. it allows you to run...
722 Libin Varghese
libin_v Send Email
Mar 13, 2006
9:45 pm
... Ok, you mean to say it is just another pthread library ... But I am confused here, does this mean I can write a tool for PIN using the Pthread headers for...
723 Heidi Pan
wahbahdoo Send Email
Mar 13, 2006
9:48 pm
yes ... not quite sure what you mean......
724 Libin Varghese
libin_v Send Email
Mar 13, 2006
10:12 pm
... What I meant was can I write an instrumentation tool with this pthread library, for instance to probe when attributes are set and such?...
725 Heidi Pan
wahbahdoo Send Email
Mar 13, 2006
10:19 pm
the pthread library is the instrumentation tool in the version that's released with pin. what you could imagine doing (and what i did for my current project)...
726 Libin Varghese
libin_v Send Email
Mar 14, 2006
5:16 pm
... Ok, I get it. Thank you all for all the comments. ~Libin...
727 Libin Varghese
libin_v Send Email
Mar 14, 2006
5:20 pm
Hi all, I came to know that PIN does not completely modify the binary like ATOM, rather just attaches itself to the binary. I need some clarification at this...
728 Vijay J
thep0rt Send Email
Mar 14, 2006
9:58 pm
There are two applications in the address space of the program -- the original binary and the pin binary. Pin re-route's the memory allocation to a different...
729 Nicholas Nethercote
njn@... Send Email
Mar 14, 2006
11:13 pm
... You should read this paper: http://rogue.colorado.edu/pin/docs/papers/pin-pldi05.pdf Nick...
730 Dan Ramey
dbr1211@... Send Email
Mar 16, 2006
12:20 am
Good afternoon, all! I am a graduate student at George Mason interested in applying Pin to a project. The Linux installation that I have access to is...
731 mark_charney Mar 16, 2006
1:22 am
The linux distributions that we support are documented here: http://rogue.colorado.edu/pin/faq.html And the manual: http://rogue.colorado.edu/pin/docs/3077/ ...
732 Prasad Gopal
prasad_6_gnair Send Email
Mar 16, 2006
3:31 pm
Hello group, I get the following error when I try to execute a pintool. ******************************************************************** ...
733 sreekumarvk Send Email Mar 21, 2006
3:24 pm
Hi All, Can anyone tell me what simulators can be used to execute instrumented ARM binaries? I do not have access to ARM hardware to test PIN for ARM. Thanks ...
734 Hazelwood Cettei, Kim...
hazelwoodkim Send Email
Mar 21, 2006
5:08 pm
Hi Sreekumar, Keep in mind that Pin instruments applications *while they execute* so you would have to run both Pin and the application on top of the ...
Messages 705 - 734 of 9106   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help