Files
qemu-xteink/tcg/wasm32.h
T
xteink 543cebcb3a WIP: SD write debugging (store-TB TCI + sd-watch) and vvfat/ssi-sd fixes
Diagnostic: routes store-containing TBs through TCI and logs out-of-bounds
guest stores to isolate the SdSpiCard corruption. Also carries the FAT32
vvfat root/cluster fixes and ssi-sd command framing. Squash/split before
upstreaming.
2026-07-20 17:48:33 -04:00

50 lines
801 B
C

#ifndef TCG_WASM32_H
#define TCG_WASM32_H
struct wasmContext {
// 0
CPUArchState *env;
// 4
uint64_t *stack;
// 8
uint32_t *tb_ptr;
// 12
uint32_t *tci_tb_ptr;
// 16
uint32_t do_init;
// 20
uint32_t done_flag;
// 24
uint64_t *stack128;
// 28
uint32_t unwinding;
};
#define ENV_OFF 0
#define STACK_OFF 4
#define TB_PTR_OFF 8
#define HELPER_RET_TB_PTR_OFF 12
#define DO_INIT_OFF 16
#define DONE_FLAG_OFF 20
#define STACK128_OFF 24
#define UNWINDING_OFF 28
void set_done_flag();
void set_unwinding_flag();
int get_core_nums();
void remove_tb(void *tb_ptr);
void flush_tb_instances(void);
void init_wasm32();
extern __thread bool wasm_tci_only_tb;
#define INSTANTIATE_NUM 1500
#define WASM_TCI_ONLY_ENTRY (-2147483647 - 1)
#endif