| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2010-2013 Université de Bordeaux 1
- * Copyright (C) 2010, 2011, 2013 Centre National de la Recherche Scientifique
- *
- * StarPU is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2.1 of the License, or (at
- * your option) any later version.
- *
- * StarPU is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * See the GNU Lesser General Public License in COPYING.LGPL for more details.
- */
- #ifndef __STARPU_SPINLOCK_H__
- #define __STARPU_SPINLOCK_H__
- #include <errno.h>
- #include <stdint.h>
- #include <starpu_thread.h>
- #include <common/config.h>
- #include <common/thread.h>
- struct _starpu_spinlock
- {
- #ifdef STARPU_SIMGRID
- int taken;
- #elif defined(STARPU_SPINLOCK_CHECK)
- starpu_pthread_mutexattr_t errcheck_attr;
- starpu_pthread_mutex_t errcheck_lock;
- #elif defined(HAVE_PTHREAD_SPIN_LOCK)
- _starpu_pthread_spinlock_t lock;
- #else
- /* we only have a trivial implementation yet ! */
- uint32_t taken STARPU_ATTRIBUTE_ALIGNED(16);
- #endif
- #ifdef STARPU_SPINLOCK_CHECK
- const char *last_taker;
- #endif
- };
- #ifdef STARPU_SPINLOCK_CHECK
- #define STARPU_RECORD_LOCK(lock) do { \
- (lock)->last_taker = __starpu_func__; \
- } while(0)
- #else // !STARPU_SPINLOCK_CHECK
- #define STARPU_RECORD_LOCK(lock) do {} while(0)
- #endif // STARPU_SPINLOCK_CHECK
- int _starpu_spin_init(struct _starpu_spinlock *lock);
- int _starpu_spin_destroy(struct _starpu_spinlock *lock);
- int _starpu_spin_lock(struct _starpu_spinlock *lock);
- #define _starpu_spin_lock(lock) ({ \
- const char *file; \
- if (starpu_worker_get_type(starpu_worker_get_id()) == STARPU_CUDA_WORKER) \
- { \
- file = strrchr(__FILE__,'/'); \
- file += sizeof(char);\
- _STARPU_TRACE_LOCKING_SPINLOCK(file,__LINE__); \
- }\
- _starpu_spin_lock(lock); \
- if (starpu_worker_get_type(starpu_worker_get_id()) == STARPU_CUDA_WORKER) \
- { \
- file = strrchr(__FILE__,'/'); \
- file += sizeof(char);\
- _STARPU_TRACE_SPINLOCK_LOCKED(file,__LINE__); \
- }\
- STARPU_RECORD_LOCK(lock); \
- 0; \
- })
- int _starpu_spin_trylock(struct _starpu_spinlock *lock);
- #define _starpu_spin_trylock(lock) ({ \
- const char *file; \
- if (starpu_worker_get_type(starpu_worker_get_id()) == STARPU_CUDA_WORKER) \
- { \
- file = strrchr(__FILE__,'/'); \
- file += sizeof(char);\
- _STARPU_TRACE_TRYLOCK_SPINLOCK(file,__LINE__); \
- }\
- int err = _starpu_spin_trylock(lock); \
- if (!err) \
- STARPU_RECORD_LOCK(lock); \
- err; \
- })
- int _starpu_spin_checklocked(struct _starpu_spinlock *lock);
- int _starpu_spin_unlock(struct _starpu_spinlock *lock);
- #define _starpu_spin_unlock(lock) ({ \
- const char *file; \
- if (starpu_worker_get_type(starpu_worker_get_id()) == STARPU_CUDA_WORKER) \
- { \
- file = strrchr(__FILE__,'/'); \
- file += sizeof(char);\
- _STARPU_TRACE_UNLOCKING_SPINLOCK(file,__LINE__); \
- }\
- _starpu_spin_unlock(lock); \
- if (starpu_worker_get_type(starpu_worker_get_id()) == STARPU_CUDA_WORKER) \
- { \
- file = strrchr(__FILE__,'/'); \
- file += sizeof(char);\
- _STARPU_TRACE_SPINLOCK_UNLOCKED(file,__LINE__); \
- }\
- 0; \
- })
- #define STARPU_SPIN_MAXTRY 10
- #endif // __STARPU_SPINLOCK_H__
|