Changes in / [eacb957:c26eb39] in mainline
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/context.S
reacb957 rc26eb39 28 28 29 29 #include <arch/context_offset.h> 30 #include <arch/arch.h> 31 #include <arch/regdef.h> 30 31 /** 32 * Both context_save_arch() and context_restore_arch() are 33 * leaf-optimized procedures. This kind of optimization 34 * is very important and prevents any implicit window 35 * spill/fill/clean traps in these very core kernel 36 * functions. 37 */ 38 39 #include <arch/context_offset.h> 32 40 33 41 .text … … 36 44 .global context_restore_arch 37 45 38 /*39 * context_save_arch() is required not to create its own stack frame. See the40 * generic context.h for explanation.41 */42 46 context_save_arch: 43 #44 # Force all our active register windows to memory so that we can find45 # them there even if e.g. the thread is migrated to another processor.46 #47 flushw48 49 47 CONTEXT_SAVE_ARCH_CORE %o0 50 48 retl … … 53 51 context_restore_arch: 54 52 # 55 # Forget all previous windows, they are not going to be needed again. 56 # Enforce a window fill on the next RESTORE instruction by setting 57 # CANRESTORE to zero and other window configuration registers 58 # accordingly. Note that the same can be achieved by executing the 59 # FLUSHW instruction, but since we don't need to remember the previous 60 # windows, we do the former and save thus some unnecessary window 61 # spills. 53 # Flush all active windows. 54 # This is essential, because CONTEXT_LOAD overwrites 55 # %sp of CWP - 1 with the value written to %fp of CWP. 56 # Flushing all active windows mitigates this problem 57 # as CWP - 1 becomes the overlap window. 62 58 # 63 rdpr %pstate, %l0 64 andn %l0, PSTATE_IE_BIT, %l1 65 wrpr %l1, %pstate 66 wrpr %g0, 0, %canrestore 67 wrpr %g0, 0, %otherwin 68 wrpr %g0, NWINDOWS - 2, %cansave 69 wrpr %l0, %pstate 70 59 flushw 60 71 61 CONTEXT_RESTORE_ARCH_CORE %o0 72 62 retl -
kernel/arch/sparc64/src/trap/trap_table.S
reacb957 rc26eb39 652 652 * spilled to kernel memory (i.e. register window buffer). Moreover, 653 653 * if the scheduler was called in the meantime, all valid windows 654 * belonging to other threads were spilled by context_ save().654 * belonging to other threads were spilled by context_restore(). 655 655 * If OTHERWIN is non-zero, then some userspace windows are still 656 656 * valid. Others might have been spilled. However, the CWP pointer -
uspace/lib/libc/arch/sparc64/src/fibril.S
reacb957 rc26eb39 35 35 36 36 context_save: 37 #38 # We rely on the kernel to flush our active register windows to memory39 # should a thread switch occur.40 #41 37 CONTEXT_SAVE_ARCH_CORE %o0 42 38 retl … … 46 42 # 47 43 # Flush all active windows. 48 # This is essential, because CONTEXT_RESTORE_ARCH_CORE overwrites %sp of 49 # CWP - 1 with the value written to %fp of CWP. Flushing all active 50 # windows mitigates this problem as CWP - 1 becomes the overlap window. 51 # 44 # This is essential, because CONTEXT_LOAD overwrites 45 # %sp of CWP - 1 with the value written to %fp of CWP. 46 # Flushing all active windows mitigates this problem 47 # as CWP - 1 becomes the overlap window. 48 # 52 49 flushw 53 50
Note:
See TracChangeset
for help on using the changeset viewer.