mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
ee850e39bc
* s/PTC/PTCInterface/ * Implement InstructionArgumentsIterator * Implement Instrcution and CallInstruction
20 lines
465 B
C++
20 lines
465 B
C++
#ifndef _PTCINTERFACE_H
|
|
#define _PTCINTERFACE_H
|
|
|
|
#include <memory>
|
|
|
|
#include "revamb.h"
|
|
#define USE_DYNAMIC_PTC
|
|
#include "ptc.h"
|
|
|
|
|
|
using PTCInstructionListDestructor =
|
|
GenericFunctor<decltype(&ptc_instruction_list_free),
|
|
&ptc_instruction_list_free>;
|
|
using PTCInstructionListPtr = std::unique_ptr<PTCInstructionList,
|
|
PTCInstructionListDestructor>;
|
|
|
|
extern PTCInterface ptc;
|
|
|
|
#endif // _PTCINTERFACE_H
|