Pin is a dynamic binary instrumentation framework for the IA-32 and x86-64 instruction-set architectures that enables the creation of dynamic program analysis tools.

learn more… | top users | synonyms

0
votes
0answers
25 views

Why Intel Pin cannot identify the image/routine of some executed instructions?

I am creating a large pintool and I have two questions: The tool (abridged below to the relevant part only) sometimes cannot identify the image/routine for particular executed instructions. Does ...
0
votes
1answer
71 views

Object code relocation and Intel Pin interaction

I am working on a multiprocessor architectural simulator that uses Intel Pin to instrument C++ executable binaries and report interesting events (e.g., some function calls, thread create/finish, ...
2
votes
1answer
148 views

Pin tool for tracking CreateFile calls

I've made a pin tool to dump CreatFile win32 calls (in my case CreateFileW) and its return values. It looks like this: /* ... */ VOID Image(IMG img, VOID *v) { RTN cfwRtn = RTN_FindByName(img, ...
3
votes
1answer
155 views

Intel pin: Instrumentate running process

I created a simple pin tool that dumps any win32 CreateFileW calls. It works fine, but when i try to attach it to an already running process, the process simply terminates. Tried with several ...
0
votes
1answer
99 views

Pin Like Tool for compile time injection of instrumentation code

As you might know, PIN is a dynamic binary instrumentation tool. By using Pin for example, I can instrument every load and store in my application. I was wondering If there is a similar tool which ...