📄 asm.s
字号:
;/* passed;* linux/kernel/asm.s;*;* (C) 1991 Linus Torvalds;*/.386p
.model flat
;/*;* asm.s contains the low-level code for most hardware faults.;* page_exception is handled by the mm, so that isn't here. This;* file also handles (hopefully) fpu-exceptions due to TS-bit, as;* the fpu must be properly saved/resored. This hasn't been tested.;* eax = -1;* 系统中断调用(eax=调用号);* ebx,ecx,edx 中放有调用参数;* 调用号超范围?;* 中断返回;* 寄存器入栈;* ds,es 指向内核代码段;* fs 指向局部数据段(用户数据);* 调用对应的C 处理函数;* 任务状态?;* 调用schedule() 时间片=0?;* 初始任务?;* 弹出入栈的寄存器;* 超级用户程序?;* 用户堆栈?;* 根据进程信号位图取进程的最;* 小信号量,调用do signal();*/;/*;* asm.s 程序中包括大部分的硬件故障(或出错)处理的底层次代码。页异常是由内存管理程序;* mm 处理的,所以不在这里。此程序还处理(希望是这样)由于TS-位而造成的fpu 异常,;* 因为fpu 必须正确地进行保存/恢复处理,这些还没有测试过。;*/;// 本代码文件主要涉及对Intel 保留的中断int0--int16 的处理(int17-int31 留作今后使用)。;// 以下是一些全局函数名的声明,其原形在traps.c 中说明。
extrn _do_divide_error:far, _do_int3:far, _do_nmi:far, _do_overflow:far
extrn _do_bounds:far, _do_invalid_op:far, _do_coprocessor_segment_overrun:far
extrn _do_reserved:far, _coprocessor_error:far ptr, _do_double_fault:far
extrn _do_invalid_TSS:far, _do_segment_not_present:far
extrn _do_stack_segment:far, _do_general_protection:far
public _divide_error,_debug,_nmi,_int3,_overflow,_bounds,_invalid_oppublic _double_fault,_coprocessor_segment_overrunpublic _invalid_TSS,_segment_not_present,_stack_segmentpublic _general_protection,_irq13,_reserved;// int0 -- (下面这段代码的含义参见图4.1(a))。;// 下面是被零除出错(divide_error)处理代码。标号'_divide_error'实际上是C 语言函;// 数divide_error()编译后所生成模块中对应的名称。'_do_divide_error'函数在traps.c 中。
.code
_divide_error: push dword ptr _do_divide_error ;// 首先把将要调用的函数地址入栈。这段程序的出错号为0。no_error_code: ;// 这里是无出错号处理的入口处,见下面第55 行等。 xchg [esp],eax ;// _do_divide_error 的地址 -> eax,eax 被交换入栈。 push ebx push ecx push edx push edi push esi push ebp push ds ;// !!16 位的段寄存器入栈后也要占用4 个字节。 push es push fs push 0 ;// "error code" ;// 将出错码入栈。 lea edx,[esp+44] ;// 取原调用返回地址处堆栈指针位置,并压入堆栈。 push edx mov edx,10h ;// 内核代码数据段选择符。 mov ds,dx mov es,dx mov fs,dx call eax ;// 调用C 函数do_divide_error()。 add esp,8 ;// 让堆栈指针重新指向寄存器fs 入栈处。 pop fs pop es pop ds pop ebp pop esi pop edi pop edx pop ecx pop ebx pop eax ;// 弹出原来eax 中的内容。 iretd;// int1 -- debug 调试中断入口点。处理过程同上。_debug: push _do_int3 ;// _do_debug C 函数指针入栈。以下同。 jmp no_error_code;// int2 -- 非屏蔽中断调用入口点。_nmi: push _do_nmi jmp no_error_code;// int3 -- 同_debug。_int3: push _do_int3 jmp no_error_code;// int4 -- 溢出出错处理中断入口点。_overflow: push _do_overflow jmp no_error_code;// int5 -- 边界检查出错中断入口点。_bounds: push _do_bounds jmp no_error_code;// int6 -- 无效操作指令出错中断入口点。_invalid_op: push _do_invalid_op jmp no_error_code;// int9 -- 协处理器段超出出错中断入口点。_coprocessor_segment_overrun: push _do_coprocessor_segment_overrun jmp no_error_code;// int15 – 保留。_reserved: push _do_reserved jmp no_error_code;// int45 -- ( = 0x20 + 13 ) 数学协处理器(Coprocessor)发出的中断。;// 当协处理器执行完一个操作时就会发出IRQ13 中断信号,以通知CPU 操作完成。_irq13: push eax xor al,al ;// 80387 在执行计算时,CPU 会等待其操作的完成。 out 0F0h,al ;// 通过写0xF0 端口,本中断将消除CPU 的BUSY 延续信号,并重新;// 激活80387 的处理器扩展请求引脚PEREQ。该操作主要是为了确保;// 在继续执行80387 的任何指令之前,响应本中断。 mov al,20h out 20h,al ;// 向8259 主中断控制芯片发送EOI(中断结束)信号。 jmp l1 ;// 这两个跳转指令起延时作用。l1: jmp l2l2: out 0A0h,al ;// 再向8259 从中断控制芯片发送EOI(中断结束)信号。 pop eax jmp _coprocessor_error ;// _coprocessor_error 原来在本文件中,现在已经放到 ;// (kernel/system_call.s, 131);// 以下中断在调用时会在中断返回地址之后将出错号压入堆栈,因此返回时也需要将出错号弹出。;// int8 -- 双出错故障。(下面这段代码的含义参见图4.1(b))。_double_fault: push _do_double_fault ;// C 函数地址入栈。error_code: xchg [esp+4],eax ;// error code <-> %eax,eax 原来的值被保存在堆栈上。 xchg [esp],ebx ;// &function <-> %ebx,ebx 原来的值被保存在堆栈上。 push ecx push edx push edi push esi push ebp push ds push es push fs push eax ;// error code ;// 出错号入栈。 lea eax,[esp+44] ;// offset ;// 程序返回地址处堆栈指针位置值入栈。 push eax mov eax,10h ;// 置内核数据段选择符。 mov ds,ax mov es,ax mov fs,ax call ebx ;// 调用相应的C 函数,其参数已入栈。 add esp,8 ;// 堆栈指针重新指向栈中放置fs 内容的位置。 pop fs pop es pop ds pop ebp pop esi pop edi pop edx pop ecx pop ebx pop eax iretd;// int10 -- 无效的任务状态段(TSS)。_invalid_TSS: push _do_invalid_TSS jmp error_code;// int11 -- 段不存在。_segment_not_present: push _do_segment_not_present jmp error_code;// int12 -- 堆栈段错误。_stack_segment: push _do_stack_segment jmp error_code;// int13 -- 一般保护性出错。_general_protection: push _do_general_protection jmp error_code;// int7 -- 设备不存在(_device_not_available)在(kernel/system_call.s,148);// int14 -- 页错误(_page_fault)在(mm/page.s,14);// int16 -- 协处理器错误(_coprocessor_error)在(kernel/system_call.s,131);// 时钟中断int 0x20 (_timer_interrupt)在(kernel/system_call.s,176);// 系统调用int 0x80 (_system_call)在(kernel/system_call.s,80)
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -