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...
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...
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?...
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...
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...
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 ...
Kim Hazelwood
hazelwood@...
Jan 4, 2008 9:22 pm
2252
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...
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...
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...
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...
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...
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...
Hi Heidi, thanks for your reply Heidi, I am saving the memory using memlog.h: memlog->DumpMemState(memfile,tracefile, original_stackpointer); before each...
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...
Kim Hazelwood
hazelwood@...
Jan 9, 2008 2:16 am
2262
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: ...
Kim Hazelwood
hazelwood@...
Jan 9, 2008 4:31 am
2263
I downloaded pin-2.2-15865-msvc8-ia32-windows, compiled the opcodemix tool as per the instructions, and ran ...
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...
You may want to consider publishing here. TIMERS CFP Workshop on Tools Infrastructures and Methodologies for the Evaluation of Research Systems (TIMERS-1)...
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...
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 ...
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...
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 ...
Hi, I am trying to profile some important optimization functions in QuantLib library (an opensource quantative analysis library). My pintool doesn't seem to...
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>...
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 ...