| 95 | } |
| 96 | |
| 97 | static __inline void |
| 98 | mips_wbflush(void) |
| 99 | { |
| 100 | #if defined(CPU_CNMIPS) |
| 101 | __asm __volatile (".set noreorder\n\t" |
| 102 | "syncw\n\t" |
| 103 | ".set reorder\n" |
| 104 | : : : "memory"); |
| 105 | #else |
| 106 | __asm __volatile ("sync" : : : "memory"); |
| 107 | mips_barrier(); |
| 108 | #endif |
| 109 | } |
| 110 | |
| 111 | static __inline void |
| 112 | breakpoint(void) |
no test coverage detected