/* * Cache Management Support Routines for the SPARC */ #include #include "cache_.h" #if defined(HAS_INSTRUCTION_CACHE) void _CPU_cache_invalidate_entire_instruction ( void ) { __asm__ volatile ("flush"); } /* XXX these need to be addressed */ void _CPU_cache_invalidate_instruction_range( const void *i_addr, size_t n_bytes ) { } void _CPU_cache_freeze_instruction ( void ) { } void _CPU_cache_unfreeze_instruction ( void ) { } void _CPU_cache_enable_instruction ( void ) { } void _CPU_cache_disable_instruction ( void ) { } #endif /* end of file */