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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 617 - 646 of 4498   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
617
Hi, I want to instrument the entry and exit points of methods to gather method-level information, such as the number of cycles spent in a method. While...
vasanthv5
Offline Send Email
Jan 3, 2006
6:55 pm
618
Robert, That didn't work either, but by using the debugger, I got some better information. First, ... A:vm/jit_instrument.C:PackAnalysisArgs:568: Bad IARG:...
speisert
Offline Send Email
Jan 3, 2006
8:59 pm
619
You are missing the IARG_PTR that describes the type. Try RTN_InsertCall(rtn, IPOINT_AFTER, (AFUNPTR)MallocAfter, IARG_G_RESULT0, IARG_PTR, rc->_name.c_str(),...
Cohn, Robert S
rscohn2000
Offline Send Email
Jan 3, 2006
9:16 pm
620
Damn, it has sure been a while... I just realized today that it's been 18 months since I went out with a special lady last, but I'm pretty happy to be heading...
vi.west3590@...
Send Email
Jan 8, 2006
1:05 pm
621
Two questions: In looking thru the makefile.config looks as if swallace did some work supporting other OS's than linux. See below. I would ask him but the ...
erikordway
Offline Send Email
Jan 9, 2006
3:28 am
622
Hi, I see that PIN can handle multithreaded programs using the "-mt" flag. Are there any simple examples illustrating multithreaded support ? Thanks -Sriraman....
Sriraman Tallam
tmsriram
Offline Send Email
Jan 9, 2006
10:21 pm
623
There are examples in the kit. grep for -mt in ToolUnitTests/makefile Sorry for the delay in responding. ... support ?...
mark_charney
Offline
Jan 12, 2006
7:47 pm
624
Hi all, I can't seem to attach PIN to an already running process. I'm trying to profile an apache server, but no matter what tool I'm trying to run (inscount0,...
guz_z
Offline Send Email
Jan 15, 2006
1:39 am
625
Can you try attaching/detaching with gdb instead of pin? Can you try attaching with pin but no tool? Leave out "-t <path>/inscount0" ... From:...
Cohn, Robert S
rscohn2000
Offline Send Email
Jan 16, 2006
2:11 pm
626
Hi, Is there any documentation regarding API for using debug information in an ELF binary. The html with the distribution contains nothing under this section. ...
Sriraman Tallam
tmsriram
Offline Send Email
Jan 18, 2006
3:33 am
627
You may wish to look at DebugTrace or Maid example Pin Tools that are shipped with the kit. Also an explanation of your goal help us inform you better on...
Veej
thep0rt
Offline Send Email
Jan 18, 2006
4:51 am
628
Hi, Though attaching/detaching gdb works OK I can't attach pin, even when I try without any tool. (I get the same error msg as stated below). Any ideas how to...
guz_z
Offline Send Email
Jan 22, 2006
9:18 am
629
Robert, malloctrace.C does not seem to be type-aware (it doesn't have to be, since the types are known in advance for malloc and free). Can Pin determine the...
speisert
Offline Send Email
Jan 24, 2006
10:36 pm
630
Pin can't do it. The type information is in the dwarf info. Pin knows how to extract line numbers from dwarf, but nothing else. ... From:...
Cohn, Robert S
rscohn2000
Offline Send Email
Jan 24, 2006
10:43 pm
631
Hi everyone - I'm currently trying to build a call graph. While I've been able to identify call instructions (via INS_IsProcedureCall() and INS_IsRet ()), I'm...
jgottschlich
Offline Send Email
Jan 25, 2006
8:27 pm
632
I am not sure I completly understand what you mean by "getting the address to the call site from the instruction." Can you please rephrase? And I was wondering...
Veej
thep0rt
Offline Send Email
Jan 25, 2006
8:53 pm
633
Sorry for the lack of clarification - I'm not nearly as versed in assembly as I am in C++, so I'm struggling a bit with my terminology. =) Anyways, from...
jgottschlich
Offline Send Email
Jan 25, 2006
9:16 pm
634
Thank you for clarification. I believe I understand what you are trying to accomplish now. ... This is the API you are looking for: ...
Veej
thep0rt
Offline Send Email
Jan 25, 2006
9:37 pm
635
Hey, I'm trying to iterate through all the basic blocks in a routine. For some reason my code will only visit one basic block in my for loop. For example, the...
olszewski_marek
Offline Send Email
Jan 26, 2006
3:32 am
636
Pin does not have the functionality to provide basic block boundaries in the Ahead of Time instrumentation model. This is because it does not discover the...
Veej
thep0rt
Offline Send Email
Jan 26, 2006
3:40 am
637
Pin breaks basic blocks at control flow instructions, but not joins. It should find multiple basic blocks using this definition. I suspect something else is...
Cohn, Robert S
rscohn2000
Offline Send Email
Jan 26, 2006
3:27 pm
638
My memory is failing. Veej is right. We decided not to do any basic block splitting in the ahead of time model. ... From: pinheads@yahoogroups.com...
Cohn, Robert S
rscohn2000
Offline Send Email
Jan 26, 2006
4:17 pm
639
Hi, Is there any documnetation or examples which helps me to understand how Static Instrumentation can be done using Pin? I am trying to determine the maximum...
Ravi Ayyagari
ravikayyagari
Offline Send Email
Jan 26, 2006
9:53 pm
640
Pin is 100% a dynamic instrumentation system. It does have support for scanning the code prior to execution if that is what you mean by "Static...
Veej
thep0rt
Offline Send Email
Jan 26, 2006
10:10 pm
641
Hi everyone - First off, thanks for your help earlier Veej - it's much appreciated. I've run into a problem in Pin that is causing me some heartache. I'm ...
jgottschlich
Offline Send Email
Jan 27, 2006
10:08 pm
642
... Happy to be of help anytime. ... I think the fundamental piece of information you are missing is -- the instruction class is a run-time datastructure that...
Veej
thep0rt
Offline Send Email
Jan 27, 2006
10:29 pm
643
Hi Veej - Thanks for the insight, I figured as much as far as recycling the ids, I just wasn't clear from the documentation. I was hoping to get away from...
Justin Gottschlich
jgottschlich
Offline Send Email
Jan 28, 2006
1:50 am
644
Hi, Could anyone tell me if for any instruction ins, the condition Ins_IsStackWrite(ins) is true then will the stack pointer SP will always be decremented?...
Ravi Ayyagari
ravikayyagari
Offline Send Email
Jan 28, 2006
4:40 pm
645
On IA32 those functions include access that do not modify the stack pointer. ... always be ... (ins)....
mark_charney
Offline
Jan 28, 2006
6:36 pm
646
My intention to ask was if for an instruction, ins, the condition INS_IsStackWrite(ins) is true, then, if such an instruction, ins, gets executed will the...
Ravi Ayyagari
ravikayyagari
Offline Send Email
Jan 28, 2006
7:12 pm
Messages 617 - 646 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