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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 1650 - 1679 of 4500   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1650
Sure, Here is some more info about my platform: Linux version 2.4.18-14smp (bhcompile@...) (gcc version 3.2 20020903 (Red Hat Linux 8.0...
slice4e
Offline Send Email
May 1, 2007
2:20 pm
1651
Hi, I'm using Pin to instrument a multi-threaded application on Itanium. After calling PIN_Detach(), I need to do some post-processing work. Which subroutine I...
fg.song
Offline Send Email
May 1, 2007
4:10 pm
1652
Please use the PIN_AddDetachFunction callback function: ...
Vijay Janapa Reddi
persistentpi...
Offline Send Email
May 1, 2007
4:38 pm
1653
From my observation, if there are 4 threads, the detach callback function will be called 4 times. In fact there is only one thread calling PIN_Detach(). Do you...
fg.song
Offline Send Email
May 1, 2007
5:50 pm
1654
This was a regression in our emulation of exec system calls with invalid arguments. I reproduced the problem and verified that the 9474 kit works correctly....
Cohn, Robert S
rscohn2000
Offline Send Email
May 1, 2007
10:42 pm
1655
Hi, thank you very much for the help. However the link that you send to me, does not contain the kit 9474 for IA32 (x86) - Linux. It only contains kit 9474 for...
Martin Dimitrov
slice4e
Offline Send Email
May 2, 2007
1:51 am
1656
I'm trying to build a map of basic blocks in an application and then do some frequency counting measurements. I've installed this function VOID Trace(TRACE...
houndspoon
Online Now
May 2, 2007
6:52 am
1657
I fixed the link for the 3.2 compiler for ia32 9474. You might have to reload the web page. This link should take you directly to the kit. ...
Cohn, Robert S
rscohn2000
Offline Send Email
May 2, 2007
1:30 pm
1658
I will answer part of your question. Pin may build multiple basic blocks or traces starting at a given address. The reason is that Pin does register ...
Kim Hazelwood
hazelwood@...
Send Email
May 2, 2007
1:38 pm
1659
One case: The length of a basic block may vary due to the limited # of instructions a trace can contain (70 per trace). Consider a linear code sequence (BBL,...
Vijay Janapa Reddi
persistentpi...
Offline Send Email
May 2, 2007
2:15 pm
1660
I am sorry again. Just a quick question. This kit is for gcc-3.2 I have gcc-3.2.3. Will this kit still work? ... From: "Cohn, Robert S"...
Martin Dimitrov
slice4e
Offline Send Email
May 2, 2007
2:20 pm
1661
Yes. We have some checking in the header files that will prevent you from compiling with an incompatible kit. ________________________________ From:...
Cohn, Robert S
rscohn2000
Offline Send Email
May 2, 2007
2:34 pm
1662
I have generated pinpoints using the directions in the documentation. I am trying to drive arch components (like branch predictors) using PIN/PinPoints. I...
hrishiut
Offline Send Email
May 2, 2007
5:09 pm
1663
Would modyfing the Instruction() function in bimodal.H the following way do the job? extern CONTROl control; inline VOID BIMODAL::Instruction(INS ins, VOID *v)...
hrishiut
Offline Send Email
May 2, 2007
5:29 pm
1664
I want to be able to selectively invalidate instructions (prevent them from executing). I actually have 2 questions: 1) Does INS_Delete() remove the static or...
slice4e
Offline Send Email
May 2, 2007
8:12 pm
1665
Hi Martin, When do you want to delete the instruction? Before it is ever executed, or later on after that instruction has executed? If it's the latter, you...
Kim Hazelwood
hazelwood@...
Send Email
May 2, 2007
8:40 pm
1666
I want to be able to selectively invalidate instructions (prevent them from executing). I actually have 2 questions: 1) Does INS_Delete() remove the static or...
Vijay Janapa Reddi
persistentpi...
Offline Send Email
May 2, 2007
8:43 pm
1667
Hi Hrishi: [A] First of all, the tool, as written, is supposed to report both whole-program and per-pinpoint branch misprediction information. However I...
Patil, Harish
harishp1965
Offline Send Email
May 2, 2007
8:53 pm
1668
Pin should call the tool's detach call-back once each time a thread calls PIN_Detach(). Are you certain only one thread calls Pin_Detach()? There is a bug...
Lueck, Gregory M
lueckintel
Offline Send Email
May 2, 2007
9:01 pm
1669
I use "if(tid == 1) PIN_Detach()", so there should be only one thread calling PIN_Detach(). For now calling callback many times is not a problem. I used a...
fg.song
Offline Send Email
May 3, 2007
5:56 pm
1670
I have a new experience with the PIN_AddSignalInterceptFunction(). I am using the gcc-2.95.2, which has a bug and crashes on the input below: double...
slice4e
Offline Send Email
May 4, 2007
4:13 pm
1671
What's the command line your using to run gcc under the pin tool? GCC isn't a single executable. It's a collection of several smaller tools: compiler (cc),...
Jim Clause
clause33
Offline Send Email
May 4, 2007
4:36 pm
1672
Jim, Pin will instrument a child process if the child inherits the parents virtual address space, as Pin binds into the address space. However, if a fork'ed...
Vijay Janapa Reddi
persistentpi...
Offline Send Email
May 4, 2007
4:50 pm
1673
Use the -follow_execv so pin will still be present after an exec. pin -follow_execv -t tool -- /usr/bin/g++ -c ~/proj/apps/hello.C ...
Cohn, Robert S
rscohn2000
Offline Send Email
May 4, 2007
5:28 pm
1674
Here is how I am running my tool: $PIN/Bin/pin -t $PIN/WORK/mytool -- gcc -O inputs/fail.c -o fail If I use your suggestion and do: $PIN/Bin/pin -follow_execv...
slice4e
Offline Send Email
May 4, 2007
5:46 pm
1675
The latest kit will support -follow_execv, but unfortunately it has a similar bug as you found before with gcc-doesn't handle execv with invalid arguments. The...
Cohn, Robert S
rscohn2000
Offline Send Email
May 4, 2007
7:37 pm
1676
I also get the same kind of error. I guess it's related to pthreads in my program. But what could be the possible reason for the error? Thanks, fg pin:...
fg.song
Offline Send Email
May 4, 2007
9:07 pm
1677
I'm running the sample calltrace Pintool in SimpleExamples/calltrace.cpp and it works fine when I give it a test-program to run on Pin startup. However when I...
Luke Yen
quasiquote1
Offline Send Email
May 4, 2007
10:03 pm
1678
... Thanks, I think that actually worked out for my purpose. I am using the follow_child example, and it automatically starts instrumenting the other...
slice4e
Offline Send Email
May 5, 2007
12:55 am
1679
When using PIN_Resume on ia32 Linux, I'm seeing the following occur (with indicative printouts): IP = 08048479 IP = 0804847b Saving checkpoint ... IP =...
seantmmmartin
Offline Send Email
May 6, 2007
7:00 am
Messages 1650 - 1679 of 4500   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