[78b3f52] | 1 | //
|
---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
|
---|
| 3 | //
|
---|
| 4 | // The contents of this file are covered under the licence agreement in the
|
---|
| 5 | // file "LICENCE" distributed with Cforall.
|
---|
| 6 | //
|
---|
[73abe95] | 7 | // debug.hfa --
|
---|
[78b3f52] | 8 | //
|
---|
| 9 | // Author : Thierry Delisle
|
---|
| 10 | // Created On : Mon Nov 28 12:27:26 2016
|
---|
[851fd92] | 11 | // Last Modified By : Andrew Beach
|
---|
| 12 | // Last Modified On : Mon Apr 27 10:15:00 2020
|
---|
| 13 | // Update Count : 10
|
---|
[78b3f52] | 14 | //
|
---|
| 15 |
|
---|
[6b0b624] | 16 | #pragma once
|
---|
[78b3f52] | 17 |
|
---|
| 18 | #ifdef __CFA_DEBUG__
|
---|
[36982fc] | 19 | #define __cfaabi_dbg_debug_do(...) __VA_ARGS__
|
---|
| 20 | #define __cfaabi_dbg_no_debug_do(...)
|
---|
| 21 | #define __cfaabi_dbg_ctx __PRETTY_FUNCTION__
|
---|
| 22 | #define __cfaabi_dbg_ctx2 , __PRETTY_FUNCTION__
|
---|
[e3fea42] | 23 | #define __cfaabi_dbg_ctx_param const char caller[]
|
---|
| 24 | #define __cfaabi_dbg_ctx_param2 , const char caller[]
|
---|
[ae66348] | 25 | #define __cfaabi_dbg_ctx_fwd caller
|
---|
| 26 | #define __cfaabi_dbg_ctx_fwd2 , caller
|
---|
[78b3f52] | 27 | #else
|
---|
[36982fc] | 28 | #define __cfaabi_dbg_debug_do(...)
|
---|
| 29 | #define __cfaabi_dbg_no_debug_do(...) __VA_ARGS__
|
---|
| 30 | #define __cfaabi_dbg_ctx
|
---|
| 31 | #define __cfaabi_dbg_ctx2
|
---|
| 32 | #define __cfaabi_dbg_ctx_param
|
---|
| 33 | #define __cfaabi_dbg_ctx_param2
|
---|
[ae66348] | 34 | #define __cfaabi_dbg_ctx_fwd
|
---|
| 35 | #define __cfaabi_dbg_ctx_fwd2
|
---|
[4aa2fb2] | 36 | #endif
|
---|
| 37 |
|
---|
[9d944b2] | 38 | #ifdef __cforall
|
---|
| 39 | extern "C" {
|
---|
| 40 | #endif
|
---|
[6a5be52] | 41 | #include <stdarg.h>
|
---|
[9d944b2] | 42 |
|
---|
[e3fea42] | 43 | extern void __cfaabi_bits_write( int fd, const char buffer[], int len );
|
---|
[1c40091] | 44 | extern void __cfaabi_bits_acquire();
|
---|
| 45 | extern void __cfaabi_bits_release();
|
---|
| 46 | extern void __cfaabi_bits_print_safe ( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) ));
|
---|
| 47 | extern void __cfaabi_bits_print_nolock( int fd, const char fmt[], ... ) __attribute__(( format(printf, 2, 3) ));
|
---|
| 48 | extern void __cfaabi_bits_print_vararg( int fd, const char fmt[], va_list arg );
|
---|
| 49 | extern void __cfaabi_bits_print_buffer( int fd, char buffer[], int buffer_size, const char fmt[], ... ) __attribute__(( format(printf, 4, 5) ));
|
---|
[851fd92] | 50 |
|
---|
[c1581a0] | 51 | #if defined(__CFA_DEBUG_PRINT__) \
|
---|
| 52 | || defined(__CFA_DEBUG_PRINT_IO__) || defined(__CFA_DEBUG_PRINT_IO_CORE__) \
|
---|
[851fd92] | 53 | || defined(__CFA_DEBUG_PRINT_MONITOR__) || defined(__CFA_DEBUG_PRINT_PREEMPTION__) \
|
---|
| 54 | || defined(__CFA_DEBUG_PRINT_RUNTIME_CORE__) || defined(__CFA_DEBUG_PRINT_EXCEPTION__)
|
---|
| 55 | #include <stdio.h>
|
---|
| 56 | #include <unistd.h>
|
---|
| 57 | #endif
|
---|
[9d944b2] | 58 | #ifdef __cforall
|
---|
| 59 | }
|
---|
| 60 | #endif
|
---|
| 61 |
|
---|
[851fd92] | 62 | // Deprecated: Use the versions with the new module names.
|
---|
[d9c44c3] | 63 | #ifdef __CFA_DEBUG_PRINT__
|
---|
[1c40091] | 64 | #define __cfaabi_dbg_write( buffer, len ) __cfaabi_bits_write( STDERR_FILENO, buffer, len )
|
---|
| 65 | #define __cfaabi_dbg_acquire() __cfaabi_bits_acquire()
|
---|
| 66 | #define __cfaabi_dbg_release() __cfaabi_bits_release()
|
---|
[93ace83] | 67 | #define __cfaabi_dbg_print_safe(...) __cfaabi_bits_print_safe ( STDERR_FILENO, __VA_ARGS__ )
|
---|
| 68 | #define __cfaabi_dbg_print_nolock(...) __cfaabi_bits_print_nolock ( STDERR_FILENO, __VA_ARGS__ )
|
---|
| 69 | #define __cfaabi_dbg_print_buffer(...) __cfaabi_bits_print_buffer ( STDERR_FILENO, __VA_ARGS__ )
|
---|
| 70 | #define __cfaabi_dbg_print_buffer_decl(...) char __dbg_text[256]; int __dbg_len = snprintf( __dbg_text, 256, __VA_ARGS__ ); __cfaabi_bits_write( STDERR_FILENO, __dbg_text, __dbg_len );
|
---|
| 71 | #define __cfaabi_dbg_print_buffer_local(...) __dbg_len = snprintf( __dbg_text, 256, __VA_ARGS__ ); __cfaabi_dbg_write( STDERR_FILENO, __dbg_text, __dbg_len );
|
---|
[d9c44c3] | 72 | #else
|
---|
[36982fc] | 73 | #define __cfaabi_dbg_write(...) ((void)0)
|
---|
| 74 | #define __cfaabi_dbg_acquire() ((void)0)
|
---|
| 75 | #define __cfaabi_dbg_release() ((void)0)
|
---|
| 76 | #define __cfaabi_dbg_print_safe(...) ((void)0)
|
---|
| 77 | #define __cfaabi_dbg_print_nolock(...) ((void)0)
|
---|
| 78 | #define __cfaabi_dbg_print_buffer(...) ((void)0)
|
---|
| 79 | #define __cfaabi_dbg_print_buffer_decl(...) ((void)0)
|
---|
| 80 | #define __cfaabi_dbg_print_buffer_local(...) ((void)0)
|
---|
[d9c44c3] | 81 | #endif
|
---|
| 82 |
|
---|
[851fd92] | 83 | // Debug print functions and statements:
|
---|
| 84 | // Most are wrappers around the bits printing function but are not always used.
|
---|
| 85 | // If they are used depends if the group (first argument) is active or not. The group must be one
|
---|
| 86 | // defined belowe. The other arguments depend on the wrapped function.
|
---|
| 87 | #define __cfadbg_write(group, buffer, len) \
|
---|
| 88 | __CFADBG_PRINT_GROUP_##group(__cfaabi_bits_write(STDERR_FILENO, buffer, len))
|
---|
| 89 | #define __cfadbg_acquire(group) \
|
---|
| 90 | __CFADBG_PRINT_GROUP_##group(__cfaabi_bits_acquire())
|
---|
| 91 | #define __cfadbg_release(group) \
|
---|
| 92 | __CFADBG_PRINT_GROUP_##group(__cfaabi_bits_release())
|
---|
| 93 | #define __cfadbg_print_safe(group, ...) \
|
---|
| 94 | __CFADBG_PRINT_GROUP_##group(__cfaabi_bits_print_safe(STDERR_FILENO, __VA_ARGS__))
|
---|
| 95 | #define __cfadbg_print_nolock(group, ...) \
|
---|
| 96 | __CFADBG_PRINT_GROUP_##group(__cfaabi_bits_print_nolock(STDERR_FILENO, __VA_ARGS__))
|
---|
| 97 | #define __cfadbg_print_buffer(group, ...) \
|
---|
| 98 | __CFADBG_PRINT_GROUP_##group(__cfaabi_bits_print_buffer(STDERR_FILENO, __VA_ARGS__))
|
---|
| 99 | #define __cfadbg_print_buffer_decl(group, ...) \
|
---|
| 100 | __CFADBG_PRINT_GROUP_##group(char __dbg_text[256]; int __dbg_len = snprintf( __dbg_text, 256, __VA_ARGS__ ); __cfaabi_bits_write( __dbg_text, __dbg_len ))
|
---|
| 101 | #define __cfadbg_print_buffer_local(group, ...) \
|
---|
| 102 | __CFADBG_PRINT_GROUP_##group(__dbg_len = snprintf( __dbg_text, 256, __VA_ARGS__ ); __cfaabi_bits_write(STDERR_FILENO, __dbg_text, __dbg_len))
|
---|
| 103 |
|
---|
| 104 | // The debug print groups:
|
---|
| 105 | #if defined(__CFA_DEBUG_PRINT__) || defined(__CFA_DEBUG_PRINT_IO__)
|
---|
| 106 | # define __CFADBG_PRINT_GROUP_io(...) __VA_ARGS__
|
---|
| 107 | #else
|
---|
| 108 | # define __CFADBG_PRINT_GROUP_io(...) ((void)0)
|
---|
| 109 | #endif
|
---|
[0a805f2] | 110 | #if defined(__CFA_DEBUG_PRINT__) || defined(__CFA_DEBUG_PRINT_IO__) || defined(__CFA_DEBUG_PRINT_IO_CORE__)
|
---|
| 111 | # define __CFADBG_PRINT_GROUP_io_core(...) __VA_ARGS__
|
---|
| 112 | #else
|
---|
| 113 | # define __CFADBG_PRINT_GROUP_io_core(...) ((void)0)
|
---|
| 114 | #endif
|
---|
[851fd92] | 115 | #if defined(__CFA_DEBUG_PRINT__) || defined(__CFA_DEBUG_PRINT_MONITOR__)
|
---|
| 116 | # define __CFADBG_PRINT_GROUP_monitor(...) __VA_ARGS__
|
---|
| 117 | #else
|
---|
| 118 | # define __CFADBG_PRINT_GROUP_monitor(...) ((void)0)
|
---|
| 119 | #endif
|
---|
| 120 | #if defined(__CFA_DEBUG_PRINT__) || defined(__CFA_DEBUG_PRINT_PREEMPTION__)
|
---|
| 121 | # define __CFADBG_PRINT_GROUP_preemption(...) __VA_ARGS__
|
---|
| 122 | #else
|
---|
| 123 | # define __CFADBG_PRINT_GROUP_preemption(...) ((void)0)
|
---|
| 124 | #endif
|
---|
| 125 | #if defined(__CFA_DEBUG_PRINT__) || defined(__CFA_DEBUG_PRINT_RUNTIME_CORE__)
|
---|
| 126 | # define __CFADBG_PRINT_GROUP_runtime_core(...) __VA_ARGS__
|
---|
| 127 | #else
|
---|
| 128 | # define __CFADBG_PRINT_GROUP_runtime_core(...) ((void)0)
|
---|
| 129 | #endif
|
---|
| 130 | #if defined(__CFA_DEBUG_PRINT__) || defined(__CFA_DEBUG_PRINT_READY_QUEUE__)
|
---|
| 131 | # define __CFADBG_PRINT_GROUP_ready_queue(...) __VA_ARGS__
|
---|
| 132 | #else
|
---|
| 133 | # define __CFADBG_PRINT_GROUP_ready_queue(...) ((void)0)
|
---|
| 134 | #endif
|
---|
| 135 | #if defined(__CFA_DEBUG_PRINT__) || defined(__CFA_DEBUG_PRINT_EXCEPTION__)
|
---|
| 136 | # define __CFADBG_PRINT_GROUP_exception(...) __VA_ARGS__
|
---|
| 137 | #else
|
---|
| 138 | # define __CFADBG_PRINT_GROUP_exception(...) ((void)0)
|
---|
| 139 | #endif
|
---|
| 140 |
|
---|
[78b3f52] | 141 | // Local Variables: //
|
---|
| 142 | // mode: c //
|
---|
| 143 | // tab-width: 4 //
|
---|
| 144 | // End: //
|
---|