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 1015 - 1045 of 4503   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1015
INS_Delete will let you delete an instruction To insert instructions, insert a call to a function that writes application registers with IARG_REG_REFERENCE. ...
Cohn, Robert S
rscohn2000
Offline Send Email
Sep 1, 2006
11:24 am
1017
Hi, I'm getting the following error when trying to run one of our apps through pin: Miniloader could not map segment Pin child/app terminated abnormally due to...
cmccurdy2
Offline Send Email
Sep 13, 2006
3:50 pm
1018
Collin, It's an address conflict between the application binary and (pin/tool). Can you try without a tool? pin - app Robert ________________________________ ...
Cohn, Robert S
rscohn2000
Offline Send Email
Sep 13, 2006
4:03 pm
1019
Hi Robert, Thanks for the quick response. The app seems to load fine without my tool. Do you have any suggestions for removing the conflict with my tool? ...
cmccurdy2
Offline Send Email
Sep 13, 2006
5:21 pm
1020
I am working on a more elegant fix. In the meanwhile, you can move your tool by editing makefile.config and relinking. ifeq ($(TARGET),ia32e) PIN_CXXFLAGS +=...
Cohn, Robert S
rscohn2000
Offline Send Email
Sep 13, 2006
5:40 pm
1021
Think that did it. Had to go all the way up to 26, but finally that worked. Guess this app has a very large bss section. Thanks a lot for your help! Collin...
cmccurdy2
Offline Send Email
Sep 13, 2006
6:06 pm
1022
... If it's any help, for Valgrind we use 0x38000000 on x86/Linux for loading the Valgrind+tool executable. That's a bit below 0x40000000 where shared objects...
Nicholas Nethercote
njn@...
Send Email
Sep 13, 2006
6:48 pm
1023
If I compile a pintool with -ffast-math, can this change the numerical accuracy or behavior of the instrumented program? -jeremy...
Jeremy Lau
aoxommoxoa
Offline Send Email
Sep 13, 2006
10:13 pm
1024
I would not expect it to. Are you observing that it does? -- Greg ________________________________ From: pinheads@yahoogroups.com...
Lueck, Gregory M
gregorylueck
Offline Send Email
Sep 14, 2006
8:22 pm
1025
... No, but I was wondering if it could cause problems later. -jeremy...
Jeremy Lau
aoxommoxoa
Offline Send Email
Sep 15, 2006
12:40 am
1026
Does PIN_RemoveInstrumentation() remove instumentations inserted by IMG_AddInstrumentFunction()? If so, how to just remove instrumentations on traces and...
Chen, Yu
cnchenyu00
Offline Send Email
Sep 15, 2006
12:23 pm
1027
PIN_RemoveInstrumentation() does not remove instrumentation added via IMG_AddInstrumentFunction() or IMG_AddUnloadFunction(). -- Greg ...
Lueck, Gregory M
gregorylueck
Offline Send Email
Sep 19, 2006
3:54 pm
1028
Hi, I'm new to PIN, and I hope someone will be able to help me with this. I'm trying to using PIN_ExecuteAt() to execute a different function. Everthing works...
Edward Walker
climber544
Offline Send Email
Sep 20, 2006
9:37 pm
1029
Are you trying to replace a function for the lifetime of a program? If so I'd recommend an easier approach -- let Pin handle replacements via...
Vijay Janapa Reddi
persistentpi...
Offline Send Email
Sep 20, 2006
9:52 pm
1030
Hi Vijay, Unfortunately, I do want to do this dynamically during the life time of the program (i.e. turn it on/off depending on some analysis). Thanks for the...
Edward Walker
climber544
Offline Send Email
Sep 20, 2006
10:23 pm
1031
hi ed, what's in func_wrapper? if you hit the ret instruction of func_wrapper, then you have the set up the stack correctly with a return address, etc heidi...
Heidi Pan
wahbahdoo
Offline Send Email
Sep 20, 2006
10:52 pm
1032
Hi Heidi, I just have a test application now. In my application I have routines foo1() and foo2(), both with the same prototype signature, i.e. void foo1(int...
Edward Walker
climber544
Offline Send Email
Sep 21, 2006
12:46 am
1033
hi ed, by the time you instrument the routine the call instruction has already executed which has set up the stack correctly for you with the original argument...
Heidi Pan
wahbahdoo
Offline Send Email
Sep 21, 2006
2:48 pm
1034
Heidi, Yes you are right. That fixed it. I was looking at the stack in the wrong direction. Sorry for the rockie mistake. Thanks for your help with this! -...
Edward Walker
climber544
Offline Send Email
Sep 21, 2006
3:13 pm
1035
hi! what would be the easiest way to dynamically change the effective read/write address of a non-stack memory operation (e.g. add an offset when detecting a...
Heidi Pan
wahbahdoo
Offline Send Email
Sep 21, 2006
11:56 pm
1036
Heidi, Look at ToolUnitTests/swizzle2.C. This will let an analysis routine supply an effective address. Robert ________________________________ From:...
Cohn, Robert S
rscohn2000
Offline Send Email
Sep 22, 2006
11:42 am
1037
I have a simple program that sets up a signal handler that calls PIN_ExecuteInstrumented when it is invoked. The program executes correctly, but if the...
enightingale05
Offline Send Email
Sep 22, 2006
8:24 pm
1038
I failed to mention that I have seen this error with both kits 3585 and 4229 with gcc 3.2 ia32 with a 2.4 linux kernel. Interestingly an alternative seems to...
enightingale05
Offline Send Email
Sep 23, 2006
7:51 pm
1039
Hi, Can someone help me? I'm looking for a memory cache model that has already implemented LRU and prefetching in PIN. Best, Fernando...
rivgal1620042000
rivgal162004...
Offline Send Email
Sep 23, 2006
7:54 pm
1040
Hi All, I'm new to Pin and I'm trying to add some instrumention after each memory write operation. IPOINT_AFTER does not work (complains that there is no...
arunissatan
Online Now Send Email
Sep 28, 2006
4:43 am
1041
Look at SimpleExamples/pinatrace.C: // instruments stores using a predicated call, i.e. // the call happens iff the store will be actually executed if...
Cohn, Robert S
rscohn2000
Offline Send Email
Sep 28, 2006
11:57 am
1042
I think you have stumbled across an experimental feature we've added to Pin for an internal user. The PIN_ExecuteInstrumented / PIN_ExecuteUninstrumented APIs...
Lueck, Gregory M
gregorylueck
Offline Send Email
Sep 28, 2006
5:06 pm
1043
hi, i want to get the register usage histograms in the AMD opteron. can anyone tell me which profiler can do this because pin doesn't support opteron. any...
kiran kumar
kirandotkumar
Offline Send Email
Sep 29, 2006
7:59 pm
1044
... According to the Pin website it supports "IA-32E (64 bit x86)", aka AMD64, aka x86-64. Nick...
Nicholas Nethercote
njn@...
Send Email
Sep 29, 2006
9:16 pm
1045
Is there any reason why a version of Pin compiled for 64 bit should not be able to run 32 bit applications? I'm running on the 64bit version of CentOS 4.3,...
Dan Upton
draqza.rm
Offline Send Email
Oct 3, 2006
9:13 pm
Messages 1015 - 1045 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