/* StarPU --- Runtime system for heterogeneous multicore architectures. * * Copyright (C) 2010, 2012-2013 Université de Bordeaux 1 * Copyright (C) 2010, 2011, 2012, 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 __COMMON_UTILS_H__ #define __COMMON_UTILS_H__ #include #include #include #include #include #include #include #ifdef STARPU_HAVE_HELGRIND_H #include #endif #ifndef VALGRIND_HG_MUTEX_LOCK_PRE #define VALGRIND_HG_MUTEX_LOCK_PRE(mutex, istrylock) ((void)0) #endif #ifndef VALGRIND_HG_MUTEX_LOCK_POST #define VALGRIND_HG_MUTEX_LOCK_POST(mutex) ((void)0) #endif #ifndef VALGRIND_HG_MUTEX_UNLOCK_PRE #define VALGRIND_HG_MUTEX_UNLOCK_PRE(mutex) ((void)0) #endif #ifndef VALGRIND_HG_MUTEX_UNLOCK_POST #define VALGRIND_HG_MUTEX_UNLOCK_POST(mutex) ((void)0) #endif #ifndef DO_CREQ_v_WW #define DO_CREQ_v_WW(_creqF, _ty1F, _arg1F, _ty2F, _arg2F) ((void)0) #endif #ifndef DO_CREQ_v_W #define DO_CREQ_v_W(_creqF, _ty1F, _arg1F) ((void)0) #endif #ifndef ANNOTATE_HAPPENS_BEFORE #define ANNOTATE_HAPPENS_BEFORE(obj) ((void)0) #endif #ifndef ANNOTATE_HAPPENS_AFTER #define ANNOTATE_HAPPENS_AFTER(obj) ((void)0) #endif #ifndef ANNOTATE_RWLOCK_ACQUIRED #define ANNOTATE_RWLOCK_ACQUIRED(lock, is_w) ((void)0) #endif #ifndef ANNOTATE_RWLOCK_RELEASED #define ANNOTATE_RWLOCK_RELEASED(lock, is_w) ((void)0) #endif #define _STARPU_VALGRIND_HG_SPIN_LOCK_PRE(lock) \ DO_CREQ_v_WW(_VG_USERREQ__HG_PTHREAD_SPIN_LOCK_PRE, \ struct _starpu_spinlock *, lock, long, 0) #define _STARPU_VALGRIND_HG_SPIN_LOCK_POST(lock) \ DO_CREQ_v_W(_VG_USERREQ__HG_PTHREAD_SPIN_LOCK_POST, \ struct _starpu_spinlock *, lock) #define _STARPU_VALGRIND_HG_SPIN_UNLOCK_PRE(lock) \ DO_CREQ_v_W(_VG_USERREQ__HG_PTHREAD_SPIN_INIT_OR_UNLOCK_PRE, \ struct _starpu_spinlock *, lock) #define _STARPU_VALGRIND_HG_SPIN_UNLOCK_POST(lock) \ DO_CREQ_v_W(_VG_USERREQ__HG_PTHREAD_SPIN_INIT_OR_UNLOCK_POST, \ struct _starpu_spinlock *, lock) #ifdef STARPU_VERBOSE # define _STARPU_DEBUG(fmt, args ...) do { if (!getenv("STARPU_SILENT")) {fprintf(stderr, "[starpu][%s] " fmt ,__starpu_func__ ,##args); fflush(stderr); }} while(0) #else # define _STARPU_DEBUG(fmt, args ...) do { } while (0) #endif #ifdef STARPU_VERBOSE0 # define _STARPU_LOG_IN() do { if (!getenv("STARPU_SILENT")) {fprintf(stderr, "[starpu][%ld][%s] -->\n", pthread_self(), __starpu_func__ ); }} while(0) # define _STARPU_LOG_OUT() do { if (!getenv("STARPU_SILENT")) {fprintf(stderr, "[starpu][%ld][%s] <--\n", pthread_self(), __starpu_func__ ); }} while(0) # define _STARPU_LOG_OUT_TAG(outtag) do { if (!getenv("STARPU_SILENT")) {fprintf(stderr, "[starpu][%ld][%s] <-- (%s)\n", pthread_self(), __starpu_func__, outtag); }} while(0) #else # define _STARPU_LOG_IN() # define _STARPU_LOG_OUT() # define _STARPU_LOG_OUT_TAG(outtag) #endif #define _STARPU_DISP(fmt, args ...) do { if (!getenv("STARPU_SILENT")) {fprintf(stderr, "[starpu][%s] " fmt ,__starpu_func__ ,##args); }} while(0) #define _STARPU_ERROR(fmt, args ...) \ do { \ fprintf(stderr, "\n\n[starpu][%s] Error: " fmt ,__starpu_func__ ,##args); \ fprintf(stderr, "\n\n"); \ STARPU_ABORT(); \ } while (0) #define _STARPU_IS_ZERO(a) (fpclassify(a) == FP_ZERO) int _starpu_mkpath(const char *s, mode_t mode); void _starpu_mkpath_and_check(const char *s, mode_t mode); char *_starpu_get_home_path(void); void _starpu_gethostname(char *hostname, size_t size); /* If FILE is currently on a comment line, eat it. */ void _starpu_drop_comments(FILE *f); struct _starpu_job; /* Returns the symbol associated to that job if any. */ const char *_starpu_job_get_model_name(struct _starpu_job *j); struct starpu_codelet; /* Returns the symbol associated to that job if any. */ const char *_starpu_codelet_get_model_name(struct starpu_codelet *cl); #endif // __COMMON_UTILS_H__