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 921 - 950 of 4501   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
921
I tried to use the following BOOL LEVEL_CORE::INS_IsRDTSC (const INS ins) and it seems to give the wrong behavor. thx, Tom...
tyyeh0
Offline Send Email
Jul 1, 2006
7:40 pm
922
You can get the number of bytes moved by passing the IARG_MEMORYREAD_SIZE/IARG_MEMORYWRITE_SIZE. If you are only interested in the instructions with a REP...
Cristiano Pereira
ligieri2006@...
Send Email
Jul 4, 2006
3:18 pm
923
We still have interest in doing this, but it's not implemented yet. -- Greg ________________________________ From: pinheads@yahoogroups.com...
Lueck, Gregory M
gregorylueck
Offline Send Email
Jul 5, 2006
7:38 pm
924
Does PIN generate traces that reflect the actual memory access patterns that the processor would normally generate (ie out of order)? Or does PIN simulate...
rev_captain
Offline Send Email
Jul 11, 2006
4:02 pm
925
pin captures the behavior of the host processor you are running on, although the instrumentation code may slightly affect the behavior you observe (but not the...
Heidi Pan
wahbahdoo
Offline Send Email
Jul 11, 2006
4:12 pm
926
... Subject: Re: [pinheads] Digest Number 289 From: "Ken Barr" <kbarr@...> Date: Tue, July 11, 2006 5:29 pm To: "Heidi Pan"...
Heidi Pan
wahbahdoo
Offline Send Email
Jul 12, 2006
6:25 pm
927
Hello, We're working to figure out how much of an application is stalled waiting for memory and i am wondering if i can use pin for that. More specifically, -...
Canturk ISCI
canturkisci
Offline Send Email
Jul 13, 2006
2:57 am
928
Hi Canturk, There are two ways for you to do this. o. Use performance monitoring tools, such as Intel VTune, opensource perfmon lib, pfmon tool, etc. Those...
Chen, Yu
cnchenyu00
Offline Send Email
Jul 13, 2006
3:33 am
929
... This should be possible. There is a Valgrind tool (Cachegrind) that does this -- annotating each line of code with the number of cache misses (I1, D1, L2)...
Nicholas Nethercote
njn@...
Send Email
Jul 13, 2006
5:56 am
930
Thanks a lot for both responses. We're currently using EMON to get event count information, but we cannot isolate stall cycles waiting for memory only. (You...
Canturk ISCI
canturkisci
Offline Send Email
Jul 13, 2006
6:57 pm
931
I would recommend going through the slides from this year's ISCA tutorial: "Pin for Computer Architecture Research". The website for the tutorial: ...
Aamer Jaleel
aamer0604
Offline Send Email
Jul 15, 2006
5:35 pm
932
Hi all, Since I've got into a dead end with attaching Pin to a running process, I want to try and signal from within my process to Pin when to start collecting...
guz_z
Offline Send Email
Jul 17, 2006
2:26 pm
933
I'm trying to capture and record system calls to isolate the environment but I'm having problems modifying mmap calls. I need to change the file descriptor...
Jim Clause
clause33
Offline Send Email
Jul 17, 2006
6:12 pm
934
Are you doing anything other than alter behavior at the function granularity? If you are just altering parameters, try using the tools in the Probes directory....
Vijay Janapa Reddi
persistentpi...
Offline Send Email
Jul 17, 2006
6:21 pm
935
I have a new question regarding the routine replacement (probe). Is there a way to create a generic probe, which does not require the definition of the target...
ahfei21
Offline
Jul 17, 2006
6:38 pm
936
The second option should be good. To debug this, use the -pause_tool option as if you were using gdb, but instead use strace to attach. You can see the actual...
Cohn, Robert S
rscohn2000
Offline Send Email
Jul 17, 2006
7:21 pm
937
... Something that _may_ be relevant: under Linux there are various versions of mmap. One version, called "old_mmap" in the kernel, passes its arguments in ...
Nicholas Nethercote
njn@...
Send Email
Jul 18, 2006
3:12 am
938
All- Would the strength reduction example from section 4.6 of the CGO'06 paper be available? I'm trying to learn how to modify/insert instructions into a...
Chad Rosier
chadwick_ncs...
Offline Send Email
Jul 18, 2006
7:01 pm
939
You can modify/insert instructions in a trace by deleting instructions and inserting calls to functions. The functions are inlined and optimized. Tests/emu.C...
Cohn, Robert S
rscohn2000
Offline Send Email
Jul 18, 2006
8:46 pm
940
I'm gonna take a wild guess and say that inline asm is not an option. Thanks, Chad...
Chad Rosier
chadwick_ncs...
Offline Send Email
Jul 19, 2006
5:13 pm
941
You can handcode the analysis function with asm and pin will inline it if it is straightline code, but there is no inline asm api for pin. ...
Cohn, Robert S
rscohn2000
Offline Send Email
Jul 19, 2006
6:10 pm
942
Hello, I'm fairly new to PIN, but am planning to use is quite extensively to characterize some benchmarks (SPEC CPU2000). I would like to do that on a cluster...
b0egel
Offline Send Email
Jul 19, 2006
7:19 pm
943
Starting with pin kit 2578, you could link pin statically by doing a make pin.static in the Bin directory. This was later removed so you might not be able to...
Cohn, Robert S
rscohn2000
Offline Send Email
Jul 19, 2006
8:29 pm
944
... I can't seem to find kit 2578 on http://rogue.colorado.edu/Pin/downloads.php... Should I look somewhere else? Can you also tell me why it was removed?...
b0egel
Offline Send Email
Jul 20, 2006
8:21 am
945
Hello pinheads, I'd like to write a pintool which returns me the instruction mix, categorized as follows: % loads, % stores, % control operations, % arithmetic...
b0egel
Offline Send Email
Jul 20, 2006
8:30 am
946
Download the 2772 kit. cd Bin edit makefile remove the -wrap arguments from the link line make pin.static We included pin in library form so end users could...
Cohn, Robert S
rscohn2000
Offline Send Email
Jul 20, 2006
10:36 am
947
Look in the simple example directories at catmix/opcodemix/... X86 is not a load store architecture. Most instructions can read memory. INS_IsMemoryRead is...
Cohn, Robert S
rscohn2000
Offline Send Email
Jul 20, 2006
10:39 am
948
... Oh, right :) Any functions to check if an operation is a floating point/control flow operation? Or do I have write that myself? Is there any way I can get...
b0egel
Offline Send Email
Jul 20, 2006
12:17 pm
949
... Oh, that seems to do the trick, thank you! Will I miss any functionality using this old kit? greetings Kenneth...
b0egel
Offline Send Email
Jul 20, 2006
12:19 pm
950
Hello I've written an anlysis routine that uses the MOVDQA instruction to move 128 bits between memory and an XMM register (in an attempt to speed up some data...
enightingale05
Offline Send Email
Jul 20, 2006
9:37 pm
Messages 921 - 950 of 4501   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