Subversion Repositories HelenOS-historic

Rev

Rev 208 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 208 Rev 216
1
#
1
#
2
# Copyright (C) 2005 Jakub Jermar
2
# Copyright (C) 2005 Jakub Jermar
3
# All rights reserved.
3
# All rights reserved.
4
#
4
#
5
# Redistribution and use in source and binary forms, with or without
5
# Redistribution and use in source and binary forms, with or without
6
# modification, are permitted provided that the following conditions
6
# modification, are permitted provided that the following conditions
7
# are met:
7
# are met:
8
#
8
#
9
# - Redistributions of source code must retain the above copyright
9
# - Redistributions of source code must retain the above copyright
10
#   notice, this list of conditions and the following disclaimer.
10
#   notice, this list of conditions and the following disclaimer.
11
# - Redistributions in binary form must reproduce the above copyright
11
# - Redistributions in binary form must reproduce the above copyright
12
#   notice, this list of conditions and the following disclaimer in the
12
#   notice, this list of conditions and the following disclaimer in the
13
#   documentation and/or other materials provided with the distribution.
13
#   documentation and/or other materials provided with the distribution.
14
# - The name of the author may not be used to endorse or promote products
14
# - The name of the author may not be used to endorse or promote products
15
#   derived from this software without specific prior written permission.
15
#   derived from this software without specific prior written permission.
16
#
16
#
17
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
#
27
#
28
 
28
 
29
.text
29
.text
30
 
30
 
31
.global userspace
31
.global userspace
32
.global before_thread_runs_arch
32
.global before_thread_runs_arch
33
.global panic_printf
33
.global panic_printf
34
.global cpu_identify
34
.global cpu_identify
35
.global cpu_arch_init
35
.global cpu_arch_init
36
.global cpu_sleep
36
.global cpu_sleep
37
.global cpu_print_report
37
.global cpu_print_report
38
.global get_memory_size
38
.global get_memory_size
39
.global arch_late_init
39
.global arch_late_init
40
.global calibrate_delay_loop
40
.global calibrate_delay_loop
41
.global cpu_halt
41
.global cpu_halt
42
.global page_arch_init
42
.global page_arch_init
43
.global frame_arch_init
43
.global frame_arch_init
44
.global dummy
44
.global dummy
45
.global trap_register
-
 
46
.global trap_virtual_eoi
-
 
47
.global trap_virtual_enable_irqs
-
 
48
.global rdtsc
45
.global rdtsc
49
.global trap_virtual_disable_irqs
-
 
50
.global enable_irqs_function
-
 
51
.global disable_irqs_function
-
 
52
.global eoi_function
46
.global reset_TS_flag
53
.global syscall
47
.global fpu_init
54
	
48
	
55
.global null_interrupt
-
 
56
.global interrupt_handler_size
49
.global interrupt_handler_size
57
.global gp_fault
-
 
58
.global nm_fault
-
 
59
.global ss_fault
-
 
60
.global interrupt_handlers
50
.global interrupt_handlers
61
.global memcpy
-
 
62
 
51
 
63
null_interrupt:
-
 
64
interrupt_handler_size:
52
interrupt_handler_size:
65
interrupt_handlers:	
53
interrupt_handlers:	
66
gp_fault:
-
 
67
nm_fault:
-
 
68
ss_fault:	
-
 
69
eoi_function:
-
 
70
syscall:	
-
 
71
enable_irqs_function:
-
 
72
disable_irqs_function:	
-
 
73
rdtsc:
54
rdtsc:
74
trap_virtual_eoi:
-
 
75
trap_virtual_enable_irqs:
-
 
76
trap_virtual_disable_irqs:	
-
 
77
trap_register:	
-
 
78
before_thread_runs_arch:
55
before_thread_runs_arch:
79
userspace:
56
userspace:
80
calibrate_delay_loop:
57
calibrate_delay_loop:
81
panic_printf:
58
panic_printf:
82
cpu_identify:
59
cpu_identify:
83
cpu_arch_init:
60
cpu_arch_init:
84
cpu_sleep:
61
cpu_sleep:
85
cpu_print_report:
62
cpu_print_report:
86
get_memory_size:
63
get_memory_size:
87
arch_late_init:
64
arch_late_init:
88
calibrate_delay_loop:
65
calibrate_delay_loop:
89
cpu_halt:
66
cpu_halt:
90
page_arch_init:
67
page_arch_init:
91
frame_arch_init:
68
frame_arch_init:
-
 
69
reset_TS_flag:
92
memcpy:
70
fpu_init:	
93
 
71
	
94
dummy:
72
dummy:
95
0:
73
0:
96
	ret
74
	ret
-
 
75
 
-
 
76
.global memcpy
-
 
77
memcpy:
-
 
78
	jmp _memcpy
97
 
79
 
98
 
80

Generated by GNU Enscript 1.6.6.
99

Generated by GNU Enscript 1.6.6.
81
 
100
 
82
 
101
 
83
 
102
 
-