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 757 - 786 of 4503   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
757
Hi all Thanks for all the help given. I now looking into PAPI and hopes to use it with PIN. Once again, thanks for all the help rendered. best rgds and have a...
steveho78
Offline Send Email
Apr 1, 2006
4:39 pm
758
Hi, I have been trying to attach pin on running process. And I find it work pretty well with single thread application. However, I can not make it work on the...
shan_uiuc
Offline Send Email
Apr 3, 2006
8:17 pm
759
Dear Pinheads: I would like to use Pin for sampling program state such as whether a branch was taken or not, etc. My motivation for sampling state rather then...
yahoo
rmuth
Offline Send Email
Apr 4, 2006
1:00 pm
760
Robert, There is an example in our pin kit that demonstrates how one can use the conditional instrumentation to do IP-sampling: ManualExamples/isampling,C You...
Luk, Chi-Keung
ckjuli
Offline Send Email
Apr 5, 2006
1:27 am
761
Hello Pin Developers, I am getting an error replacing routines with arbitrary functions using Pin-2.0 on IA-32E platform running Linux. I am using gcc and g++...
bhatia@...
nick_btwenty
Offline Send Email
Apr 5, 2006
10:11 pm
762
Please try: ftp://ftp.intel.com/pub/outgoing/pin-2.0-3570-gcc.3.4.2-ia32e-linux.tar. gz ...
Cohn, Robert S
rscohn2000
Offline Send Email
Apr 6, 2006
7:13 pm
763
Hello Robert, Works like a charm. Thanks a lot for your prompt reply and solution. Best Regards, nikhil...
bhatia@...
nick_btwenty
Offline Send Email
Apr 6, 2006
10:01 pm
764
Hi, I hope someone can help me. In some programs I get this message from pin: Pin child/app terminated abnormally due to signal 25. What does this mean ? What...
salvadorsalanova
salvadorsala...
Offline Send Email
Apr 7, 2006
8:26 pm
765
I think signal 25 is SIGXFSZ (file size limit). Is your tool writing a huge trace file? -- Greg ________________________________ From:...
Lueck, Gregory M
gregorylueck
Offline Send Email
Apr 7, 2006
8:38 pm
766
Hi Salvador, I haven't confirmed this lately, but a couple years ago, you could get around the 2 GB file size limit by compiling your Pintool (or any program)...
Hazelwood Cettei, Kim...
hazelwoodkim
Offline Send Email
Apr 7, 2006
9:23 pm
767
Hi, thank you all, you were right, I was hitting the file size limit. My work around is, creating a fifo with the same file name and then compressing it in...
salvadorsalanova
salvadorsala...
Offline Send Email
Apr 9, 2006
6:42 am
768
I am trying to intrument some code that runs under the Java JVM. However, I find that my Fini function is not invoked at the end of execution - I have tested...
Dan Ramey
dbr1211@...
Send Email
Apr 9, 2006
5:12 pm
769
Hi, How do I get the thread id which is given by the app. For example I have the following code void * hello1(void * arg) { printf ("Inside thread %u\n",...
Libin Varghese
libin_v
Online Now Send Email
Apr 10, 2006
6:50 pm
770
Has anyone had any luck running pin on a Dual-Core Opteron? (Mine appears to hang with doing a 'pin -- /bin/ls'.) I read that an Opteron 'port' might be...
PauloftheWest
Offline
Apr 10, 2006
10:41 pm
771
I uploaded 3585 kits for linux ia32 and ia32e. This might fix the hang problem, but performance may not be good. ... Behalf...
Cohn, Robert S
rscohn2000
Offline Send Email
Apr 11, 2006
1:15 pm
772
You need to get a function pointer for the pthread_self function in the application and call it. Look at Probes/malloctrace2.C. Use RTN_FindByName to get an...
Cohn, Robert S
rscohn2000
Offline Send Email
Apr 11, 2006
1:26 pm
773
I installed the 3585 kit for ia32e (gcc 3.4) and 'pin -t inscount0 -- /bin/ls' ran fine. Thanks!...
PauloftheWest
Offline
Apr 11, 2006
1:44 pm
774
... I guess it will be a better idea to get the function pointer pthread_create. but i not able to get the pointer to pthread_create. However I am able to find...
Libin Varghese
libin_v
Online Now Send Email
Apr 11, 2006
8:24 pm
775
Hi, I am trying to instrument a program as a way to learn PIN. I am having trouble trying to extract this type of information. Assume program, if(p>1 && q==0){...
prosysd
Offline Send Email
Apr 11, 2006
9:14 pm
776
... When I got a list of all the Rountine names I found the following which was close to pthread_create pthread_create@@GLIBC_2.1 pthread_create@GLIBC_2.0 ...
Libin Varghese
libin_v
Online Now Send Email
Apr 11, 2006
11:49 pm
777
Replacing pthread_create will not work. Pin needs to observe all the thread creates and when you replace pthread_create, the instrumentation engine will not...
Cohn, Robert S
rscohn2000
Offline Send Email
Apr 12, 2006
10:41 am
778
Pin lets you instrument the program at the instruction level. It does not provide access to the address of data symbols etc. You might find a source...
Cohn, Robert S
rscohn2000
Offline Send Email
Apr 12, 2006
2:25 pm
779
... It is not neccessary for the application to call pthread_self(), I just used it as an example to show the parent thread. In such case how do I get the...
Libin Varghese
libin_v
Online Now Send Email
Apr 13, 2006
3:57 pm
780
IARG_THREAD_ID is the id of the application thread and not a pin thread. It can be used to do the analysis differently on a per-thread basis. ... -- &veej....
Vijay J
thep0rt
Offline Send Email
Apr 13, 2006
5:15 pm
781
... Or, if you need something externally visible, try the system call gettid(). It isn't generally defined by default; the magic to include it is: #include...
Joseph Tucek
tucek@...
Send Email
Apr 13, 2006
5:45 pm
782
Good afternoon! I am relatively new to Pin. I am using Pin to instrument some C++ programs; I wish to instrument and measure only the application code; not...
Dan Ramey
dbr1211@...
Send Email
Apr 15, 2006
7:53 pm
783
For every trace pin gives you a handle to via PIN_AddTraceInstrumentFunction( ): VOID Trace(TRACE trace, VOID *v) { /* Looking for shared libraries */ if...
Vijay J
thep0rt
Offline Send Email
Apr 15, 2006
8:25 pm
784
Very much appreciate. Had overlooked that function. ... From: pinheads@yahoogroups.com [mailto:pinheads@yahoogroups.com] On Behalf Of Vijay J Sent: Saturday,...
Dan Ramey
dbr1211@...
Send Email
Apr 15, 2006
9:10 pm
785
Good afternoon, all! I am still relatively new to Pin. Am successfully using Pin to instrument C++ programs, but am less successful with Java programs - My...
Dan Ramey
dbr1211@...
Send Email
Apr 16, 2006
6:59 pm
786
Hi all, I'm trying to use the gcc 4.0 PIN kit (got gcc 4.0.2 installed here) but can't seem to make any tool compile, no matter what I do. For example, when...
guz_z
Offline Send Email
Apr 17, 2006
9:15 am
Messages 757 - 786 of 4503   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