Subversion Repositories HelenOS

Rev

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

Rev 206 Rev 208
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
45
.global trap_register
46
.global trap_virtual_eoi
46
.global trap_virtual_eoi
47
.global trap_virtual_enable_irqs
47
.global trap_virtual_enable_irqs
48
.global rdtsc
48
.global rdtsc
49
.global trap_virtual_disable_irqs
49
.global trap_virtual_disable_irqs
50
.global enable_irqs_function
50
.global enable_irqs_function
51
.global disable_irqs_function
51
.global disable_irqs_function
52
.global eoi_function
52
.global eoi_function
53
.global syscall
53
.global syscall
54
	
54
	
55
.global null_interrupt
55
.global null_interrupt
56
.global interrupt_handler_size
56
.global interrupt_handler_size
57
.global gp_fault
57
.global gp_fault
58
.global nm_fault
58
.global nm_fault
59
.global ss_fault
59
.global ss_fault
60
.global tss_p
-
 
61
.global interrupt_handlers
60
.global interrupt_handlers
62
.global memcpy
61
.global memcpy
63
 
62
 
64
null_interrupt:
63
null_interrupt:
65
interrupt_handler_size:
64
interrupt_handler_size:
66
interrupt_handlers:	
65
interrupt_handlers:	
67
gp_fault:
66
gp_fault:
68
nm_fault:
67
nm_fault:
69
ss_fault:
68
ss_fault:	
70
tss_p:	
-
 
71
	
-
 
72
eoi_function:
69
eoi_function:
73
syscall:	
70
syscall:	
74
enable_irqs_function:
71
enable_irqs_function:
75
disable_irqs_function:	
72
disable_irqs_function:	
76
rdtsc:
73
rdtsc:
77
trap_virtual_eoi:
74
trap_virtual_eoi:
78
trap_virtual_enable_irqs:
75
trap_virtual_enable_irqs:
79
trap_virtual_disable_irqs:	
76
trap_virtual_disable_irqs:	
80
trap_register:	
77
trap_register:	
81
before_thread_runs_arch:
78
before_thread_runs_arch:
82
userspace:
79
userspace:
83
calibrate_delay_loop:
80
calibrate_delay_loop:
84
panic_printf:
81
panic_printf:
85
cpu_identify:
82
cpu_identify:
86
cpu_arch_init:
83
cpu_arch_init:
87
cpu_sleep:
84
cpu_sleep:
88
cpu_print_report:
85
cpu_print_report:
89
get_memory_size:
86
get_memory_size:
90
arch_late_init:
87
arch_late_init:
91
calibrate_delay_loop:
88
calibrate_delay_loop:
92
cpu_halt:
89
cpu_halt:
93
page_arch_init:
90
page_arch_init:
94
frame_arch_init:
91
frame_arch_init:
95
memcpy:
92
memcpy:
96
 
93
 
97
dummy:
94
dummy:
98
0:
95
0:
99
	ret
96
	ret
100
 
97
 
101
 
98
 
102

Generated by GNU Enscript 1.6.6.
99

Generated by GNU Enscript 1.6.6.
103
 
100
 
104
 
101
 
105
 
102