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 854 - 883 of 4504   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
854
As I was attempting to get better performance out of my PIN program, I decided to measure the base performance of PIN for a simple application (inscount1,...
enightingale05
Offline Send Email
Jun 2, 2006
6:35 pm
855
Hi Marco, Do you have a test case you can send us? What version of Pin are you using (kit number, target, compiler version)? Is there any output message...
Lueck, Gregory M
gregorylueck
Offline Send Email
Jun 2, 2006
7:31 pm
856
Hi Ravi, This happens because we only call the ThreadBegin call-back when the application creates a new thread (e.g. via the _clone system call). The ...
Lueck, Gregory M
gregorylueck
Offline Send Email
Jun 2, 2006
7:34 pm
857
I think I get your point of the context/checkpoint difference, but still have no clue for the Pin_Resume hang. Actually, I write my pintool based on the...
shan_uiuc
Offline Send Email
Jun 2, 2006
7:58 pm
858
You can use conditional inlining for something like inscount, so that the small counting routine can be inlined and the bigger analysis routine can be called...
Canturk ISCI
canturkisci
Offline Send Email
Jun 2, 2006
8:34 pm
859
What do you mean by program hang? Is it executing instructions but not making apparent forward progress? Perhaps you could change your pintool so print the ip...
Cohn, Robert S
rscohn2000
Offline Send Email
Jun 2, 2006
9:14 pm
860
... It's an unavoidable fact of life with binary instrumentation: if you want to do anything complicated you have to use function calls, and function calls...
Nicholas Nethercote
njn@...
Send Email
Jun 2, 2006
10:24 pm
861
I did. No more execution is executed. Not only the instruction from original application, but also that from the instrumented code. No more progress. It is...
shan_uiuc
Offline Send Email
Jun 3, 2006
3:09 am
862
Hi, I want to measure my pintool's overhead. It seems that pintool always have large 'start-up' time due to its 'dynamic' instrumentation. Is ther e some way...
shan_uiuc
Offline Send Email
Jun 3, 2006
3:21 am
863
Try using the gdb attach command to see what it is doing. You can get the pc this way. Then look at /proc/<pid>/maps to see which file the current pc is in. If...
Cohn, Robert S
rscohn2000
Offline Send Email
Jun 3, 2006
1:17 pm
864
Can't seem to download Pin from the downloads page at http://rogue.colorado.edu/Pin/downloads.php. On clicking any of the download links I get : Top Downloads...
ntropic2k
Offline
Jun 4, 2006
5:38 am
865
Actually, image-granularity instrumentation won't do what you expect. All instrumentation (even image-granularity) is delayed until the code is about to be...
Lueck, Gregory M
gregorylueck
Offline Send Email
Jun 5, 2006
2:13 pm
866
I do not see the problem. Does it still happen for you? -- Greg ________________________________ From: pinheads@yahoogroups.com...
Lueck, Gregory M
gregorylueck
Offline Send Email
Jun 5, 2006
2:29 pm
867
Shan, here is another approach that may be more suitable for your timing, it relies on using two new callbacks: (1) CODECACHE_AddCodeCacheEnteredFunction and...
VJ
thep0rt
Offline Send Email
Jun 5, 2006
2:32 pm
868
This problem has been resolved over the weekend. ... -- &veej....
VJ
thep0rt
Offline Send Email
Jun 5, 2006
2:40 pm
869
True. No download problems since Sunday. Thanks VJ. ... ...
ntropic2k
Offline
Jun 5, 2006
10:54 pm
870
... --snip--- ... that the ... routine can ... 4-5X for ... But if you are JUST running inscount, PIN should be inlining it automatically. I do see how...
enightingale05
Offline Send Email
Jun 6, 2006
1:05 pm
871
Hi group, I was trying to instrument MOV instructions for IA-32 using INS_IsMov () and i noticed that MOVZX is not classified as a MOV instruction. I used...
Prasad Gopal
prasad_6_gnair
Offline Send Email
Jun 6, 2006
7:48 pm
872
The INS_IsMov() only gets the vanilla MOV instructions. It does not return true for MOVZX, MOVSZ, any of the numerous SSE or SSE2 aligned / unaliagned mov's,...
mark_charney
Offline
Jun 6, 2006
8:09 pm
873
Hi all, In my code, I am creating just 1 thread. However, a the pin tool detects 2. Please explain me of what is happening. [Code which I am Analysis] #include...
Libin Varghese
libin_v
Online Now Send Email
Jun 7, 2006
6:38 am
874
Hi, I can't supply a testcase, but I've found a workaround. Originally the pin-tool was started from a C-program, using a shell-script (the C-program doing...
mvkrieger
Offline Send Email
Jun 7, 2006
12:14 pm
875
With pthread/OpenMP applications, it is possible to see more than the allotted number of threads created. This is not due to Pin, but due to the...
Aamer Jaleel
aamer0604
Offline Send Email
Jun 7, 2006
12:28 pm
876
... Just to add a bit more. For pthreads the extra thread will be created depending on thread model used. If the thread model is NPTL I don't think an "extra"...
Cristiano Pereira
ligieri2006@...
Send Email
Jun 7, 2006
7:26 pm
877
Hello, I'm trying to figure out a way to simulate certain system calls in software and not allow them to be handled by the operating system. For example I'd...
clause33
Offline Send Email
Jun 7, 2006
8:31 pm
878
here is one way to do it. You can use the ExecuteAt api to "skip" the system calls that you want. You have to instrument the system call with IPOINT_BEFORE....
Cristiano Pereira
ligieri2006@...
Send Email
Jun 7, 2006
8:47 pm
879
... That's an interesting question -- with Pin's instrumentation inlining, how do you tell that something you think should be getting inlined actually is? Is...
Nicholas Nethercote
njn@...
Send Email
Jun 8, 2006
2:04 am
880
I'm having some trouble using the included pthread simulator in pin/Pthread from pin-2.0-3585 on IA32/Linux (Fedora Core 3): I've successfully built a tool...
Jeffrey J. Cook
jjcook79
Offline Send Email
Jun 8, 2006
3:49 am
881
... At the moment, Pin inlines code w/o control flow. However, work is currently being done to inline code w/ control flow. ... I think the answer to this...
VJ
thep0rt
Offline Send Email
Jun 8, 2006
1:08 pm
882
... But there's no way to know for sure that it has occurred, right? Apart from looking at the instrumented code, which I assume you can do with a debugging ...
Nicholas Nethercote
njn@...
Send Email
Jun 8, 2006
10:46 pm
883
Yea there is no way to be informed whether an anlysis routine has been successfully inlined. ... -- &veej....
VJ
thep0rt
Offline Send Email
Jun 8, 2006
11:04 pm
Messages 854 - 883 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