Subversion Repositories HelenOS-historic

Compare Revisions

Regard whitespace Rev 1769 → Rev 1768

/kernel/trunk/arch/sparc64/src/sparc64.c
97,3 → 97,4
 
/** @}
*/
 
/kernel/trunk/arch/sparc64/src/console.c
185,3 → 185,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/src/exception.c
48,10 → 48,7
#include <arch/debugger.h>
 
static char * exctable[] = {
"Interrupt",
"TLB Modified",
"TLB Invalid",
"TLB Invalid Store",
"Interrupt","TLB Modified","TLB Invalid","TLB Invalid Store",
"Address Error - load/instr. fetch",
"Address Error - store",
"Bus Error - fetch instruction",
177,3 → 174,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/src/start.S
309,7 → 309,7
sw $sp,EOFFSET_SP($k0)
add $sp, $k0, 0
 
jal tlb_refill
jal tlb_refill /* tlb_refill(register_space) */
add $a0, $sp, 0
 
REGISTERS_LOAD $sp
324,7 → 324,7
add $sp, $k0, 0
 
jal cache_error
add $a0, $sp, 0
nop
 
REGISTERS_LOAD $sp
 
/kernel/trunk/arch/mips32/src/cache.c
33,13 → 33,11
*/
 
#include <arch/cache.h>
#include <arch/exception.h>
#include <typedefs.h>
#include <panic.h>
 
void cache_error(istate_t *istate)
void cache_error(void)
{
panic("cache_error exception (epc=%p)\n", istate->epc);
panic("cache_error exception\n");
}
 
/** @}
/kernel/trunk/arch/mips32/include/context_offset.h
50,3 → 50,7
#define EOFFSET_EPC 0x80
#define EOFFSET_K1 0x84
#define REGISTER_SPACE 136
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/asm/regname.h
96,3 → 96,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/interrupt.h
55,3 → 55,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/exception.h
125,3 → 125,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/fpu_context.h
48,3 → 48,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/byteorder.h
58,3 → 58,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/console.h
42,3 → 42,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/cache.h
35,11 → 35,10
#ifndef __mips32_CACHE_H__
#define __mips32_CACHE_H__
 
#include <typedefs.h>
extern void cache_error(void);
 
extern void cache_error(istate_t *istate);
 
#endif
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/types.h
64,3 → 64,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/stack.h
42,3 → 42,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/elf.h
49,3 → 49,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/memstr.h
46,3 → 46,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/arg.h
58,3 → 58,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/atomic.h
62,7 → 62,7
" move %2, %0\n"
" sc %0, %1\n"
" beq %0, %4, 1b\n" /* if the atomic operation failed, try again */
" nop\n"
/* nop */ /* nop is inserted automatically by compiler */
: "=r" (tmp), "=m" (val->count), "=r" (v)
: "i" (i), "i" (0)
);
74,3 → 74,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/arch.h
39,3 → 39,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/asm.h
70,3 → 70,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/faddr.h
43,3 → 43,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/mm/tlb.h
183,3 → 183,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/debugger.h
67,3 → 67,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/context.h
78,3 → 78,4
 
/** @}
*/
 
/kernel/trunk/arch/mips32/include/debug.h
53,3 → 53,4
 
/** @}
*/