![Robert Xiao](/assets/img/avatar_default.png)
These APIs take size parameters, which can be used to properly bounds-check the inputs and outputs for various registers. Additionally, all backends now throw UC_ERR_ARG if the input register numbers are invalid. Completes #1831.
27 lines
1.1 KiB
C
27 lines
1.1 KiB
C
/* Unicorn Emulator Engine */
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2015 */
|
|
|
|
#ifndef UC_QEMU_TARGET_PPC_H
|
|
#define UC_QEMU_TARGET_PPC_H
|
|
|
|
// functions to read & write registers
|
|
int ppc_reg_read(struct uc_struct *uc, unsigned int *regs, void *const *vals,
|
|
size_t *sizes, int count);
|
|
int ppc_reg_write(struct uc_struct *uc, unsigned int *regs,
|
|
const void *const *vals, size_t *sizes, int count);
|
|
|
|
int ppc_context_reg_read(struct uc_context *ctx, unsigned int *regs,
|
|
void *const *vals, size_t *sizes, int count);
|
|
int ppc_context_reg_write(struct uc_context *ctx, unsigned int *regs,
|
|
const void *const *vals, size_t *sizes, int count);
|
|
int ppc64_context_reg_read(struct uc_context *ctx, unsigned int *regs,
|
|
void *const *vals, size_t *sizes, int count);
|
|
int ppc64_context_reg_write(struct uc_context *ctx, unsigned int *regs,
|
|
const void *const *vals, size_t *sizes, int count);
|
|
|
|
void ppc_reg_reset(struct uc_struct *uc);
|
|
|
|
void ppc_uc_init(struct uc_struct *uc);
|
|
void ppc64_uc_init(struct uc_struct *uc);
|
|
#endif
|