New feature: registers can be bulk saved/restored in an opaque blob
This commit is contained in:
@ -10,6 +10,8 @@
|
||||
#include "uc_priv.h"
|
||||
|
||||
|
||||
const int SPARC_REGS_STORAGE_SIZE = offsetof(CPUSPARCState, tlb_table);
|
||||
|
||||
static bool sparc_stop_interrupt(int intno)
|
||||
{
|
||||
switch(intno) {
|
||||
|
@ -13,4 +13,7 @@ void sparc_reg_reset(struct uc_struct *uc);
|
||||
void sparc_uc_init(struct uc_struct* uc);
|
||||
void sparc64_uc_init(struct uc_struct* uc);
|
||||
|
||||
extern const int SPARC_REGS_STORAGE_SIZE;
|
||||
extern const int SPARC64_REGS_STORAGE_SIZE;
|
||||
|
||||
#endif
|
||||
|
@ -10,6 +10,8 @@
|
||||
#include "uc_priv.h"
|
||||
|
||||
|
||||
const int SPARC64_REGS_STORAGE_SIZE = offsetof(CPUSPARCState, tlb_table);
|
||||
|
||||
static bool sparc_stop_interrupt(int intno)
|
||||
{
|
||||
switch(intno) {
|
||||
|
Reference in New Issue
Block a user