forked from karottc/linux-0.11
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasm.s
204 lines (185 loc) · 7.86 KB
/
asm.s
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/*
* linux/kernel/asm.s
*
* (C) 1991 Linus Torvalds
*/
/*
* 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.
*/
# 本代码文件主要涉及对Intel保留中断int0-int16的处理(int17-int31留作今后使用)。
# 以下是一些全局函数名的声明,其原型在traps.c中说明。
.globl divide_error,debug,nmi,int3,overflow,bounds,invalid_op
.globl double_fault,coprocessor_segment_overrun
.globl invalid_TSS,segment_not_present,stack_segment
.globl general_protection,coprocessor_error,irq13,reserved
# 下面这段程序处理无出错号的情况。
# int0 - 处理被零除出错的情况。类型:错误(Fault);错误号:无。
# 在执行DIV或IDIV指令时,若除数是0,CPU就会产生这个异常。当EAX(或AX、AL)容纳
# 不了一个合法除操作的结果时也会产生这个异常。标号'_do_divide_error'实际上是C
# 语言函数do_divide_error编译后所产生模块中对应的名称。函数'do_divide_error'在
# traps.c中实现。
divide_error:
pushl $do_divide_error # 首先把将要调用的函数地址入栈
no_error_code: # 这里是五出错号处理的入口处。
xchgl %eax,(%esp) # _do_divide_error的地址→eax,eax被交换入栈
pushl %ebx
pushl %ecx
pushl %edx
pushl %edi
pushl %esi
pushl %ebp
push %ds # !!16位的段寄存器入栈后也要占用4个字节。
push %es
push %fs
pushl $0 # "error code" #将数值0作为出错码入栈
lea 44(%esp),%edx # 取对堆栈中原调用返回地址处堆栈指针位置,并压入堆栈。
pushl %edx
movl $0x10,%edx # 初始化段寄存器ds、es和fs,加载内核数据段选择符
mov %dx,%ds
mov %dx,%es
mov %dx,%fs
# 下行上的 * 号表示调用操作数指定地址处的函数,称为间接调用。这句的含义是调用引起本次
# 异常的C处理函数,例如do_divide_error等。
call *%eax
addl $8,%esp
pop %fs
pop %es
pop %ds
popl %ebp
popl %esi
popl %edi
popl %edx
popl %ecx
popl %ebx
popl %eax # 弹出原来eax中的内容
iret
# int1 -- debug 调试中断入口点。处理过程同上。类型:错误/陷阱(Fault/Trap);错误号:无。
# 当EFLAGS中TF标志置位时而引发的中断。当发现硬件断点(数据:陷阱,代码:错误);或者
# 开启了指令跟踪陷阱或任务交换陷阱,或者调试寄存器访问无效(错误),CPU就会产生该异常。
debug:
pushl $do_int3 # _do_debug C函数指针入栈
jmp no_error_code
# int2 - 非屏蔽中断调用入口点。类型:陷阱;无错误号。
# 这是仅有的被赋予固定中断向量的硬件中断。每当接收到一个NMI信号,CPU内部就会产生中断
# 向量2,并执行标准中断应答周期,因此很节省时间。NMI通常保留为极为重要的硬件事件使用。
# 当CPU收到一个i额NMI信号并且开始执行其中断处理过程时,随后所有的硬件中断都将被忽略。
nmi:
pushl $do_nmi
jmp no_error_code
# int 3 - 断点指令引起的中断的入口点。类型:陷阱;无错误号。
# 由int 3指令引发的中断,与硬件中断无关。该指令通常由调试器插入被调试程序的代码中。
# 处理过程同_debug.
int3:
pushl $do_int3
jmp no_error_code
# int 4 - 溢出出错处理中断入口。类型:陷阱;无错误号。
# EFLAGS 中 OF标志置位时CPU执行INT0指令就会引发该中断。通常用于编译器跟踪算术计算溢出。
overflow:
pushl $do_overflow
jmp no_error_code
# int5 - 边界检查出错中断入口点。类型:错误;无错误号。
# 当操作数在有效范围以外时引发的中断。当BOUND指令测试失败就会产生该中断。BOUND指令有
# 3个操作数,如果第1个不在另外两个之间,就产生异常5.
bounds:
pushl $do_bounds
jmp no_error_code
# int6 - 无效操作指令出错中断入口点。类型:错误;无错误号。
# CPU执行机构检测到一个无效的操作码而引起的中断。
invalid_op:
pushl $do_invalid_op
jmp no_error_code
# int9 - 协处理器段超出出错中断入口点。类型:放弃;无错误号。
# 该异常基本上等同于协处理器 出错保护。因为在浮点指令操作数太大时,我们就有这个机会来
# 加载或保存超出数据段的浮点值。
coprocessor_segment_overrun:
pushl $do_coprocessor_segment_overrun
jmp no_error_code
# int15 - 其他Intel保留中断的入口点。
reserved:
pushl $do_reserved
jmp no_error_code
# int45 - (=0x20+13)Linux设置的数字协处理器硬件中断。
# 当协处理器执行完一个操作时就会发出IRQ13中断信号,以通知CPU操作完成。80387在执行
# 计算时,CPU会等待其操作完成。
irq13:
pushl %eax
xorb %al,%al
outb %al,$0xF0
movb $0x20,%al
outb %al,$0x20 # 向 8259主终端控制芯片发送EOI(中断结束)信号。
jmp 1f # 这两个跳转指令起延时作用。
1: jmp 1f
1: outb %al,$0xA0 # 再向 8259从终端控制芯片发送EOI(中断结束)信号。
popl %eax
jmp coprocessor_error
# 以下中断在调用时CPU会在中断返回地址之后将出错号压入堆栈,因此返回是也需要将
# 出错号弹出。
# int8 - 双出错故障。类型:放弃;有错误码。
# 通常当CPU在调用前一个异常的处理程序而又检测到一个新的异常时,这两个异常会被
# 串行地进行处理,但也会碰到很少的情况,CPU不能进行这样的串行处理操作,此时
# 就会引发该中断。
double_fault:
pushl $do_double_fault # C 函数地址入栈
error_code:
xchgl %eax,4(%esp) # error code <-> %eax 原来地址被保存在堆栈上
xchgl %ebx,(%esp) # &function <-> %ebx 原来地址被保存在堆栈上
pushl %ecx
pushl %edx
pushl %edi
pushl %esi
pushl %ebp
push %ds
push %es
push %fs
pushl %eax # error code # 出错号入栈
lea 44(%esp),%eax # offset # 程序返回地址处堆栈指针位置值入栈
pushl %eax
movl $0x10,%eax # 置内核数据段选择符。
mov %ax,%ds
mov %ax,%es
mov %ax,%fs
call *%ebx # 间接调用,调用相应的C函数,其参数已入栈。
addl $8,%esp # 丢弃入栈的2个用作C函数的参数。
pop %fs
pop %es
pop %ds
popl %ebp
popl %esi
popl %edi
popl %edx
popl %ecx
popl %ebx
popl %eax
iret
# int10 - 无效的任务状态段(TSS).类型:错误;有出错码。
# CPU企图切换到一个进程,而该进程的TSS无效。根据TSS中哪一部分引起了异常,
# 当由于TSS长度超过104字节时,这个异常在当前任务中产生,因而切换被终止。
# 其他问题则会导致在切换后的新任务产生本异常。
invalid_TSS:
pushl $do_invalid_TSS
jmp error_code
# int11 - 段不存在。类型:错误;有出错码。
# 被引用的段不再内存中。段描述符中标志着段不再内存中。
segment_not_present:
pushl $do_segment_not_present
jmp error_code
# int12 - 堆栈段错误。类型:错误;有出错码。
# 指令操作试图超出堆栈段范围,或者堆栈段不再内存中。这是异常11和13的特例。
# 有些操作系统可以利用这个异常来确定什么时候应该为程序分配更多的栈空间。
stack_segment:
pushl $do_stack_segment
jmp error_code
# int13 - 一般保护性出错。类型:错误;有出错码。
# 表明是不属于任何其他类的错误。若一个异常产生时没有对应的处理向量(0 -- 16),
# 通常就会归到此类。
general_protection:
pushl $do_general_protection
jmp error_code
# int7 - 设备不存在(_device_not_available)
# int14 - 页错误(_page_fault)
# int16 - 协处理器错误(_coprocessor_error)
# 时钟中断 int 0x20(_timer_interrupt)
# 系统调用 int 0x80(_system_call)