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 1332 - 1365 of 4503   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1332
What distribution of linux are you using? Are you trying to attach to firefox (pin -pid ...) or are you starting firefox with pin (pin -t follow_child -...
Cohn, Robert S
rscohn2000
Offline Send Email
Feb 1, 2007
2:05 pm
1333
Robert, I'm running Fedora Core 6 under VMware, and I am trying to start firefox with pin. I followed the follow_child example to modify my own tool (pin -t...
pkt252007
Offline Send Email
Feb 2, 2007
2:44 pm
1334
Pin uses ptrace to inject itself into an application, and this is an error using ptrace. We don't do any testing on fc6 and I can't reproduce the problem on...
Cohn, Robert S
rscohn2000
Offline Send Email
Feb 2, 2007
11:26 pm
1335
Hi, I'm trying to use PAPI to measure hardware performance of a program instrumented by PIN. Should I insert my PAPI code (e.g. a function call to start...
Xipeng Shen
expre4mail
Offline Send Email
Feb 4, 2007
9:06 pm
1336
Hi, discussions about PAPI and Pin are available in the group mailing list database. Searching for "Pin with Papi" (including quotes) at...
Vijay Janapa Reddi
persistentpi...
Offline Send Email
Feb 7, 2007
1:13 am
1337
The machine I'm using has 16 processors. To my understanding, when running an instrumented program, PIN creates at least 3 processes (PIN, PIN Tool, ...
Vijay Janapa Reddi
persistentpi...
Offline Send Email
Feb 7, 2007
1:17 am
1341
My question is related to ATOM but I guess since PIN is an ATOM like tool so might be someone with prior ATOM experience can help me in this regard. I would...
catch_rr
Offline
Feb 9, 2007
7:12 pm
1342
I presume that you are using Tru64 Unix Atom on the Alpha processor. There is no API that reports the type of memory access. However, you can figure it out....
Lyons, Gail
glyons125
Offline Send Email
Feb 9, 2007
10:11 pm
1343
Hi, It seems that some IPF-specific instruction inspection rountines available on pin 0.179 are missing on pin 2.0 such as INS_Stop and INS_MemHint. Is it...
raofu05
Offline Send Email
Feb 9, 2007
11:03 pm
1344
Hello pinheads, I am working on AMD opteron which has redhat linux. I have some questions on INS_RegW(ins,i). Here is my part of the code. VOID Instruction(INS...
kiran kumar
kirandotkumar
Offline Send Email
Feb 11, 2007
2:57 am
1345
seems wierd. Try this: I'd want to know what this register is. string LEVEL_BASE::REG_StringShort(REG reg) ... -- Amithash E. Prasad ECE Department, CU ...
Amithash Prasad
amithash_84
Offline Send Email
Feb 11, 2007
4:14 am
1346
It looks like you're using INS_RegW correctly. Pin REG objects are (I think) just an enum so they number they have doesn't correspond to anything in...
Jim Clause
clause33
Offline Send Email
Feb 11, 2007
1:58 pm
1347
Your loop condition is wrong. It should be i < NoW Not i <= NoW ________________________________ From: pinheads@yahoogroups.com...
Cohn, Robert S
rscohn2000
Offline Send Email
Feb 11, 2007
2:14 pm
1348
And the loop should start at zero....
mark_charney
Offline
Feb 11, 2007
6:49 pm
1349
thank you guys, my problem is solved now. i started my loop from zero. but still, i am not clear, why the loop should start from zero because what i thought...
kiran kumar
kirandotkumar
Offline Send Email
Feb 11, 2007
8:56 pm
1350
"i" is the index of the write operand. so if an operation has 3 write operands, then to access these operands, you have to specify i from 0 to 2. ... -- ...
Amithash Prasad
amithash_84
Offline Send Email
Feb 11, 2007
10:16 pm
1351
my code has another problem. It gives me signal 11 error when INS_InsertCall statement is above the loop but when i keep this statement after the loop there is...
kiran kumar
kirandotkumar
Offline Send Email
Feb 12, 2007
4:01 am
1352
Is there anyway to get RTN_BblHead() to return a valid basic block or any other way to get a list of basic blocks for a routine? Thanks, Jim...
Jim Clause
clause33
Offline Send Email
Feb 12, 2007
3:35 pm
1353
Hello there, I am a newbie in pin programming. In fact I have just downloaded the pin package for windows (vc 8.0) and I have a problem trying to compile the...
bbsaronis
Offline
Feb 12, 2007
3:36 pm
1354
Hi all, I am another newbie of Pin... I am trying to capture the dependency between instructions, and I need to know exactly the registers each instruction...
jiayuan.meng
Offline
Feb 12, 2007
11:37 pm
1355
Hi all, I have another question about memory access. This time, I am trying to know what memory addresses are read or written by each instruction. As you know,...
jiayuan.meng
Offline
Feb 12, 2007
11:58 pm
1356
Jiayuan, The code you use should give you what you want. I'm not sure why the function says max or not. One possibility is that using that API will include...
Jim Clause
clause33
Offline Send Email
Feb 13, 2007
3:21 am
1357
... For some instructions the size of the memory access can be determined statically. That's when you can use INS_MemoryWriteSize or ...
Jim Clause
clause33
Offline Send Email
Feb 13, 2007
3:26 am
1359
Thanks Jim! This explains well and it assures me. I think I will need the implicit operands to catch the dependency. But I am still interested to know how to...
jiayuan.meng
Offline
Feb 13, 2007
4:04 pm
1360
Thanks Jim for the information! Some follow-up questions: How do we know whether the memory access size can be determined at run time? And what is the...
jiayuan.meng
Offline
Feb 13, 2007
4:06 pm
1361
How do we know whether the memory access size can be determined at run time? I think in most cases the size can be determined at runtime. The one case I can...
Jim Clause
clause33
Offline Send Email
Feb 13, 2007
4:56 pm
1362
Here's some code to get all read / written registers so you can distinguish between implicit and explicit operands for(UINT32 i = 0; i < INS_OperandCount(ins);...
Jim Clause
clause33
Offline Send Email
Feb 13, 2007
6:41 pm
1363
... I never figured this out either. In fact I'm confused as to what exactly causes a memory read 2. Hopefully someone else can answer this for you. Some x86...
Lueck, Gregory M
gregorylueck
Offline Send Email
Feb 13, 2007
8:48 pm
1364
RTN_BblHead() should return a single basic block with all the instructions in the routine. Pin does not currently have sufficient static analysis support to...
Lueck, Gregory M
gregorylueck
Offline Send Email
Feb 13, 2007
9:14 pm
1365
I don't see an obvious error from the code you sent. Try running your tool under the debugger as described here: ...
Lueck, Gregory M
gregorylueck
Offline Send Email
Feb 13, 2007
9:17 pm
Messages 1332 - 1365 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