r4k_tlb_glue.s

来自「内核linux2.4.20,可跟rtlinux3.2打补丁 组成实时linux系」· S 代码 · 共 47 行

S
47
字号
/* * This file is subject to the terms and conditions of the GNU General Public * License.  See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 1999 Ralf Baechle * Copyright (C) 1999 Silicon Graphics, Inc. */#define __ASSEMBLY__#include <linux/init.h>#include <asm/mipsregs.h>#include <asm/regdef.h>#include <asm/stackframe.h>	.macro	__BUILD_cli	CLI	.endm	.macro	__BUILD_sti	STI	.endm	.macro	tlb_handler name interruptible writebit	NESTED(__\name, PT_SIZE, sp)	SAVE_ALL#if DEBUG_MIPS64jal dodebug2ld $4, PT_R4(sp)ld $5, PT_R5(sp)ld $6, PT_R6(sp)ld $7, PT_R7(sp)ld $2, PT_R2(sp)#endif	dmfc0	a2, CP0_BADVADDR	__BUILD_\interruptible	li	a1, \writebit	sd	a2, PT_BVADDR(sp)	move	a0, sp	jal	do_page_fault	j	ret_from_sys_call	END(__\name)	.endm	tlb_handler	xtlb_mod sti 1	tlb_handler	xtlb_tlbl sti 0	tlb_handler	xtlb_tlbs sti 1

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?