SSBM Decomp
Loading...
Searching...
No Matches
placeholder.h File Reference
#include <m2c_macros.h>

Go to the source code of this file.

Macros

#define __frsqrte(x)
#define sqrtf__Ff(x)
#define sqrtf_accurate(x)
#define __fabs(f)
#define UNK_T   void*
#define UNK_RET   void
#define UNK_PARAMS   void
#define UNK_SIZE_ARRAY   [0]
#define U32_TO_F32   4503599627370496.0
#define S32_TO_F32   4503601774854144.0
#define PAD_STACK(bytes)
#define FORCE_PAD_STACK(bytes)
#define FORCE_PAD_STACK_4
#define FORCE_PAD_STACK_8
#define FORCE_PAD_STACK_16
#define FORCE_PAD_STACK_32

Typedefs

typedef void(* jmp_t) (void)
 A label in a jump table.
typedef jmp_t jtbl_t[]
 A jump table.

Macro Definition Documentation

◆ __frsqrte

#define __frsqrte ( x)
Value:
sqrt(x)
float sqrt(double)

◆ sqrtf__Ff

#define sqrtf__Ff ( x)
Value:
float sqrtf(float)
Definition math_ppc.h:11

◆ sqrtf_accurate

#define sqrtf_accurate ( x)
Value:

◆ __fabs

#define __fabs ( f)
Value:
float fabsf(float)

◆ UNK_T

#define UNK_T   void*

◆ UNK_RET

#define UNK_RET   void

◆ UNK_PARAMS

#define UNK_PARAMS   void

◆ UNK_SIZE_ARRAY

#define UNK_SIZE_ARRAY   [0]

◆ U32_TO_F32

#define U32_TO_F32   4503599627370496.0

◆ S32_TO_F32

#define S32_TO_F32   4503601774854144.0

◆ PAD_STACK

#define PAD_STACK ( bytes)
Value:
do { \
UNUSED unsigned char _[(bytes)]; \
} while (0)
#define UNUSED
Definition platform.h:52

◆ FORCE_PAD_STACK

#define FORCE_PAD_STACK ( bytes)
Value:
do { \
UNUSED unsigned char _[(bytes)] = { 0 }; \
} while (0)
Warning
Creates fake .rodata entries!

◆ FORCE_PAD_STACK_4

#define FORCE_PAD_STACK_4
Value:
do { \
UNUSED u32 _0 = 0; \
} while (0)
unsigned long u32
Definition types.h:9

◆ FORCE_PAD_STACK_8

#define FORCE_PAD_STACK_8
Value:
do { \
UNUSED u64 _0 = 0; \
} while (0)
unsigned long long int u64
Definition types.h:11

◆ FORCE_PAD_STACK_16

#define FORCE_PAD_STACK_16
Value:
do { \
UNUSED u64 _0 = 0, _1 = 0; \
} while (0)

◆ FORCE_PAD_STACK_32

#define FORCE_PAD_STACK_32
Value:
do { \
UNUSED u64 _0 = 0, _1 = 0, _2 = 0, _3 = 0; \
} while (0)

Typedef Documentation

◆ jmp_t

typedef void(* jmp_t) (void)

A label in a jump table.

◆ jtbl_t

typedef jmp_t jtbl_t[]

A jump table.