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 3351 - 3380 of 4499   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3351
Hi, If I do the following instrumentation: I instrument each 'ret' instruction using INS_InsertCall(ins, IPOINT_BEFORE, (AFUNPTR)AAA, ...); INS_InsertCall(ins,...
jay.yujie
Offline Send Email
Feb 1, 2009
7:46 pm
3352
You could do the following. Capture the initial value of REG_STACK_PTR on entry to the function. Then, instrument every instruction in that function that...
Lueck, Gregory M
lueckintel
Offline Send Email
Feb 2, 2009
2:35 pm
3353
... Yes we can. 2 options. Option 1: - Start a debugger with the original command line (e.g. <pin options> -t <tool name> <tool options> -- <app name> <app...
nadav_chachmon
Offline Send Email
Feb 2, 2009
3:13 pm
3354
Thanks for the help.. ~Sarang ________________________________ From: "Lueck, Gregory M" <gregory.m.lueck@...> To: "pinheads@yahoogroups.com"...
sarang ozarde
sarangozarde
Offline Send Email
Feb 2, 2009
3:30 pm
3355
I wrote a pintool with .c extension (e.g. itrace.c), but on compiling I got some error messages. Can't we write pintools in files with .c extension?...
trsoumya_88
Offline Send Email
Feb 2, 2009
4:08 pm
3356
Thanks... It worked. -Arumuga...
Piramanayagam Arumuga...
piramanayagam@...
Send Email
Feb 2, 2009
5:18 pm
3357
Can you suggest some appplication domains where PIN can be used? Urgent!!!!!required for project...
trsoumya_88
Offline Send Email
Feb 2, 2009
6:06 pm
3358
Hi Elena, thanks for the comment. However, wouldn't INS_Address() and INS_Size only give me the address of the address and the size of the instruction? I am...
rayfirewind
Offline Send Email
Feb 2, 2009
11:26 pm
3359
Can you also tell the unit for the absolute values of time-related variables in pin.log? I have values like: pin::time::total/vm...
Piramanayagam Arumuga...
piramanayagam@...
Send Email
Feb 3, 2009
12:02 am
3360
It is cycles. ... From: pinheads@yahoogroups.com [mailto:pinheads@yahoogroups.com] On Behalf Of Piramanayagam Arumuga Nainar Sent: Monday, February 02, 2009...
Cohn, Robert S
rscohn2000
Offline Send Email
Feb 3, 2009
1:44 am
3361
// analysis function VOID dumpInstruction64Binary(VOID *ip, USIZE size) { unsigned char i = 0; for (i=0; i<size; i++) { bintrace.put(*((unsigned char *)ip+i));...
reynaudd@...
reynaudd...
Offline Send Email
Feb 3, 2009
8:33 am
3362
IP and INS_Address() are equal. You don't have to put a callback before instruction in order to print the binary. It may fail in some exotic cases like self...
Demikhovsky, Elena
elena.demikh...
Offline Send Email
Feb 3, 2009
10:18 am
3363
Hello All! i'm new to pintool and i'm trying to make an easy program that consists to modify a bit the calltrace.cpp included in the examples. I need help with...
pol.uros
Offline Send Email
Feb 3, 2009
1:53 pm
3364
... I mean function calls involved in time, sorry :)...
pol.uros
Offline Send Email
Feb 3, 2009
4:55 pm
3365
You can set a flag in the PinTool as a note to, on the next compilation, save the syscall return value. For instance, something like this should work: VOID...
Dan Upton
draqza.rm
Offline Send Email
Feb 3, 2009
5:58 pm
3366
You can use PIN_AddSyscallExitFunction() API to register a SYSCALL_EXIT_CALLBACK notification function. Itis called immediately after execution of a system...
alexs_2000_il
Offline Send Email
Feb 3, 2009
6:15 pm
3367
I am trying to emulate calls using INS_InsertDirectJump. Before the insertion I am preparing the stack (store register values, push arguments and return...
donjonsn
Offline Send Email
Feb 3, 2009
6:55 pm
3368
No, tools must be C++. The Pin header files are in C++. ________________________________ From: pinheads@yahoogroups.com [mailto:pinheads@yahoogroups.com] On...
Lueck, Gregory M
lueckintel
Offline Send Email
Feb 3, 2009
11:25 pm
3369
Thank you for your help. I have settled with PIN_SafeCopy() at last, and it works. Thanks to both Dana and Elena. -Ray ... before instruction in order to print...
rayfirewind
Offline Send Email
Feb 4, 2009
12:16 am
3370
Hi, I am trying to build the DebugTrace pintool on a Intel 64bit machine. However, since the application that I will be instrumenting is 32-bit, I will need to...
rayfirewind
Offline Send Email
Feb 4, 2009
12:25 am
3371
Turns out all I need is to set TARGET = ia32 instead. The problem is solved. -Ray...
rayfirewind
Offline Send Email
Feb 4, 2009
12:47 am
3372
Can we use PIN for analysing a multithreaded program and optimize the code such that the optimized code has less run time????...
trsoumya_88
Offline Send Email
Feb 4, 2009
1:54 pm
3373
Hi all, I'm having problems compiling the Pthread tool on my Debian Lenny machine. ... I installed g++-3.4 tool chain: apellegr@vinaccia:~$ g++-3.4 -v Reading...
Andrea Pellegrini
pellegrini.a...
Offline Send Email
Feb 4, 2009
2:20 pm
3374
Yes, Pin can analyze multi-threaded programs. However, Pin is primarily an analysis tool, not an optimizer. -- Greg ________________________________ From:...
Lueck, Gregory M
lueckintel
Offline Send Email
Feb 4, 2009
3:33 pm
3375
I wonder if we can pass a string from instrument phase to analysis phase via the callback? I passed the address of a string, but the content the string was...
mycuti@...
Send Email
Feb 4, 2009
5:05 pm
3376
Hi Is there a way to generate the data section from an application binary using PIN. Thanks Vish          ...
vishwa v
vishwa_v27
Offline Send Email
Feb 5, 2009
6:52 pm
3377
Pin implements RTN_InsertCall(..., IPOINT_AFTER, ...) by doing INS_InsertCall(.., IPOINT_BEFORE, ...) on each RET instruction. Therefore, the order of AAA and...
Lueck, Gregory M
lueckintel
Offline Send Email
Feb 5, 2009
10:40 pm
3378
Yes, use IARG_PTR to pass the address of the string. You need to make sure that the string itself is allocated in permanent memory, not allocated on the...
Lueck, Gregory M
lueckintel
Offline Send Email
Feb 5, 2009
10:42 pm
3379
The Pthread tool has knowledge of the internals of a specific release of the pthreads library. Therefore, it doesn't work on all systems. (In fact, the tool...
Lueck, Gregory M
lueckintel
Offline Send Email
Feb 5, 2009
10:46 pm
3380
You can use IMG_SecHead() to iterate over all the sections in each image, and SEC_Data() / SEC_Size() / SEC_Address() will give you the raw contents of these...
Lueck, Gregory M
lueckintel
Offline Send Email
Feb 5, 2009
10:51 pm
Messages 3351 - 3380 of 4499   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