mirror of
https://github.com/libretro/RetroArch
synced 2025-04-15 14:42:27 +00:00
71 lines
1.1 KiB
C
71 lines
1.1 KiB
C
#pragma once
|
|
#include <wut.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/**
|
|
* Equivalent to dcbi instruction.
|
|
*/
|
|
void DCInvalidateRange(void *addr,
|
|
uint32_t size);
|
|
|
|
|
|
/**
|
|
* Equivalent to dcbf, sync, eieio.
|
|
*/
|
|
void DCFlushRange(void *addr,
|
|
uint32_t size);
|
|
|
|
|
|
/**
|
|
* Equivalent to dcbst, sync, eieio.
|
|
*/
|
|
void DCStoreRange(void *addr,
|
|
uint32_t size);
|
|
|
|
|
|
/**
|
|
* Equivalent to dcbf.
|
|
*
|
|
* Does not perform sync, eieio like DCFlushRange.
|
|
*/
|
|
void DCFlushRangeNoSync(void *addr,
|
|
uint32_t size);
|
|
|
|
|
|
/**
|
|
* Equivalent to dcbst.
|
|
*
|
|
* Does not perform sync, eieio like DCStoreRange.
|
|
*/
|
|
void DCStoreRangeNoSync(void *addr,
|
|
uint32_t size);
|
|
|
|
|
|
/**
|
|
* Equivalent to dcbz instruction.
|
|
*/
|
|
void DCZeroRange(void *addr,
|
|
uint32_t size);
|
|
|
|
|
|
/**
|
|
* Equivalent to dcbt instruction.
|
|
*/
|
|
void DCTouchRange(void *addr,
|
|
uint32_t size);
|
|
|
|
|
|
/**
|
|
* Equivalent to icbi instruction.
|
|
*/
|
|
void ICInvalidateRange(void *addr,
|
|
uint32_t size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|