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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 1045 - 1076 of 4498   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1045
Is there any reason why a version of Pin compiled for 64 bit should not be able to run 32 bit applications? I'm running on the 64bit version of CentOS 4.3,...
Dan Upton
draqza.rm
Offline Send Email
Oct 3, 2006
9:13 pm
1046
The 64-bit version of Pin will only work on 64-bit apps. However, you can run the 32-bit version of Pin on 64-bit O/S while analyzing a 32-bit app. (If you...
Lueck, Gregory M
gregorylueck
Offline Send Email
Oct 3, 2006
9:52 pm
1047
Hi, I'm a newbie and wondering whether pin can trace a specific argument of a procedure. For example, I've got the following function: foo(int aInt, char*...
paulur06
Offline
Oct 4, 2006
3:56 am
1049
For those interested, I've put together a text file with the command-line arguments for the spec int 2006 benchmarks: ...
olszewski_marek
Offline Send Email
Oct 5, 2006
12:22 am
1050
Tipp Mosley posted this 13 Nov 2005, message #506. We should put it in the Pin FAQ. Quite handy... ... There is a MUCH easier way to do this. In your SPEC...
mark_charney
Offline
Oct 5, 2006
12:49 am
1052
I am getting this error when I try to run 'make test' in the 'pin-2.0-4229-gcc.3.2-ia32- linux/Manual Examples'. the PIN directory is located in my home...
g4static
Offline Send Email
Oct 6, 2006
3:48 pm
1053
You are using a 64 bit compiler with a 32 bit kit. Try the ia32e kit instead of ia32. ________________________________ From: pinheads@yahoogroups.com...
Cohn, Robert S
rscohn2000
Offline Send Email
Oct 6, 2006
3:54 pm
1054
Can you try compiling w/ a compiler matching the kit, and see if you get the same error message. ... From: g4static <richarsg@...> To:...
Vijay Janapa Reddi
persistentpi...
Offline Send Email
Oct 6, 2006
4:01 pm
1055
ahh ok, ill try that i didnt know thats what the 'e' stood for thanks...
g4static
Offline Send Email
Oct 6, 2006
4:55 pm
1056
... It's short for "extended".... "ia32e" is a terrible name! Nick...
Nicholas Nethercote
njn@...
Send Email
Oct 7, 2006
2:12 am
1057
Pin provides a way to trace the value of a function argument whenever the function executes. To do this, use RTN_InsertCall() and ...
Lueck, Gregory M
gregorylueck
Offline Send Email
Oct 9, 2006
7:08 pm
1058
Hi, I just downloaed and installed Pin 2 on an Itanium2 Linux machine. I was able to run ManualExamples/pinatrace -- /bin/ls successfully. Next I tried to...
fg.song
Offline Send Email
Oct 10, 2006
9:37 pm
1059
Hi All. I'm trying to get Pin to play nicely with Papi. I've written a pintool that uses Papi. At the beginning of every trace, my instrumentaiton code checks ...
Jason Mars
JmarsKoder
Offline Send Email
Oct 10, 2006
11:05 pm
1060
Hi Greg, Thank you so much for the message! You are really right that I "... want to trace every instruction in the function body that reads or writes a...
paulur06
Offline
Oct 11, 2006
12:33 am
1061
Paul, I think that Greg used "the aStr case" since that was your original example. It should work exactly the same no matter the type of the argument. Infact...
Jim Clause
clause33
Offline Send Email
Oct 11, 2006
3:07 am
1062
... This sounds really interesting... Do you have any idea if you'd read the papi counters at a certain instruction with PIN, how many 'error' there will be? I...
Kenneth Hoste
b0egel
Offline Send Email
Oct 11, 2006
6:20 am
1063
Are you trying to study Pin or the application itself at specific points of execution (e.g. function boundaries)? If it's the latter, I've used Pin to inject...
Vijay Janapa Reddi
persistentpi...
Offline Send Email
Oct 11, 2006
12:23 pm
1064
... Hi Kenneth, To answer your question, there is definitely some error on the part of PAPI. We executed a 7 instruction assembly routine, then read the...
Kim Hazelwood
hazelwood@...
Send Email
Oct 11, 2006
1:27 pm
1065
Sorry, Pin does not provide a way to trace the values of local variables. Nor does it provide a way to translate the name of a local variable to its memory or...
Lueck, Gregory M
gregorylueck
Offline Send Email
Oct 11, 2006
5:12 pm
1066
Just to clarify here: IARG_FUNCARG_ENTRYPOINT_VALUE n - will give you the starting address in memory associated with argument n This isn't quite right....
Lueck, Gregory M
gregorylueck
Offline Send Email
Oct 11, 2006
5:18 pm
1067
Greg, Can you clear up one other thing then? If IARG_FUNCARG_ENTRYPOINT_VALUE gives the actual value of the argument what does ...
Jim Clause
clause33
Offline Send Email
Oct 11, 2006
5:37 pm
1068
Sometimes IARG_FUNCARG_ENTRYPOINT_REFERENCE gives a pointer to the actual home location of the argument, sometimes it gives a pointer to a temporary location...
Lueck, Gregory M
gregorylueck
Offline Send Email
Oct 11, 2006
5:57 pm
1069
... I'm trying the link program characteristics I measure to processor performance... See below. ... I would be reading the PAPI counters every million...
Kenneth Hoste
b0egel
Offline Send Email
Oct 11, 2006
6:31 pm
1070
That's very interesting. How is PIN determining what calling convention is being used? Are you just assuming based on the architecture / compiler or are you...
Jim Clause
clause33
Offline Send Email
Oct 11, 2006
8:53 pm
1071
I am having trouble instrumenting the spec:int2000 benchmarks (i.e. 164.gzip) with the PIN 2 3.2.3 IA32e linux distro (kit 4229). I am able to instrument other...
g4static
Offline Send Email
Oct 11, 2006
9:51 pm
1072
We currently assume the default calling standard for the architecture. Thus, on ia32 we assume all parameters are passed via stack. On ia32e, we follow the...
Lueck, Gregory M
gregorylueck
Offline Send Email
Oct 11, 2006
9:52 pm
1073
Dear all, I am wondering what it is wrong with the following instruction counting scheme. Could anybody who knows the answer help me? Thanks! ... UINT64 icount...
gongyu_wang
Offline Send Email
Oct 11, 2006
10:02 pm
1074
Hi g4static, There is a better way to run the spec benchmarks under the control of Pin. See Mark Charney's message from a week or two ago, where he forwarded...
Kim Hazelwood
hazelwood@...
Send Email
Oct 12, 2006
1:51 am
1075
Hi Gongyu, Are you trying to count the number of static instructions in the program, or the number of dynamic instructions executed at run time? Basically,...
Kim Hazelwood
hazelwood@...
Send Email
Oct 12, 2006
2:08 am
1076
hmmm the spec:int benchmarks were provided to me by my teacher, and they dont seem to have/ use a $SPEC/config file. The exact same command (pin -t...
g4static
Offline Send Email
Oct 12, 2006
2:44 am
Messages 1045 - 1076 of 4498   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