
- Intel PT page dump feature works now - size of input and bitmap buffers are configurable - new aux buffer layout - various bug fixes
25 lines
632 B
C
25 lines
632 B
C
#pragma once
|
|
|
|
#include "qemu/osdep.h"
|
|
|
|
uint64_t get_rip(CPUState *cpu);
|
|
|
|
typedef struct nyx_coverage_bitmap_copy_s{
|
|
void* coverage_bitmap;
|
|
void* ijon_bitmap_buffer;
|
|
}nyx_coverage_bitmap_copy_t;
|
|
|
|
void nyx_abort(char* msg);
|
|
|
|
nyx_coverage_bitmap_copy_t* new_coverage_bitmaps(void);
|
|
void coverage_bitmap_reset(void);
|
|
void coverage_bitmap_copy_to_buffer(nyx_coverage_bitmap_copy_t* buffer);
|
|
void coverage_bitmap_copy_from_buffer(nyx_coverage_bitmap_copy_t* buffer);
|
|
|
|
int get_capstone_mode(int word_width_in_bits);
|
|
|
|
bool apply_capabilities(CPUState *cpu);
|
|
|
|
bool folder_exits(const char* path);
|
|
bool file_exits(const char* path);
|