wut/include/coreinit/context.h

109 lines
2.2 KiB
C
Raw Normal View History

2017-06-02 12:40:41 +02:00
#pragma once
#include <wut.h>
/**
* \defgroup coreinit_context Context
* \ingroup coreinit
*
* @{
*/
2017-06-02 12:40:41 +02:00
#ifdef __cplusplus
extern "C" {
#endif
typedef struct OSContext OSContext;
#define OS_CONTEXT_TAG 0x4F53436F6E747874ull
struct OSContext
{
//! Should always be set to the value OS_CONTEXT_TAG.
uint64_t tag;
uint32_t gpr[32];
uint32_t cr;
uint32_t lr;
uint32_t ctr;
uint32_t xer;
uint32_t srr0;
uint32_t srr1;
2018-06-20 11:31:53 +02:00
WUT_UNKNOWN_BYTES(0x14);
2017-06-02 12:40:41 +02:00
uint32_t fpscr;
double fpr[32];
uint16_t spinLockCount;
uint16_t state;
uint32_t gqr[8];
2018-06-20 11:31:53 +02:00
WUT_UNKNOWN_BYTES(4);
2017-06-02 12:40:41 +02:00
double psf[32];
uint64_t coretime[3];
uint64_t starttime;
uint32_t error;
2018-06-20 11:31:53 +02:00
WUT_UNKNOWN_BYTES(4);
2017-06-02 12:40:41 +02:00
uint32_t pmc1;
uint32_t pmc2;
uint32_t pmc3;
uint32_t pmc4;
uint32_t mmcr0;
uint32_t mmcr1;
};
2018-06-20 11:31:53 +02:00
WUT_CHECK_OFFSET(OSContext, 0x00, tag);
WUT_CHECK_OFFSET(OSContext, 0x08, gpr);
WUT_CHECK_OFFSET(OSContext, 0x88, cr);
WUT_CHECK_OFFSET(OSContext, 0x8c, lr);
WUT_CHECK_OFFSET(OSContext, 0x90, ctr);
WUT_CHECK_OFFSET(OSContext, 0x94, xer);
WUT_CHECK_OFFSET(OSContext, 0x98, srr0);
WUT_CHECK_OFFSET(OSContext, 0x9c, srr1);
WUT_CHECK_OFFSET(OSContext, 0xb4, fpscr);
WUT_CHECK_OFFSET(OSContext, 0xb8, fpr);
WUT_CHECK_OFFSET(OSContext, 0x1b8, spinLockCount);
WUT_CHECK_OFFSET(OSContext, 0x1ba, state);
WUT_CHECK_OFFSET(OSContext, 0x1bc, gqr);
WUT_CHECK_OFFSET(OSContext, 0x1e0, psf);
WUT_CHECK_OFFSET(OSContext, 0x2e0, coretime);
WUT_CHECK_OFFSET(OSContext, 0x2f8, starttime);
WUT_CHECK_OFFSET(OSContext, 0x300, error);
WUT_CHECK_OFFSET(OSContext, 0x308, pmc1);
WUT_CHECK_OFFSET(OSContext, 0x30c, pmc2);
WUT_CHECK_OFFSET(OSContext, 0x310, pmc3);
WUT_CHECK_OFFSET(OSContext, 0x314, pmc4);
WUT_CHECK_OFFSET(OSContext, 0x318, mmcr0);
WUT_CHECK_OFFSET(OSContext, 0x31c, mmcr1);
WUT_CHECK_SIZE(OSContext, 0x320);
2017-06-02 12:40:41 +02:00
2018-06-30 20:56:21 +02:00
void
OSInitContext(OSContext *context,
void *entry,
void *stack);
void
OSDumpContext(OSContext *context);
void
OSLoadContext(OSContext *context);
uint32_t
OSSaveContext(OSContext *context);
void
OSLoadFPUContext(OSContext *context);
void
OSSaveFPUContext(OSContext *context);
OSContext *
OSGetCurrentContext();
void
OSSetCurrentContext(OSContext *context);
void *
OSSwitchStack(void *stack);
2018-06-30 20:56:21 +02:00
2017-06-02 12:40:41 +02:00
#ifdef __cplusplus
}
#endif
/** @} */