mirror of
https://github.com/radareorg/radare2.git
synced 2025-03-05 12:57:34 +00:00

- Thanks! :) * Added dummy r_socket_proc_* api - Needs to be moved outside r_socket - Added two non-working usage examples * Add some checks and enhacements to the r_buf API - Implemented in r_util.vapi * R_APIfy the r_cache api * Add missing methods in r_socket.vapi * Update the README file in r_anal describing the new design of r_anal..not yet finished
70 lines
2.1 KiB
C
70 lines
2.1 KiB
C
#ifndef _INCLUDE_R_REG_H_
|
|
#define _INCLUDE_R_REG_H_
|
|
|
|
#include <r_types.h>
|
|
#include <r_util.h>
|
|
#include <list.h>
|
|
|
|
enum {
|
|
R_REG_TYPE_GPR,
|
|
R_REG_TYPE_DRX,
|
|
R_REG_TYPE_FPU,
|
|
R_REG_TYPE_MMX,
|
|
R_REG_TYPE_XMM,
|
|
R_REG_TYPE_FLG,
|
|
R_REG_TYPE_SEG,
|
|
R_REG_TYPE_LAST,
|
|
R_REG_TYPE_ALL = -1,
|
|
};
|
|
|
|
struct r_reg_item_t {
|
|
char *name;
|
|
int type;
|
|
int size; /* 8,16,32,64 ... 128/256 ??? */
|
|
int offset; // offset in data structure
|
|
int packed_size; /* 0 means no packed register, 1byte pack, 2b pack... */
|
|
struct list_head list;
|
|
};
|
|
|
|
struct r_reg_arena_t {
|
|
ut8 *bytes;
|
|
int size;
|
|
struct list_head list;
|
|
};
|
|
|
|
struct r_reg_set_t {
|
|
struct r_reg_arena_t *arena;
|
|
struct list_head arenas; /* r_reg_arena_t */
|
|
struct list_head regs; /* r_reg_item_t */
|
|
};
|
|
|
|
struct r_reg_t {
|
|
char *profile;
|
|
struct r_reg_set_t regset[R_REG_TYPE_LAST];
|
|
};
|
|
|
|
/* lifecycle */
|
|
R_API struct r_reg_t *r_reg_free(struct r_reg_t *reg);
|
|
R_API struct r_reg_t *r_reg_init(struct r_reg_t *reg);
|
|
R_API struct r_reg_t *r_reg_new();
|
|
R_API int r_reg_set_profile_string(struct r_reg_t *reg, const char *profile);
|
|
R_API int r_reg_set_profile(struct r_reg_t *reg, const char *profile);
|
|
R_API struct r_reg_item_t *r_reg_get(struct r_reg_t *reg, const char *name, int type);
|
|
R_API struct list_head *r_reg_get_list(struct r_reg_t *reg, int type);
|
|
R_API int r_reg_type_by_name(const char *str);
|
|
|
|
/* value */
|
|
R_API ut64 r_reg_get_value(struct r_reg_t *reg, struct r_reg_item_t *item);
|
|
R_API int r_reg_set_value(struct r_reg_t *reg, struct r_reg_item_t *item, ut64 value);
|
|
R_API float r_reg_get_fvalue(struct r_reg_t *reg, struct r_reg_item_t *item);
|
|
R_API int r_reg_set_fvalue(struct r_reg_t *reg, struct r_reg_item_t *item, float value);
|
|
R_API ut64 r_reg_get_pvalue(struct r_reg_t *reg, struct r_reg_item_t *item, ut64 value, int packidx);
|
|
R_API int r_reg_set_pvalue(struct r_reg_t *reg, struct r_reg_item_t *item, ut64 value, int packidx);
|
|
|
|
/* byte arena */
|
|
R_API ut8* r_reg_get_bytes(struct r_reg_t *reg, int type, int *size);
|
|
R_API int r_reg_set_bytes(struct r_reg_t *reg, int type, const ut8* buf, int len);
|
|
R_API void r_reg_fit_arena(struct r_reg_t *reg);
|
|
|
|
#endif
|