summaryrefslogtreecommitdiffstats
path: root/sys/i386
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2002-03-28 15:14:23 +0000
committerjhb <jhb@FreeBSD.org>2002-03-28 15:14:23 +0000
commitd8b2f99c44231f0d48953e564525c765ca4ab203 (patch)
treecb6864124845be696d160517f48484d96c6618c0 /sys/i386
parentac4c0188375e4d8d368abcb69577b7344aec7a6f (diff)
downloadFreeBSD-src-d8b2f99c44231f0d48953e564525c765ca4ab203.zip
FreeBSD-src-d8b2f99c44231f0d48953e564525c765ca4ab203.tar.gz
GC #if 0'd assembly mutex micro operations. If someone wants to bring
these back later then can get them from the attic. Also, GC, some stale macros to acquire and release sleep mutexes in assembly.
Diffstat (limited to 'sys/i386')
-rw-r--r--sys/i386/include/mutex.h208
1 files changed, 0 insertions, 208 deletions
diff --git a/sys/i386/include/mutex.h b/sys/i386/include/mutex.h
index 3ed4daf..87d47e5 100644
--- a/sys/i386/include/mutex.h
+++ b/sys/i386/include/mutex.h
@@ -39,193 +39,6 @@
/* Global locks */
extern struct mtx clock_lock;
-/*
- * Assembly macros (for internal use only)
- *------------------------------------------------------------------------------
- */
-#define _V(x) __STRING(x)
-
-#if 0
-/* #ifndef I386_CPU */
-
-/*
- * For 486 and newer processors.
- */
-
-/* Get a sleep lock, deal with recursion inline. */
-#define _getlock_sleep(mtxp, tid, type) ({ \
- int _res = MTX_UNOWNED; \
- \
- __asm __volatile ( \
-" " __XSTRING(MPLOCKED) "" \
-" cmpxchgl %3,%1;" /* Try */ \
-" jz 1f;" /* Got it */ \
-" andl $" _V(MTX_FLAGMASK) ",%0;" /* turn off spec bits */ \
-" cmpl %0,%3;" /* already have it? */ \
-" je 2f;" /* yes, recurse */ \
-" pushl %4;" \
-" pushl %5;" \
-" call mtx_enter_hard;" \
-" addl $8,%%esp;" \
-" jmp 1f;" \
-"2:" \
-" " __XSTRING(MPLOCKED) "" \
-" orl $" _V(MTX_RECURSE) ",%1;" \
-" incl %2;" \
-"1:" \
-"# getlock_sleep" \
- : "+a" (_res), /* 0 */ \
- "+m" (mtxp->mtx_lock), /* 1 */ \
- "+m" (mtxp->mtx_recurse) /* 2 */ \
- : "r" (tid), /* 3 (input) */ \
- "gi" (type), /* 4 */ \
- "g" (mtxp) /* 5 */ \
- : "cc", "memory", "ecx", "edx" /* used */ ); \
-})
-
-/* Get a spin lock, handle recursion inline (as the less common case) */
-#define _getlock_spin_block(mtxp, tid, type) ({ \
- int _res = MTX_UNOWNED; \
- \
- __asm __volatile ( \
-" pushfl;" \
-" cli;" \
-" " __XSTRING(MPLOCKED) "" \
-" cmpxchgl %3,%1;" /* Try */ \
-" jz 2f;" /* got it */ \
-" pushl %4;" \
-" pushl %5;" \
-" call mtx_enter_hard;" /* mtx_enter_hard(mtxp, type, oflags) */ \
-" addl $12,%%esp;" \
-" jmp 1f;" \
-"2: popl %2;" /* save flags */ \
-"1:" \
-"# getlock_spin_block" \
- : "+a" (_res), /* 0 */ \
- "+m" (mtxp->mtx_lock), /* 1 */ \
- "=m" (mtxp->mtx_savecrit) /* 2 */ \
- : "r" (tid), /* 3 (input) */ \
- "gi" (type), /* 4 */ \
- "g" (mtxp) /* 5 */ \
- : "cc", "memory", "ecx", "edx" /* used */ ); \
-})
-
-/*
- * Get a lock without any recursion handling. Calls the hard enter function if
- * we can't get it inline.
- */
-#define _getlock_norecurse(mtxp, tid, type) ({ \
- int _res = MTX_UNOWNED; \
- \
- __asm __volatile ( \
-" " __XSTRING(MPLOCKED) "" \
-" cmpxchgl %2,%1;" /* Try */ \
-" jz 1f;" /* got it */ \
-" pushl %3;" \
-" pushl %4;" \
-" call mtx_enter_hard;" /* mtx_enter_hard(mtxp, type) */ \
-" addl $8,%%esp;" \
-"1:" \
-"# getlock_norecurse" \
- : "+a" (_res), /* 0 */ \
- "+m" (mtxp->mtx_lock) /* 1 */ \
- : "r" (tid), /* 2 (input) */ \
- "gi" (type), /* 3 */ \
- "g" (mtxp) /* 4 */ \
- : "cc", "memory", "ecx", "edx" /* used */ ); \
-})
-
-/*
- * Release a sleep lock assuming we haven't recursed on it, recursion is handled
- * in the hard function.
- */
-#define _exitlock_norecurse(mtxp, tid, type) ({ \
- int _tid = (int)(tid); \
- \
- __asm __volatile ( \
-" " __XSTRING(MPLOCKED) "" \
-" cmpxchgl %4,%0;" /* try easy rel */ \
-" jz 1f;" /* released! */ \
-" pushl %2;" \
-" pushl %3;" \
-" call mtx_exit_hard;" \
-" addl $8,%%esp;" \
-"1:" \
-"# exitlock_norecurse" \
- : "+m" (mtxp->mtx_lock), /* 0 */ \
- "+a" (_tid) /* 1 */ \
- : "gi" (type), /* 2 (input) */ \
- "g" (mtxp), /* 3 */ \
- "r" (MTX_UNOWNED) /* 4 */ \
- : "cc", "memory", "ecx", "edx" /* used */ ); \
-})
-
-/*
- * Release a sleep lock when its likely we recursed (the code to
- * deal with simple recursion is inline).
- */
-#define _exitlock(mtxp, tid, type) ({ \
- int _tid = (int)(tid); \
- \
- __asm __volatile ( \
-" " __XSTRING(MPLOCKED) "" \
-" cmpxchgl %5,%0;" /* try easy rel */ \
-" jz 1f;" /* released! */ \
-" testl $" _V(MTX_RECURSE) ",%%eax;" /* recursed? */ \
-" jnz 3f;" /* handle recursion */ \
- /* Lock not recursed and contested: do the hard way */ \
-" pushl %3;" \
-" pushl %4;" \
-" call mtx_exit_hard;" /* mtx_exit_hard(mtxp,type) */ \
-" addl $8,%%esp;" \
-" jmp 1f;" \
- /* lock recursed, lower recursion level */ \
-"3: decl %1;" /* one less level */ \
-" jnz 1f;" /* still recursed, done */ \
-" lock; andl $~" _V(MTX_RECURSE) ",%0;" /* turn off recurse flag */ \
-"1:" \
-"# exitlock" \
- : "+m" (mtxp->mtx_lock), /* 0 */ \
- "+m" (mtxp->mtx_recurse), /* 1 */ \
- "+a" (_tid) /* 2 */ \
- : "gi" (type), /* 3 (input) */ \
- "g" (mtxp), /* 4 */ \
- "r" (MTX_UNOWNED) /* 5 */ \
- : "cc", "memory", "ecx", "edx" /* used */ ); \
-})
-
-/*
- * Release a spin lock (with possible recursion).
- *
- * We use xchgl to clear lock (instead of simple store) to flush posting
- * buffers and make the change visible to other CPU's.
- */
-#define _exitlock_spin(mtxp) ({ \
- int _res; \
- \
- __asm __volatile ( \
-" movl %1,%2;" \
-" decl %2;" \
-" js 1f;" \
-" movl %2,%1;" \
-" jmp 2f;" \
-"1: movl $ " _V(MTX_UNOWNED) ",%2;" \
-" pushl %3;" \
-" xchgl %2,%0;" \
-" popfl;" \
-"2:" \
-"# exitlock_spin" \
- : "+m" (mtxp->mtx_lock), /* 0 */ \
- "+m" (mtxp->mtx_recurse), /* 1 */ \
- "=r" (_res) /* 2 */ \
- : "g" (mtxp->mtx_savecrit) /* 3 */ \
- : "cc", "memory", "ecx" /* used */ ); \
-})
-
-#endif /* I386_CPU */
-
-#undef _V
-
#endif /* _KERNEL */
#else /* !LOCORE */
@@ -258,26 +71,5 @@ extern struct mtx clock_lock;
call _mtx_unlock_spin_flags ; \
addl $0x10, %esp ; \
-/*
- * XXX: These two are broken right now and need to be made to work for
- * XXX: sleep locks, as the above two work for spin locks. We're not in
- * XXX: too much of a rush to do these as we do not use them right now.
- */
-#define MTX_ENTER(lck, type) \
- pushl $0 ; /* dummy __LINE__ */ \
- pushl $0 ; /* dummy __FILE__ */ \
- pushl $type ; \
- pushl $lck ; \
- call _mtx_lock_XXX ; \
- addl $16,%esp
-
-#define MTX_EXIT(lck, type) \
- pushl $0 ; /* dummy __LINE__ */ \
- pushl $0 ; /* dummy __FILE__ */ \
- pushl $type ; \
- pushl $lck ; \
- call _mtx_unlock_XXX ; \
- addl $16,%esp
-
#endif /* !LOCORE */
#endif /* __MACHINE_MUTEX_H */
OpenPOWER on IntegriCloud