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 to share photos of your group with the world? 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 342 - 371 of 4503   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
342
Does: INS_OperandIsMemory(ins,i) => ( INS_IsMemoryWrite(ins) || INS_IsMemoryRead(ins) ) ? When instrumenting a MOV instruction, I find an operand that is a...
Micha Moffie
micha_moffie
Online Now Send Email
Jul 1, 2005
1:16 pm
343
Pin cannot generate the virtual address when a memory operand has a segment override. This means we cannot do IARG_MEMORYREAD_EA properly. We have some ideas...
Cohn, Robert S
rscohn2000
Offline Send Email
Jul 1, 2005
1:25 pm
344
Hi Will "-separate_memory" option keep pin's and application's virtual address space separate? Is there a way to override protection mechanism - ie to have the...
nsatz
Offline Send Email
Jul 2, 2005
5:03 pm
345
Just to expand on the 1st question below, does PIN have an option to make sure that all of the data addresses accessed (ignoring code) in the original program...
bradcalder_ucsd
Offline Send Email
Jul 3, 2005
6:11 pm
346
And idea?...
gqycougar
Offline Send Email
Jul 5, 2005
3:51 am
347
Just install Rocks 4.0 on our cluster. gcc version 3.4.3 20041212 (Red Hat 3.4.3-9.EL4) So the compilation of Pintool will fail #error "pin compiler and pin...
gqycougar
Offline Send Email
Jul 5, 2005
5:20 am
348
I just uploaded a new set of kits, including one for gcc3.4. ... From: pinheads@yahoogroups.com [mailto:pinheads@yahoogroups.com] On Behalf Of gqycougar Sent:...
Cohn, Robert S
rscohn2000
Offline Send Email
Jul 5, 2005
12:53 pm
349
We have uploaded a new release of pin 2244. We have made some minor API changes so you may have to change your pintool. You will get a runtime error with a...
Cohn, Robert S
rscohn2000
Offline Send Email
Jul 5, 2005
12:53 pm
350
No, PinPoints has not been ported to use Simpoint 3.0 yet; most likely next week. -Harish ________________________________ From: pinheads@yahoogroups.com...
Patil, Harish
harishp1965
Offline Send Email
Jul 5, 2005
1:04 pm
351
Good morning :), I get some weird results when using INS_OperandImmediate: When the immediate is 0x1fffffff all is well, But when the immediate is 0xffffffff...
Micha Moffie
micha_moffie
Online Now Send Email
Jul 7, 2005
10:38 pm
352
I made the operand interface sign extend the immediates so you will get the expected result. Please try ...
Cohn, Robert S
rscohn2000
Offline Send Email
Jul 8, 2005
10:48 am
353
Good morning :) I tried, For the operand interface the operand is sign extended to 64 bit. Here is what I am trying to do: if ( (REG_is_gr32(dst_reg) && ...
Micha Moffie
micha_moffie
Online Now Send Email
Jul 8, 2005
1:11 pm
354
I can fix it like this: if ( 0xffffffffffffffff == INS_OperandImmediate(ins,imm_op_num) ) { ... } OR if ( (UINT64)-1 == INS_OperandImmediate(ins,imm_op_num) ) ...
Micha Moffie
micha_moffie
Online Now Send Email
Jul 8, 2005
1:20 pm
355
Intall pin-2.0-2244-gcc.3.4.2-ia32-linux, and use in the /SimpleExamples to get the Basic Block profile. It shows some assembly language that I am a little...
gqycougar
Offline Send Email
Jul 8, 2005
4:17 pm
356
... Those are segment registers: SS stack segment DS data segment CS code segment There is also the ES, FS, and GS but I believe the above are more prolific. &...
VJ
thep0rt
Offline Send Email
Jul 8, 2005
4:29 pm
357
... The stuff in the square brackets means: [registers written] = [registers read]...
VJ
thep0rt
Offline Send Email
Jul 8, 2005
4:35 pm
358
Hi, I have a similar problem. I am using PIN-0 (Kit 179) on an Itanium-2 system. I am attempting to do ahead-of-time instrumentation using the ...
jaydeep2468
Offline Send Email
Jul 11, 2005
4:16 am
359
CAn somebody post an example program on how to use checkpointing I can understand the functions which do PIN_SaveCheckpoint (CHECKPOINT *chkptFrom, CHECKPOINT...
arrvindh_shriraman
arrvindh_shr...
Offline Send Email
Jul 11, 2005
4:21 pm
360
Hi, PIN_SaveCheckpoint is usually used to save the value of IARG_CHECKPOINT, because IARG_CHECKPOINT is only valid during the current analysis routine. See...
Pan, Heidi
wahbahdoo
Offline Send Email
Jul 11, 2005
4:41 pm
361
Hi, there are a couple of trivial changes in the Test/traceusage.C tool which is provided with pin. 1) assert condition opposite of what it should be in...
Rahul Saxena
rahulsaxon
Offline Send Email
Jul 13, 2005
4:07 am
362
I recently started working with Gcc 3.4 port of pin. Suddenly the Multithread programs have stopped working. All due to same reason "No STACK Trace Available"...
arrvindh_shriraman
arrvindh_shr...
Offline Send Email
Jul 14, 2005
7:42 am
363
PinPoints now supports SimPoint 3.0. The profiler (isimpoint) did not change - only the scripts to convert simpoint output to PinPoints files, namely Step2.sh...
Patil, Harish
harishp1965
Offline Send Email
Jul 14, 2005
11:48 am
364
CAn some one point me out to good documentation for using Pin Points infrastructure. I run some full system benchmark workloads (i.e Apache SpeccJBB). Can ...
arrvindh_shriraman
arrvindh_shr...
Offline Send Email
Jul 14, 2005
3:38 pm
365
* CAn some one point me out to good documentation for using Pin Points * infrastructure. Please look at: ...
Patil, Harish
harishp1965
Offline Send Email
Jul 14, 2005
5:30 pm
366
Good afternoon, I was trying to run: pin -- ping www.google.com ... ping: icmp open socket: Operation not permitted just running ping work fine ... ... PING...
Micha Moffie
micha_moffie
Online Now Send Email
Jul 22, 2005
8:10 pm
367
Micha, ping is a set-uid root program. When it is run under PIN, it is run as normal user, which is why it fails. You would need to invoke PIN as root to...
Artur Klauser
Pin.Project@...
Send Email
Jul 25, 2005
3:11 pm
368
Hi, in the ManualExamples/atrace tool I want to print the name of the routine doing the read/write, so I changed for example RecordMemRead(VOID * ip, VOID *...
mvkrieger
Offline Send Email
Jul 26, 2005
8:41 pm
369
Did you call PIN_InitSymbols() in the tool main() function? Also you need to make sure your executable file has symbols, you can find this out by doing "file...
VJ
thep0rt
Offline Send Email
Jul 26, 2005
8:49 pm
370
Hi, indeed I did not have the PIN_InitSymbols() call, it works ok now. Thanks ! Marco....
mvkrieger
Offline Send Email
Jul 27, 2005
7:18 am
371
Hi, is it possible to print all variables in the image of the traced process? Something like: for (SEC sec = IMG_SecHead(img); SEC_Valid(sec); sec =...
mvkrieger
Offline Send Email
Jul 27, 2005
2:34 pm
Messages 342 - 371 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