Changeset 7f1bfce in mainline
- Timestamp:
- 2005-05-17T20:46:19Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6b96ab44
- Parents:
- 87be9cfb
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/include/context.h
r87be9cfb r7f1bfce 32 32 #include <arch/types.h> 33 33 34 34 #define SP_DELTA 8 35 35 36 36 struct context { -
arch/ia32/include/smp/apic.h
r87be9cfb r7f1bfce 130 130 extern void l_apic_debug(void); 131 131 extern void l_apic_timer_interrupt(__u8 n, __u32 stack[]); 132 extern inline__u8 l_apic_id(void);132 extern __u8 l_apic_id(void); 133 133 134 134 extern __u32 io_apic_read(__u8 address); -
arch/ia32/src/smp/apic.c
r87be9cfb r7f1bfce 325 325 } 326 326 327 inline__u8 l_apic_id(void)327 __u8 l_apic_id(void) 328 328 { 329 329 return (l_apic[L_APIC_ID] >> L_APIC_IDShift)&L_APIC_IDMask; -
arch/ia64/include/context.h
r87be9cfb r7f1bfce 31 31 32 32 #include <arch/types.h> 33 34 #define SP_DELTA 16 33 35 34 36 struct context { -
arch/ia64/src/asm.S
r87be9cfb r7f1bfce 39 39 40 40 br _memcopy 41 42 .global memcopy 43 memcopy: 44 br _memcopy -
arch/ia64/src/start.S
r87be9cfb r7f1bfce 35 35 stack0: 36 36 kernel_image_start: 37 .auto 38 # initialize PSR 39 mov psr.l = r0 40 37 41 # initialize register stack 38 alloc r1 = ar.pfs, 0, 0, 0, 0 ;; 42 mov ar.rsc = r0 43 loadrs 39 44 45 .explicit 40 46 # initialize memory stack to some sane value 41 movl r12=stack0 47 movl r12 = stack0 ;; 48 add r12 = - 16, r12 /* allocate a scratch area on the stack */ 42 49 43 50 # initialize gp (Global Pointer) register -
arch/mips/include/context.h
r87be9cfb r7f1bfce 32 32 #include <arch/types.h> 33 33 34 34 #define SP_DELTA 0 35 35 36 36 -
src/main/main.c
r87be9cfb r7f1bfce 95 95 96 96 context_save(&ctx); 97 ctx.sp = config.base + config.kernel_size - 8;97 ctx.sp = config.base + config.kernel_size - SP_DELTA; 98 98 ctx.pc = FADDR(main_bsp_separated_stack); 99 99 context_restore(&ctx); … … 193 193 * switch to this cpu's private stack prior to waking kmp up. 194 194 */ 195 CPU->saved_context.sp = (__address) &CPU->stack[CPU_STACK_SIZE- 8];195 CPU->saved_context.sp = (__address) &CPU->stack[CPU_STACK_SIZE-SP_DELTA]; 196 196 CPU->saved_context.pc = FADDR(main_ap_separated_stack); 197 197 context_restore(&CPU->saved_context); -
src/proc/scheduler.c
r87be9cfb r7f1bfce 233 233 */ 234 234 context_save(&CPU->saved_context); 235 CPU->saved_context.sp = (__address) &CPU->stack[CPU_STACK_SIZE- 8];235 CPU->saved_context.sp = (__address) &CPU->stack[CPU_STACK_SIZE-SP_DELTA]; 236 236 CPU->saved_context.pc = FADDR(scheduler_separated_stack); 237 237 context_restore(&CPU->saved_context); -
src/proc/thread.c
r87be9cfb r7f1bfce 167 167 context_save(&t->saved_context); 168 168 t->saved_context.pc = FADDR(cushion); 169 t->saved_context.sp = (__address) &t->kstack[THREAD_STACK_SIZE- 8];169 t->saved_context.sp = (__address) &t->kstack[THREAD_STACK_SIZE-SP_DELTA]; 170 170 171 171 pri = cpu_priority_high(); -
test/synch/rwlock4/test.c
r87be9cfb r7f1bfce 34 34 #include <arch/types.h> 35 35 #include <arch/context.h> 36 #include <panic.h> 36 37 37 38 #include <synch/waitq.h>
Note:
See TracChangeset
for help on using the changeset viewer.