Hi All, I am using both trace and RTN instrumentation in a PINTOOL. The trace instrumentation is used to instrument all Basic Blocks while the RTN...
2245
alexs_2000_il
Jan 2, 2008 2:32 pm
You are right, this is a bug. #include <fstream> fixes this problem. Also, the compiler/linker may report that some header files and libraries are missing in...
2246
Yadavalli, S Bharadwaj
aadibharani
Jan 3, 2008 5:28 pm
The stack trace that you are seeing is most likely that of code cache execution. The code cache consists of instructions resulting from JIT-compilation of the...
2247
Lueck, Gregory M
lueckintel
Jan 3, 2008 8:03 pm
Hi Jons, Can you elaborate a little on how your tool is failing? As I understand, the code below works if you comment out the call to printf, is that correct?...
2248
rightwing654321
Jan 3, 2008 8:08 pm
... ^^^^^^^^^^^^^ This is not a good idea, fflush(stdout); <- that is what you want. -K...
2249
jim.clause
Jan 4, 2008 5:30 pm
Morning, I'm having a problem with RTN_Replace in certain circumstances. I have a simple Pin tool (source below) that replaces a single function using...
2250
Cohn, Robert S
rscohn2000
Jan 4, 2008 6:49 pm
The most common explanation for this problem is that the replaced function is not being called. This can happen when the replaced function is inlined. You can...
2251
Kim Hazelwood
hazelwood@...
Jan 4, 2008 9:22 pm
Hi Javier, Can you send a little more information about exactly what you are trying to do? You say that you already have a trace of BBL addresses. How did you ...
2252
dan_pk
Jan 4, 2008 11:05 pm
Hi guys, I am using the pin checkpointing tool and have a few questions regarding it: Suppose I have the following c code: /////////////// CODE BEGINS int var...
2253
dan_pk
Jan 5, 2008 12:52 am
This is related to last post of Pin checkpointing tool. The checkpointing tool only saves the context and resume once. What do I have to do if I want it to...
2254
James Clause
clause33
Jan 5, 2008 2:07 pm
Yeah, that's the problem. Thanks ~Jim...
2255
Kenneth Hoste
kehoste
Jan 6, 2008 8:13 am
Hello, I'm seeing the following error message when analyzing the wrf benchmark in CPU2006. Anybody have any clue what the problem is? I haven't seen this with...
2256
donjonsn
Jan 6, 2008 5:12 pm
Hi Gregory, yeas, it is correct that the tool works fine if printf is commented out. When I attach with gdb I get following backtrace: #0 0xffffe410 in...
2257
mark_charney
Jan 7, 2008 2:52 pm
Hi Kenneth, I have a fix for Pin's handling of LOOP/LOOPE/LOOPNE. It'll be in the next pin kit. Thanks for the bug report! Regards, Mark...
2258
dan_pk
Jan 8, 2008 1:00 am
Hi, In the pin checkpointing tool, currently it saves the context (say at routine S) and when it reaches the resuming routine (say routine R) it resumes the...
2259
Heidi Pan
wahbahdoo
Jan 8, 2008 1:05 am
1. are you logging stores and restoring memory? CONTEXT only saves the register state. 2. how far are you going past the save point before going back? in my...
2260
dan_pk
Jan 8, 2008 9:20 pm
Hi Heidi, thanks for your reply Heidi, I am saving the memory using memlog.h: memlog->DumpMemState(memfile,tracefile, original_stackpointer); before each...
2261
Kim Hazelwood
hazelwood@...
Jan 9, 2008 2:16 am
Hi Pinheads, Just thought I'd draw your attention to the publications page on the Pin Wiki: http://rogue.colorado.edu/Wikipin/index.php/Publications If you've...
2262
Kim Hazelwood
hazelwood@...
Jan 9, 2008 4:31 am
Hi Pinheads, We are pleased to announce that the next "Hands-on" Pin tutorial will be held at ASPLOS 2008 in Seattle on March 1. Here is our tutorial website: ...
2263
evan.mallory
Jan 10, 2008 3:44 am
I downloaded pin-2.2-15865-msvc8-ia32-windows, compiled the opcodemix tool as per the instructions, and ran ...
2264
Heidi Pan
wahbahdoo
Jan 14, 2008 6:09 am
sorry i'm not quite sure how to diagnose your problem do you need the multiple calls to span multiple runs? if not, i'm pretty sure resuming from a CHECKPOINT...
2265
rscohn2000
Jan 15, 2008 9:58 pm
You may want to consider publishing here. TIMERS CFP Workshop on Tools Infrastructures and Methodologies for the Evaluation of Research Systems (TIMERS-1)...
2266
slice4e
Jan 16, 2008 3:31 am
Hello everyone, My question is probably stupid, but I am a new in developing on Windows. I downloaded pin-2.2-15865-msvc8-ia32-windows and tried to compile the...
2267
evan.mallory
Jan 16, 2008 1:00 pm
For me, the instructions in the README http://rogue.colorado.edu/Pin/docs/15865/README worked: To build and run a sample tool on Windows*: cd SimpleExamples ...
2268
slice4e
Jan 16, 2008 1:27 pm
Well in the same document, I am following the instructions for using Visual Studio 8.0 : " Building tools for VC8 kit in Visual Studio 2005* In order to...
2269
Cohn, Robert S
rscohn2000
Jan 16, 2008 2:21 pm
The sample project file was out of date. I uploaded a new kit, 16358 that has a project file that works: http://rogue.colorado.edu/Wikipin/index.php/Downloads ...
2270
slice4e
Jan 16, 2008 6:16 pm
Thank you very much. Thank worked! Martin...
2271
brsheikh
Jan 18, 2008 4:53 pm
Hi, I am trying to profile some important optimization functions in QuantLib library (an opensource quantative analysis library). My pintool doesn't seem to...
2272
Vijay Janapa Reddi
vijay.janapa...
Jan 18, 2008 4:58 pm
Hi, can you verify the quantLib program you are specifying on the command line is actually a real binary, and not just a script? You can do a file <filename>...
2273
brsheikh
Jan 18, 2008 5:12 pm
It's a C++ program with a function main(). But strangely enough, when I did file <program_file_name>, it returned: program_file_name: Bourne shell script text ...