vecmem 1.14.0
Loading...
Searching...
No Matches
debug.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2021-2023 CERN for the benefit of the ACTS project
4 *
5 * Mozilla Public License Version 2.0
6 */
7#pragma once
8
9// System include(s).
10#include <cstdio>
11
13#ifndef VECMEM_PRINTF
14#if defined(SYCL_LANGUAGE_VERSION) || defined(CL_SYCL_LANGUAGE_VERSION)
15#define VECMEM_PRINTF VECMEM_SYCL_PRINTF_FUNCTION
16#else
17#define VECMEM_PRINTF printf
18#endif
19#endif // not VECMEM_PRINTF
20
21// Attribute(s) to use on the printed message character string variables
22#ifndef VECMEM_MSG_ATTRIBUTES
23#ifdef __SYCL_DEVICE_ONLY__
24#define VECMEM_MSG_ATTRIBUTES __attribute__((opencl_constant))
25#else
26#define VECMEM_MSG_ATTRIBUTES
27#endif
28#endif // not VECMEM_MSG_ATTRIBUTES
29
31#ifndef VECMEM_DEBUG_MSG_LVL
32#define VECMEM_DEBUG_MSG_LVL 0
33#endif // not VECMEM_DEBUG_MSG_LVL
34
36#ifndef VECMEM_SOURCE_DIR_LENGTH
37#define VECMEM_SOURCE_DIR_LENGTH 0
38#endif // not VECMEM_SOURCE_DIR_LENGTH
39
46#define __VECMEM_PRINT_MSG(MSG, ...) \
47 do { \
48 const VECMEM_MSG_ATTRIBUTES char __msg[] = MSG; \
49 VECMEM_PRINTF(__msg, __VA_ARGS__); \
50 } while (false)
51
53#if VECMEM_DEBUG_MSG_LVL >= 1
54#define __VECMEM_PRINT_1(MSG, ...) __VECMEM_PRINT_MSG(MSG, __VA_ARGS__)
55#else
56#define __VECMEM_PRINT_1(MSG, ...)
57#endif
58
60#if VECMEM_DEBUG_MSG_LVL >= 2
61#define __VECMEM_PRINT_2(MSG, ...) __VECMEM_PRINT_MSG(MSG, __VA_ARGS__)
62#else
63#define __VECMEM_PRINT_2(MSG, ...)
64#endif
65
67#if VECMEM_DEBUG_MSG_LVL >= 3
68#define __VECMEM_PRINT_3(MSG, ...) __VECMEM_PRINT_MSG(MSG, __VA_ARGS__)
69#else
70#define __VECMEM_PRINT_3(MSG, ...)
71#endif
72
74#if VECMEM_DEBUG_MSG_LVL >= 4
75#define __VECMEM_PRINT_4(MSG, ...) __VECMEM_PRINT_MSG(MSG, __VA_ARGS__)
76#else
77#define __VECMEM_PRINT_4(MSG, ...)
78#endif
79
81#if VECMEM_DEBUG_MSG_LVL >= 5
82#define __VECMEM_PRINT_5(MSG, ...) __VECMEM_PRINT_MSG(MSG, __VA_ARGS__)
83#else
84#define __VECMEM_PRINT_5(MSG, ...)
85#endif
86
87// Implement the main macro(s) a little differently for MSVC and all other
88// compilers/preprocessors. Since the "trick" used for GCC/Clang to allow
89// the macro to receive 0 or more arguments just confuses MSVC. And the MSVC
90// variadic macro handling can deal with 0 or more arguments out of the box
91// anyway.
92#if defined(_MSC_VER) && (!defined(__clang__))
93
103#define VECMEM_DEBUG_MSG(LVL, MSG, ...) \
104 __VECMEM_PRINT_##LVL( \
105 "[vecmem] %s:%i " MSG "\n", \
106 (static_cast<const char*>(__FILE__) + VECMEM_SOURCE_DIR_LENGTH), \
107 __LINE__, __VA_ARGS__)
108
109#else
110
112#define __VECMEM_DEBUG_MSG(LVL, MSG, ...) \
113 __VECMEM_PRINT_##LVL( \
114 "[vecmem] %s:%i " MSG "\n%s", \
115 (static_cast<const char*>(__FILE__) + VECMEM_SOURCE_DIR_LENGTH), \
116 __LINE__, __VA_ARGS__)
117
127#define VECMEM_DEBUG_MSG(LVL, ...) __VECMEM_DEBUG_MSG(LVL, __VA_ARGS__, "")
128
129#endif // MSC