AMD64 - Sync AMD64 support from Jordan Gordeev's svn repository and
[dragonfly.git] / sys / platform / pc64 / amd64 / swtch.s
1 /*
2  * Copyright (c) 2003,2004,2008 The DragonFly Project.  All rights reserved.
3  * Copyright (c) 2008 Jordan Gordeev.
4  * 
5  * This code is derived from software contributed to The DragonFly Project
6  * by Matthew Dillon <dillon@backplane.com>
7  * 
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  * 3. Neither the name of The DragonFly Project nor the names of its
19  *    contributors may be used to endorse or promote products derived
20  *    from this software without specific, prior written permission.
21  * 
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
26  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
28  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
30  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
31  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  * 
35  * Copyright (c) 1990 The Regents of the University of California.
36  * All rights reserved.
37  *
38  * This code is derived from software contributed to Berkeley by
39  * William Jolitz.
40  *
41  * Redistribution and use in source and binary forms, with or without
42  * modification, are permitted provided that the following conditions
43  * are met:
44  * 1. Redistributions of source code must retain the above copyright
45  *    notice, this list of conditions and the following disclaimer.
46  * 2. Redistributions in binary form must reproduce the above copyright
47  *    notice, this list of conditions and the following disclaimer in the
48  *    documentation and/or other materials provided with the distribution.
49  * 3. All advertising materials mentioning features or use of this software
50  *    must display the following acknowledgement:
51  *      This product includes software developed by the University of
52  *      California, Berkeley and its contributors.
53  * 4. Neither the name of the University nor the names of its contributors
54  *    may be used to endorse or promote products derived from this software
55  *    without specific prior written permission.
56  *
57  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
58  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
59  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
60  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
61  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
62  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
63  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
64  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
65  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
66  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
67  * SUCH DAMAGE.
68  *
69  * $FreeBSD: src/sys/i386/i386/swtch.s,v 1.89.2.10 2003/01/23 03:36:24 ps Exp $
70  * $DragonFly: src/sys/platform/pc64/amd64/swtch.s,v 1.3 2008/08/29 17:07:10 dillon Exp $
71  */
72
73 //#include "use_npx.h"
74
75 #include <sys/rtprio.h>
76
77 #include <machine/asmacros.h>
78 #include <machine/segments.h>
79
80 #include <machine/pmap.h>
81 #if JG
82 #include <machine_base/apic/apicreg.h>
83 #endif
84 #include <machine/lock.h>
85
86 #define CHECKNZ(expr, scratch_reg) \
87         movq expr, scratch_reg; testq scratch_reg, scratch_reg; jnz 7f; int $3; 7:
88
89 #include "assym.s"
90
91 #if defined(SMP)
92 #define MPLOCKED        lock ;
93 #else
94 #define MPLOCKED
95 #endif
96
97         .data
98
99         .globl  panic
100
101 #if defined(SWTCH_OPTIM_STATS)
102         .globl  swtch_optim_stats, tlb_flush_count
103 swtch_optim_stats:      .long   0               /* number of _swtch_optims */
104 tlb_flush_count:        .long   0
105 #endif
106
107         .text
108
109
110 /*
111  * cpu_heavy_switch(struct thread *next_thread)
112  *
113  *      Switch from the current thread to a new thread.  This entry
114  *      is normally called via the thread->td_switch function, and will
115  *      only be called when the current thread is a heavy weight process.
116  *
117  *      Some instructions have been reordered to reduce pipeline stalls.
118  *
119  *      YYY disable interrupts once giant is removed.
120  */
121 ENTRY(cpu_heavy_switch)
122         /*
123          * Save RIP, RSP and callee-saved registers (RBX, RBP, R12-R15).
124          */
125         movq    PCPU(curthread),%rcx
126         /* On top of the stack is the return adress. */
127         movq    (%rsp),%rax                     /* (reorder optimization) */
128         movq    TD_PCB(%rcx),%rdx               /* RDX = PCB */
129         movq    %rax,PCB_RIP(%rdx)              /* return PC may be modified */
130         movq    %rbx,PCB_RBX(%rdx)
131         movq    %rsp,PCB_RSP(%rdx)
132         movq    %rbp,PCB_RBP(%rdx)
133         movq    %r12,PCB_R12(%rdx)
134         movq    %r13,PCB_R13(%rdx)
135         movq    %r14,PCB_R14(%rdx)
136         movq    %r15,PCB_R15(%rdx)
137
138         movq    %rcx,%rbx                       /* RBX = curthread */
139         movq    TD_LWP(%rcx),%rcx
140         movl    PCPU(cpuid), %eax
141         movq    LWP_VMSPACE(%rcx), %rcx         /* RCX = vmspace */
142         MPLOCKED btrl   %eax, VM_PMAP+PM_ACTIVE(%rcx)
143
144         /*
145          * Push the LWKT switch restore function, which resumes a heavy
146          * weight process.  Note that the LWKT switcher is based on
147          * TD_SP, while the heavy weight process switcher is based on
148          * PCB_RSP.  TD_SP is usually two ints pushed relative to
149          * PCB_RSP.  We push the flags for later restore by cpu_heavy_restore.
150          */
151         pushfq
152         movq    $cpu_heavy_restore, %rax
153         pushq   %rax
154         movq    %rsp,TD_SP(%rbx)
155
156 #if JG
157         /*
158          * Save debug regs if necessary
159          */
160         movb    PCB_FLAGS(%edx),%al
161         andb    $PCB_DBREGS,%al
162         jz      1f                              /* no, skip over */
163         movl    %dr7,%eax                       /* yes, do the save */
164         movl    %eax,PCB_DR7(%edx)
165         andl    $0x0000fc00, %eax               /* disable all watchpoints */
166         movl    %eax,%dr7
167         movl    %dr6,%eax
168         movl    %eax,PCB_DR6(%edx)
169         movl    %dr3,%eax
170         movl    %eax,PCB_DR3(%edx)
171         movl    %dr2,%eax
172         movl    %eax,PCB_DR2(%edx)
173         movl    %dr1,%eax
174         movl    %eax,PCB_DR1(%edx)
175         movl    %dr0,%eax
176         movl    %eax,PCB_DR0(%edx)
177 1:
178 #endif
179  
180 #if JG
181 #if NNPX > 0
182         /*
183          * Save the FP state if we have used the FP.  Note that calling
184          * npxsave will NULL out PCPU(npxthread).
185          */
186         cmpl    %ebx,PCPU(npxthread)
187         jne     1f
188         pushl   TD_SAVEFPU(%ebx)
189         call    npxsave                 /* do it in a big C function */
190         addl    $4,%esp                 /* EAX, ECX, EDX trashed */
191 1:
192 #endif
193 #endif  /* NNPX > 0 */
194
195         /*
196          * Switch to the next thread, which was passed as an argument
197          * to cpu_heavy_switch().  The argument is in %rdi.
198          * Set the current thread, load the stack pointer,
199          * and 'ret' into the switch-restore function.
200          *
201          * The switch restore function expects the new thread to be in %rax
202          * and the old one to be in %rbx.
203          *
204          * There is a one-instruction window where curthread is the new
205          * thread but %rsp still points to the old thread's stack, but
206          * we are protected by a critical section so it is ok.
207          */
208         movq    %rdi,%rax               /* RAX = newtd, RBX = oldtd */
209         movq    %rax,PCPU(curthread)
210         movq    TD_SP(%rax),%rsp
211         CHECKNZ((%rsp), %r9)
212         ret
213
214 /*
215  *  cpu_exit_switch(struct thread *next)
216  *
217  *      The switch function is changed to this when a thread is going away
218  *      for good.  We have to ensure that the MMU state is not cached, and
219  *      we don't bother saving the existing thread state before switching.
220  *
221  *      At this point we are in a critical section and this cpu owns the
222  *      thread's token, which serves as an interlock until the switchout is
223  *      complete.
224  */
225 ENTRY(cpu_exit_switch)
226         /*
227          * Get us out of the vmspace
228          */
229 #if JG
230         movq    %cr3,%rax
231         cmpq    %rcx,%rax
232         je      1f
233         /* JG no increment of statistics counters? see cpu_heavy_restore */
234         movq    %rcx,%cr3
235 1:
236 #else
237         movq    IdlePTD, %rcx
238         orq     $(PG_RW|PG_V), %rcx
239         movq    link_pdpe,%r12
240         movq    %rcx, (%r12)
241         movq    %cr3, %rcx
242         movq    %rcx, %cr3
243 #endif
244         movq    PCPU(curthread),%rbx
245
246         /*
247          * If this is a process/lwp, deactivate the pmap after we've
248          * switched it out.
249          */
250         movq    TD_LWP(%rbx),%rcx
251         testq   %rcx,%rcx
252         jz      2f
253         movl    PCPU(cpuid), %eax
254         movq    LWP_VMSPACE(%rcx), %rcx         /* RCX = vmspace */
255         MPLOCKED btrl   %eax, VM_PMAP+PM_ACTIVE(%rcx)
256 2:
257         /*
258          * Switch to the next thread.  RET into the restore function, which
259          * expects the new thread in RAX and the old in RBX.
260          *
261          * There is a one-instruction window where curthread is the new
262          * thread but %rsp still points to the old thread's stack, but
263          * we are protected by a critical section so it is ok.
264          */
265         movq    %rdi,%rax
266         movq    %rax,PCPU(curthread)
267         movq    TD_SP(%rax),%rsp
268         CHECKNZ((%rsp), %r9)
269         ret
270
271 /*
272  * cpu_heavy_restore()  (current thread in %rax on entry)
273  *
274  *      Restore the thread after an LWKT switch.  This entry is normally
275  *      called via the LWKT switch restore function, which was pulled 
276  *      off the thread stack and jumped to.
277  *
278  *      This entry is only called if the thread was previously saved
279  *      using cpu_heavy_switch() (the heavy weight process thread switcher),
280  *      or when a new process is initially scheduled.  The first thing we
281  *      do is clear the TDF_RUNNING bit in the old thread and set it in the
282  *      new thread.
283  *
284  *      NOTE: The lwp may be in any state, not necessarily LSRUN, because
285  *      a preemption switch may interrupt the process and then return via 
286  *      cpu_heavy_restore.
287  *
288  *      YYY theoretically we do not have to restore everything here, a lot
289  *      of this junk can wait until we return to usermode.  But for now
290  *      we restore everything.
291  *
292  *      YYY the PCB crap is really crap, it makes startup a bitch because
293  *      we can't switch away.
294  *
295  *      YYY note: spl check is done in mi_switch when it splx()'s.
296  */
297
298 ENTRY(cpu_heavy_restore)
299         popfq
300         movq    TD_PCB(%rax),%rdx               /* RDX = PCB */
301         movq    TD_LWP(%rax),%rcx
302
303 #if defined(SWTCH_OPTIM_STATS)
304         incl    _swtch_optim_stats
305 #endif
306         /*
307          * Tell the pmap that our cpu is using the VMSPACE now.  We cannot
308          * safely test/reload %cr3 until after we have set the bit in the
309          * pmap (remember, we do not hold the MP lock in the switch code).
310          */
311         movq    LWP_VMSPACE(%rcx), %rcx         /* RCX = vmspace */
312         movl    PCPU(cpuid), %esi
313         MPLOCKED btsl   %esi, VM_PMAP+PM_ACTIVE(%rcx)
314
315         /*
316          * Restore the MMU address space.  If it is the same as the last
317          * thread we don't have to invalidate the tlb (i.e. reload cr3).
318          * YYY which naturally also means that the PM_ACTIVE bit had better
319          * already have been set before we set it above, check? YYY
320          */
321 #if JG
322         movq    %cr3,%rsi
323         movq    PCB_CR3(%rdx),%rcx
324         cmpq    %rsi,%rcx
325         je      4f
326 #if defined(SWTCH_OPTIM_STATS)
327         decl    _swtch_optim_stats
328         incl    _tlb_flush_count
329 #endif
330         movq    %rcx,%cr3
331 4:
332 #else
333         movq    PCB_CR3(%rdx),%rcx
334         orq     $(PG_RW|PG_U|PG_V), %rcx
335         /*XXX*/
336         movq    link_pdpe,%r12
337         movq    %rcx, (%r12)
338         movq    %cr3, %rcx
339         movq    %rcx, %cr3
340 #endif
341         /*
342          * Clear TDF_RUNNING flag in old thread only after cleaning up
343          * %cr3.  The target thread is already protected by being TDF_RUNQ
344          * so setting TDF_RUNNING isn't as big a deal.
345          */
346         andl    $~TDF_RUNNING,TD_FLAGS(%rbx)
347         orl     $TDF_RUNNING,TD_FLAGS(%rax)
348
349         /*
350          * Deal with the PCB extension, restore the private tss
351          */
352         movq    PCB_EXT(%rdx),%rdi      /* check for a PCB extension */
353         /* JG cheaper than "movq $1,%rbx", right? */
354         /* JG what's that magic value $1? */
355         movl    $1,%ebx                 /* maybe mark use of a private tss */
356         testq   %rdi,%rdi
357 #if JG
358         jnz     2f
359 #endif
360
361         /* JG
362          * Going back to the common_tss.  We may need to update TSS_ESP0
363          * which sets the top of the supervisor stack when entering from
364          * usermode.  The PCB is at the top of the stack but we need another
365          * 16 bytes to take vm86 into account.
366          */
367 #if JG
368         leal    -16(%edx),%ebx
369         movl    %ebx, PCPU(common_tss) + TSS_ESP0
370
371         cmpl    $0,PCPU(private_tss)    /* don't have to reload if      */
372         je      3f                      /* already using the common TSS */
373
374         /* JG? */
375         subl    %ebx,%ebx               /* unmark use of private tss */
376
377         /*
378          * Get the address of the common TSS descriptor for the ltr.
379          * There is no way to get the address of a segment-accessed variable
380          * so we store a self-referential pointer at the base of the per-cpu
381          * data area and add the appropriate offset.
382          */
383         /* JG movl? */
384         movq    $gd_common_tssd, %rdi
385         /* JG name for "%gs:0"? */
386         addq    %gs:0, %rdi
387
388         /*
389          * Move the correct TSS descriptor into the GDT slot, then reload
390          * ltr.
391          */
392 2:
393         /* JG */
394         movl    %ebx,PCPU(private_tss)          /* mark/unmark private tss */
395         movq    PCPU(tss_gdt), %rbx             /* entry in GDT */
396         movq    0(%rdi), %rax
397         movq    %rax, 0(%rbx)
398         movl    $GPROC0_SEL*8, %esi             /* GSEL(entry, SEL_KPL) */
399         ltr     %si
400 #endif
401
402 3:
403         /*
404          * Restore the user %gs and %fs
405          */
406         movq    PCB_FSBASE(%rdx),%r9
407         cmpq    PCPU(user_fs),%r9
408         je      4f
409         movq    %rdx,%r10
410         movq    %r9,PCPU(user_fs)
411         movl    $MSR_FSBASE,%ecx
412         movl    PCB_FSBASE(%r10),%eax
413         movl    PCB_FSBASE+4(%r10),%edx
414         wrmsr
415         movq    %r10,%rdx
416 4:
417         movq    PCB_GSBASE(%rdx),%r9
418         cmpq    PCPU(user_gs),%r9
419         je      5f
420         movq    %rdx,%r10
421         movq    %r9,PCPU(user_gs)
422         movl    $MSR_KGSBASE,%ecx       /* later swapgs moves it to GSBASE */
423         movl    PCB_GSBASE(%r10),%eax
424         movl    PCB_GSBASE+4(%r10),%edx
425         wrmsr
426         movq    %r10,%rdx
427 5:
428
429         /*
430          * Restore general registers.
431          */
432         movq    PCB_RBX(%rdx), %rbx
433         movq    PCB_RSP(%rdx), %rsp
434         movq    PCB_RBP(%rdx), %rbp
435         movq    PCB_R12(%rdx), %r12
436         movq    PCB_R13(%rdx), %r13
437         movq    PCB_R14(%rdx), %r14
438         movq    PCB_R15(%rdx), %r15
439         movq    PCB_RIP(%rdx), %rax
440         movq    %rax, (%rsp)
441
442 #if JG
443         /*
444          * Restore the user LDT if we have one
445          */
446         cmpl    $0, PCB_USERLDT(%edx)
447         jnz     1f
448         movl    _default_ldt,%eax
449         cmpl    PCPU(currentldt),%eax
450         je      2f
451         lldt    _default_ldt
452         movl    %eax,PCPU(currentldt)
453         jmp     2f
454 1:      pushl   %edx
455         call    set_user_ldt
456         popl    %edx
457 2:
458 #endif
459 #if JG
460         /*
461          * Restore the user TLS if we have one
462          */
463         pushl   %edx
464         call    set_user_TLS
465         popl    %edx
466 #endif
467
468 #if JG
469         /*
470          * Restore the DEBUG register state if necessary.
471          */
472         movb    PCB_FLAGS(%edx),%al
473         andb    $PCB_DBREGS,%al
474         jz      1f                              /* no, skip over */
475         movl    PCB_DR6(%edx),%eax              /* yes, do the restore */
476         movl    %eax,%dr6
477         movl    PCB_DR3(%edx),%eax
478         movl    %eax,%dr3
479         movl    PCB_DR2(%edx),%eax
480         movl    %eax,%dr2
481         movl    PCB_DR1(%edx),%eax
482         movl    %eax,%dr1
483         movl    PCB_DR0(%edx),%eax
484         movl    %eax,%dr0
485         movl    %dr7,%eax                /* load dr7 so as not to disturb */
486         andl    $0x0000fc00,%eax         /*   reserved bits               */
487         pushl   %ebx
488         movl    PCB_DR7(%edx),%ebx
489         andl    $~0x0000fc00,%ebx
490         orl     %ebx,%eax
491         popl    %ebx
492         movl    %eax,%dr7
493 1:
494 #endif
495
496         CHECKNZ((%rsp), %r9)
497         ret
498
499 /*
500  * savectx(struct pcb *pcb)
501  *
502  * Update pcb, saving current processor state.
503  */
504 ENTRY(savectx)
505         /* fetch PCB */
506         /* JG use %rdi instead of %rcx everywhere? */
507         movq    %rdi,%rcx
508
509         /* caller's return address - child won't execute this routine */
510         movq    (%rsp),%rax
511         movq    %rax,PCB_RIP(%rcx)
512
513         movq    %cr3,%rax
514 #ifndef JG
515         movq    (%rax), %rax
516         movq    $0x000ffffffffff000, %rcx
517         andq    %rcx, %rax
518         movq    (%rax), %rax
519         andq    %rcx, %rax
520 #endif
521         movq    %rax,PCB_CR3(%rcx)
522
523         movq    %rbx,PCB_RBX(%rcx)
524         movq    %rsp,PCB_RSP(%rcx)
525         movq    %rbp,PCB_RBP(%rcx)
526         movq    %r12,PCB_R12(%rcx)
527         movq    %r13,PCB_R13(%rcx)
528         movq    %r14,PCB_R14(%rcx)
529         movq    %r15,PCB_R15(%rcx)
530
531 #if JG
532 #if NNPX > 0
533         /*
534          * If npxthread == NULL, then the npx h/w state is irrelevant and the
535          * state had better already be in the pcb.  This is true for forks
536          * but not for dumps (the old book-keeping with FP flags in the pcb
537          * always lost for dumps because the dump pcb has 0 flags).
538          *
539          * If npxthread != NULL, then we have to save the npx h/w state to
540          * npxthread's pcb and copy it to the requested pcb, or save to the
541          * requested pcb and reload.  Copying is easier because we would
542          * have to handle h/w bugs for reloading.  We used to lose the
543          * parent's npx state for forks by forgetting to reload.
544          */
545         movl    PCPU(npxthread),%eax
546         testl   %eax,%eax
547         je      1f
548
549         pushl   %ecx                    /* target pcb */
550         movl    TD_SAVEFPU(%eax),%eax   /* originating savefpu area */
551         pushl   %eax
552
553         pushl   %eax
554         call    npxsave
555         addl    $4,%esp
556
557         popl    %eax
558         popl    %ecx
559
560         pushl   $PCB_SAVEFPU_SIZE
561         leal    PCB_SAVEFPU(%ecx),%ecx
562         pushl   %ecx
563         pushl   %eax
564         call    bcopy
565         addl    $12,%esp
566 #endif  /* NNPX > 0 */
567
568 1:
569 #endif
570         CHECKNZ((%rsp), %r9)
571         ret
572
573 /*
574  * cpu_idle_restore()   (current thread in %rax on entry) (one-time execution)
575  *
576  *      Don't bother setting up any regs other than %rbp so backtraces
577  *      don't die.  This restore function is used to bootstrap into the
578  *      cpu_idle() LWKT only, after that cpu_lwkt_*() will be used for
579  *      switching.
580  *
581  *      Clear TDF_RUNNING in old thread only after we've cleaned up %cr3.
582  *
583  *      If we are an AP we have to call ap_init() before jumping to
584  *      cpu_idle().  ap_init() will synchronize with the BP and finish
585  *      setting up various ncpu-dependant globaldata fields.  This may
586  *      happen on UP as well as SMP if we happen to be simulating multiple
587  *      cpus.
588  */
589 ENTRY(cpu_idle_restore)
590         /* cli */
591         movq    IdlePTD,%rcx
592         /* JG xor? */
593         movl    $0,%ebp
594         /* JG push RBP? */
595         pushq   $0
596         orq     $(PG_RW|PG_V), %rcx
597         movq    link_pdpe,%r12
598         movq    %rcx, (%r12)
599         movq    %cr3, %rcx
600         movq    %rcx,%cr3
601         andl    $~TDF_RUNNING,TD_FLAGS(%rbx)
602         orl     $TDF_RUNNING,TD_FLAGS(%rax)
603 #ifdef SMP
604         cmpl    $0,PCPU(cpuid)
605         je      1f
606         call    ap_init
607 1:
608 #endif
609         /*
610          * ap_init can decide to enable interrupts early, but otherwise, or if
611          * we are UP, do it here.
612          */
613         sti
614         jmp     cpu_idle
615
616 /*
617  * cpu_kthread_restore() (current thread is %rax on entry) (one-time execution)
618  *
619  *      Don't bother setting up any regs other then %rbp so backtraces
620  *      don't die.  This restore function is used to bootstrap into an
621  *      LWKT based kernel thread only.  cpu_lwkt_switch() will be used
622  *      after this.
623  *
624  *      Since all of our context is on the stack we are reentrant and
625  *      we can release our critical section and enable interrupts early.
626  */
627 ENTRY(cpu_kthread_restore)
628         sti
629         movq    IdlePTD,%rcx
630         movq    TD_PCB(%rax),%rdx
631         /* JG "movq $0, %rbp"? "xorq %rbp, %rbp"? */
632         movl    $0,%ebp
633         orq     $(PG_RW|PG_V), %rcx
634         movq    link_pdpe,%r12
635         movq    %rcx, (%r12)
636         movq    %cr3, %rcx
637         movq    %rcx,%cr3
638         /* rax and rbx come from the switchout code */
639         andl    $~TDF_RUNNING,TD_FLAGS(%rbx)
640         orl     $TDF_RUNNING,TD_FLAGS(%rax)
641         subl    $TDPRI_CRIT,TD_PRI(%rax)
642         movq    PCB_R12(%rdx),%rdi      /* argument to RBX function */
643         movq    PCB_RBX(%rdx),%rax      /* thread function */
644         /* note: top of stack return address inherited by function */
645         CHECKNZ(%rax, %r9)
646         jmp     *%rax
647
648 /*
649  * cpu_lwkt_switch(struct thread *)
650  *
651  *      Standard LWKT switching function.  Only non-scratch registers are
652  *      saved and we don't bother with the MMU state or anything else.
653  *
654  *      This function is always called while in a critical section.
655  *
656  *      There is a one-instruction window where curthread is the new
657  *      thread but %rsp still points to the old thread's stack, but
658  *      we are protected by a critical section so it is ok.
659  *
660  *      YYY BGL, SPL
661  */
662 ENTRY(cpu_lwkt_switch)
663         pushq   %rbp    /* JG note: GDB hacked to locate ebp relative to td_sp */
664         /* JG we've got more registers on AMD64 */
665         pushq   %rbx
666         movq    PCPU(curthread),%rbx
667         pushq   %r12
668         pushq   %r13
669         pushq   %r14
670         pushq   %r15
671         pushfq
672
673 #if JG
674 #if NNPX > 0
675         /*
676          * Save the FP state if we have used the FP.  Note that calling
677          * npxsave will NULL out PCPU(npxthread).
678          *
679          * We have to deal with the FP state for LWKT threads in case they
680          * happen to get preempted or block while doing an optimized
681          * bzero/bcopy/memcpy.
682          */
683         cmpl    %ebx,PCPU(npxthread)
684         jne     1f
685         pushl   TD_SAVEFPU(%ebx)
686         call    npxsave                 /* do it in a big C function */
687         addl    $4,%esp                 /* EAX, ECX, EDX trashed */
688 1:
689 #endif  /* NNPX > 0 */
690 #endif
691
692         movq    %rdi,%rax               /* switch to this thread */
693         pushq   $cpu_lwkt_restore
694         movq    %rsp,TD_SP(%rbx)
695         movq    %rax,PCPU(curthread)
696         movq    TD_SP(%rax),%rsp
697
698         /*
699          * %rax contains new thread, %rbx contains old thread.
700          */
701         CHECKNZ((%rsp), %r9)
702         ret
703
704 /*
705  * cpu_lwkt_restore()   (current thread in %rax on entry)
706  *
707  *      Standard LWKT restore function.  This function is always called
708  *      while in a critical section.
709  *      
710  *      Warning: due to preemption the restore function can be used to 
711  *      'return' to the original thread.  Interrupt disablement must be
712  *      protected through the switch so we cannot run splz here.
713  *
714  *      YYY we theoretically do not need to load KPML4phys into cr3, but if
715  *      so we need a way to detect when the PTD we are using is being 
716  *      deleted due to a process exiting.
717  */
718 ENTRY(cpu_lwkt_restore)
719 #if JG
720         movq    common_lvl4_phys,%rcx   /* YYY borrow but beware desched/cpuchg/exit */
721 #endif
722         movq    IdlePTD, %rcx
723         orq     $(PG_RW|PG_V), %rcx
724         movq    link_pdpe,%r12
725         movq    %rcx, (%r12)
726         movq    %cr3, %rcx
727         movq    %rcx, %cr3
728 #if JG
729         movq    %cr3,%rdx
730         cmpq    %rcx,%rdx
731         je      1f
732         movq    %rcx,%cr3
733 1:
734 #endif
735         andl    $~TDF_RUNNING,TD_FLAGS(%rbx)
736         orl     $TDF_RUNNING,TD_FLAGS(%rax)
737         popfq
738         popq    %r15
739         popq    %r14
740         popq    %r13
741         popq    %r12
742         popq    %rbx
743         popq    %rbp
744         ret