18

Ich habe einige codeDie beste Möglichkeit, __typeof__ für msvc oder eine alternative Problemumgehung zu emulieren?

#define DEBUG_PRINT(x,...) \ 
    do \ 
    {\ 
     _Pragma("GCC diagnostic push") \ 
     _Pragma("GCC diagnostic ignored \"-Wunused-value\"") \ 
     __typeof__((0,x)) _x = x; \ 
     _Pragma("GCC diagnostic pop") \ 
     DEBUG_PRINT_PTR((#x), &_x, __VA_ARGS__);\ 
    } while(0) 


//The repetition of debug_print_printf_specifier is to avoid repetition for custom types. 
#define DEBUG_PRINT_PTR(xstr, xp,...) \ 
_Generic((*xp), \ 
const char *: debug_print_printf_specifier(xstr, (void *)xp, TYPE_PTR_TO_PRINTF_SPECIFIER(xp), __FILE__, __LINE__, _my_func__, debug_print_options_apply_group_options(&((debug_print_options){__VA_ARGS__}))),\ 
char *: debug_print_printf_specifier(xstr, (void *)xp, TYPE_PTR_TO_PRINTF_SPECIFIER(xp), __FILE__, __LINE__, _my_func__, debug_print_options_apply_group_options(&((debug_print_options){__VA_ARGS__}))),\ 
int: debug_print_printf_specifier(xstr, (void *)xp, TYPE_PTR_TO_PRINTF_SPECIFIER(xp), __FILE__, __LINE__, _my_func__, debug_print_options_apply_group_options(&((debug_print_options){__VA_ARGS__}))),\ 
float: debug_print_printf_specifier(xstr, (void *)xp, TYPE_PTR_TO_PRINTF_SPECIFIER(xp), __FILE__, __LINE__, _my_func__, debug_print_options_apply_group_options(&((debug_print_options){__VA_ARGS__}))),\ 
double: debug_print_printf_specifier(xstr, (void *)xp, TYPE_PTR_TO_PRINTF_SPECIFIER(xp), __FILE__, __LINE__, _my_func__, debug_print_options_apply_group_options(&((debug_print_options){__VA_ARGS__}))),\ 
char: debug_print_printf_specifier(xstr, (void *)xp, TYPE_PTR_TO_PRINTF_SPECIFIER(xp), __FILE__, __LINE__, _my_func__, debug_print_options_apply_group_options(&((debug_print_options){__VA_ARGS__}))),\ 
int16_t: debug_print_printf_specifier(xstr, (void *)xp, TYPE_PTR_TO_PRINTF_SPECIFIER(xp), __FILE__, __LINE__, _my_func__, debug_print_options_apply_group_options(&((debug_print_options){__VA_ARGS__}))),\ 
uint16_t: debug_print_printf_specifier(xstr, (void *)xp, TYPE_PTR_TO_PRINTF_SPECIFIER(xp), __FILE__, __LINE__, _my_func__, debug_print_options_apply_group_options(&((debug_print_options){__VA_ARGS__}))),\ 
uint32_t: debug_print_printf_specifier(xstr, (void *)xp, TYPE_PTR_TO_PRINTF_SPECIFIER(xp), __FILE__, __LINE__, _my_func__, debug_print_options_apply_group_options(&((debug_print_options){__VA_ARGS__}))),\ 
int64_t: debug_print_printf_specifier(xstr, (void *)xp, TYPE_PTR_TO_PRINTF_SPECIFIER(xp), __FILE__, __LINE__, _my_func__, debug_print_options_apply_group_options(&((debug_print_options){__VA_ARGS__}))),\ 
uint64_t: debug_print_printf_specifier(xstr, (void *)xp, TYPE_PTR_TO_PRINTF_SPECIFIER(xp), __FILE__, __LINE__, _my_func__, debug_print_options_apply_group_options(&((debug_print_options){__VA_ARGS__}))),\ 
default: DEBUG_PRINT_CUSTOM_TYPE(xstr, xp, __VA_ARGS__)) 

#define DEBUG_PRINT_CUSTOM_TYPE(xstr, xp,...) \ 
debug_print_custom_to_debug_string(xstr, xp, &((dsc_func_ptr){GET_CREATE_DEBUG_STRING_FUNC(xp)}), __FILE__, __LINE__, _my_func__,\ 
debug_print_options_apply_group_options(&((debug_print_options){__VA_ARGS__}))) 



#define GET_CREATE_DEBUG_STRING_FUNC(x) _Generic((x), \ 
debug_print_options *: debug_print_options_to_debug_string, \ 
debug_print_group_options *: debug_print_group_options_to_debug_string, \ 
default: print_not_valid_type_for_debug_print) 

I einen Zeiger auf x in DEBUG_PRINT benötigen, die eine Variable oder ein Ausdruck sein kann. Um Ausdrücke zu unterstützen, weise ich sie einem Temporären zu und nehme dann die Adresse davon. Ich könnte __typeof__ mit _Generic für eine begrenzte Reihe von Typen emulieren, aber dann Benutzer würden Linien für kundenspezifische Typen an 2 Plätzen hinzufügen müssen. Gibt es einen anderen Weg, dies zu tun? Ich wäre in Ordnung, nur den neuesten Microsoft C-Compiler zu unterstützen.

+0

MSVC10 + hat 'decltype'. Nicht sicher, ob das von C-Code aus zugänglich ist. –

+3

MSVC implementiert weder '_Generic' noch' _Pragma'. Wenn Sie Visual Studio verwenden möchten/wollen, verwenden Sie 'clang-cl' oder C++ für generische Programmierung. – cremno

+0

_Pragma ist nur um Warnungen zu unterdrücken, auch MSVC unterstützt __pragma, die ähnlich ist (https://msdn.microsoft.com/en-us/library/d9x1s805.aspx) –

Antwort

-4
char: debug_print_printf_specifier("x"//z.str, (void *)xp, \ 
TYPE_PTR_TO_PRINTF_SPECIFIER(xp), __FILE__, __LINE__, _my_func__, \ 
debug_print_options_apply_group_options(&((debug_print_options{__VA_ARGS__}))),\ 
z=ptr.x 
//just create a ptr z for x... :D 

einfach ist das ..;)

+5

Bitte fügen Sie eine ausführlichere Beschreibung der Lösung hinzu und formatieren Sie den Code. –

Verwandte Themen