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 2652 - 2681 of 4498   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2652
I've uploaded pintool.log. That's the only log file produced. Thanks for your help. - Barry...
barry_tannenbaum
barry_tannen...
Offline Send Email
Jun 2, 2008
1:48 pm
2653
... No, not an easy way. You have to track the value that is read until it is interpreted, because a compiler often treats floating point values as integers...
Godmar Back
godmarback
Offline Send Email
Jun 2, 2008
2:38 pm
2654
Hello. I am new to PIN and I want to instrument instructions that involve memory reads. I found the INS_Category function but I can't find in the documentation...
giotsasv
Offline Send Email
Jun 2, 2008
4:07 pm
2655
Pin is supposed to be portable. As a result, the categories API is opaque because the categories are different on varoius architectures that Pin...
mark_charney
Offline
Jun 2, 2008
4:22 pm
2656
Hi The address 0x7c000000 appears to be free. Since I can't send the attachments i have listed the address space here. 00400000-00430000 r-xp 00000000 08:05...
sadagopan78
Offline Send Email
Jun 2, 2008
4:23 pm
2657
Having found out about pin I am very glad to see it, I liked atom and have missed that sort of tool for some time. I am writing some tools on Windows and had a...
bb_jj_ss
Offline Send Email
Jun 2, 2008
4:38 pm
2658
For the BOOL thing, I think the recommendation is to include windows.h in its own namespace: namespace WINDOWS { #include <windows.h> } and then refer to all...
mark_charney
Offline
Jun 3, 2008
1:23 pm
2659
... Thank you! Now it only remains to find what is the correspondence between xed-category-enum and xed-iclass-enum. I think I'll do it by disassembling...
giotsasv
Offline Send Email
Jun 3, 2008
5:26 pm
2660
Hi, I am running Pinpoints (version gcc4.0) with Simpoints 3.2 on a Fedora core 6, intel pentium pro machine. Some of the reference material that i found on...
archanaravindar
Offline Send Email
Jun 4, 2008
5:55 pm
2661
... You might want to look at the paper here: http://www.csl.cornell.edu/~vince/papers/hipeac08.html It looks at SimPoint BBV files generated by Pin, Valgrind,...
Vince Weaver
vince@...
Send Email
Jun 4, 2008
6:09 pm
2662
Hi HyungChan, Sorry for the delay. I found a bug in the later versions of Pin that results in SuperPin hanging on a signal. It'll be fixed in a future Pin kit....
Kim Hazelwood
hazelwood@...
Send Email
Jun 5, 2008
1:58 am
2663
Hi, I am trying to insert locks into a program by using PIN. I am not sure whether I should use the regular pthread_mutex_lock or PIN's own GetLock. Does...
pdudnik1
Offline Send Email
Jun 5, 2008
5:32 pm
2664
What are PIN_LockClient, PIN_UnlockClient used for? Thank you....
pdudnik1
Offline Send Email
Jun 5, 2008
5:33 pm
2665
Hi! I am implementing a very simple pintool. The instrumentation routine is working but the analysis routine never seems to execute. I am not sure what the...
pdudnik1
Offline Send Email
Jun 5, 2008
6:13 pm
2666
Hi, I have been trying to read the zero flag from the eflags. I can do this at analysis time however everytime i do it i get back an 8-bit value (e.g. 246)....
archaon51
Offline Send Email
Jun 6, 2008
2:48 pm
2667
How do you read EFLAGS? Anyway, assuming you can read its value, you just need a & operation to read the ZF, which is bit 6 of the flag register. For example,...
João Paulo Porto
sanorules
Offline Send Email
Jun 6, 2008
3:23 pm
2668
Yes this exactly it, thank you very much. I just needed that is the sixth bit. ... you read...
archaon51
Offline Send Email
Jun 6, 2008
6:23 pm
2669
I usually do something like this: #define CF_MASK 1 << 1 // bit 1 #define PF_MASK 1 << 2 // bit 2 #define AF_MASK 1 << 4 // bit 4 #define ZF_MASK 1 << 6 // bit...
Jim Clause
clause33
Offline Send Email
Jun 6, 2008
7:05 pm
2670
Hello I see that PIN has an API called Checkpointing which it enables re-execution of the program and offers: PIN_SaveCheckpoint(CHECKPOINT *chkptFrom,...
mike_sanders777
Offline
Jun 8, 2008
11:32 am
2671
Hello All: I'm doing research on the AMD Opteron, and I wanted to use PIN for it. But, then I checked the website and it did not say if it supported AMD ...
wkohlani
Offline Send Email
Jun 9, 2008
7:13 pm
2672
... If you want to build PIN tools and analyze applications using PIN tools on systems using AMD processors, then yes, it should work perfectly. I've been...
Kenneth Hoste
kehoste
Offline Send Email
Jun 9, 2008
8:11 pm
2673
The Intel Pin team does not test Pin on AMD processors, since we don't own any. Kim From: pinheads@yahoogroups.com [mailto:pinheads@yahoogroups.com] On Behalf ...
Kim Hazelwood
hazelwood@...
Send Email
Jun 9, 2008
8:49 pm
2674
Hi, I have a PIN Fini Function and when I run my application with PIN, the Fini function outputs the debugging message, however, my application does not exit....
pdudnik1
Offline Send Email
Jun 10, 2008
2:51 pm
2675
Can you explain what you mean when you say your application doesn't exit? Do you mean that the Fini function never gets called? Or that the main function never...
Kim Hazelwood
hazelwood@...
Send Email
Jun 10, 2008
7:01 pm
2676
First, I would encourage you to look at the CONTEXT APIs instead, which provide similar functionality: ...
Lueck, Gregory M
lueckintel
Offline Send Email
Jun 10, 2008
7:02 pm
2677
Yeah, but can I use it on AMD opteron. Well, it works there, but will the results be reliable? That's what I want to know. ... don't own ... Behalf ... it. ......
wkohlani
Offline Send Email
Jun 10, 2008
8:41 pm
2678
Obviously, the Pin team has no way of answering that question, so perhaps Kenneth Hoste or some other user wants to comment. From: pinheads@yahoogroups.com...
Kim Hazelwood
hazelwood@...
Send Email
Jun 10, 2008
9:03 pm
2679
Actually, you can tell when Pin does either an explicit or an internal flush by registering a callback via CODECACHE_AddCacheFlushed. It will tell you just...
Kim Hazelwood
hazelwood@...
Send Email
Jun 10, 2008
9:10 pm
2680
It works just fine on x86_64 supported OS's. I've been using it on Athlon X2, Phenom X4, and various opterons for more than a year. Rick Gorton ... From: Kim...
Richard Gorton
rgorton_amt
Offline Send Email
Jun 10, 2008
9:38 pm
2681
... for more than a year. ... perhaps Kenneth Hoste or some other user wants to comment. ... On Behalf Of wkohlani ... will ... we ... ...
wkohlani
Offline Send Email
Jun 10, 2008
10:10 pm
Messages 2652 - 2681 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