0
votes
0answers
26 views

gcc optimizations: how to deal with macro expantion in strncmp & other functions

Take this sample code: #include <string.h> #define STRcommaLEN(str) (str), (sizeof(str)-1) int main() { const char * b = "string2"; const char * c = "string3"; strncmp(b, ...
1
vote
1answer
57 views

Modifying TestAssert.h (cppunit) - why the order of includes matter for macro expansion?

I have a project which has two base exception classes; both have the same name, only the methods/members differ (one has a method which returns the message, the other has only a string member which ...
0
votes
2answers
36 views

Confusing gcc error message in simple macro expansion

I've been looking at this too long and just can't see what the problem is: #include <stdio.h> typedef struct { int a; int b; } S; #define F(a,b) ( v.a = a, v.b = b, v ) int ...
2
votes
3answers
179 views

How to create a “C single-line comment” macro

I am trying to create a "single line comment" macro in C, this is used conditionally to comment out lines of codes, according to some global macro definitions. It is the same idea expressed in this ...
1
vote
1answer
47 views

msvc's equivalent of gcc's __BASE_FILE__

Is there any equivalent of __BASE_FILE__ in Visual C++? I want to know name of the file currently being compiled by VC++. Note: __FILE__ expands into current file, e.g. it may be one of #includes. ...
2
votes
1answer
66 views

How do I force a constant C-expression evaluation for use as a constant in a .S file?

A header file I'm including from /usr/include/**/asm (rudely?) uses simple C expressions to express an offset from a base value, i.e.: #define __NR_exit (__NR_SYSCALL_BASE+ 1) ...
0
votes
1answer
140 views

GCC - Symbol could not resolved in C

I have a source file 'foo.c' which includes 'foo1.h' and 'foo2.c'. foo1.h #include "pthread.h" #define MACROFOO() PTHREAD_MUTEX_INITIALIZER // Few other macros foo2.h #include "pthread.h" ...
2
votes
2answers
112 views

Predefined Macros for function name __func__

I am attempting to build a debug log message function that records the file, line, and function of of where the log message was called from. #define DEBUG_PANIC(p) CLogging::Debuglogf( "Debug marker ...
0
votes
1answer
36 views

Error while compiling macro __COPYRIGHT with gcc

Here is the simple echo.c source code: #include <sys/cdefs.h> #ifndef lint __COPYRIGHT( "@(#) Copyright (c) 1989, 1993\n\ The Regents of the University of California. All rights ...
2
votes
2answers
106 views

x86 assembly: Using #define'd constants as arguments in calls to to #define's macros

I'm working on manually constructing an IDT table in x86 assembly. I have the following macros defined using the C preprocessor in my .S file: // sets up an entry in the idt for a trap type #define ...
2
votes
4answers
247 views

Is there any way to split gcc macro arguments?

I write code that can run on GPU or CPU. In case of CUDA presence wrapper try to run function on GPU. In case of error (no memory for example) it try to run it on CPU. In case of error again it ...
6
votes
2answers
162 views

Producing a list of all the preprocessor symbols defined in headers

Say I use some C or C++ library, made out of headers and some source files, that are compiled into a static or shared library I can link with. In the headers of the library (dozens... or hundreds of ...
22
votes
3answers
399 views

Why this macro is defined as ({ 1; })?

In multiple ARM backend of Linux, I'm seeing in files clkdev.h this macro definition: #define __clk_get(clk) ({ 1; }) See for example ./arch/arm/mach-versatile/include/mach/clkdev.h This macro is ...
5
votes
3answers
349 views

GCC, stringification, and inline GLSL?

I'd like to declare GLSL shader strings inline using macro stringification: #define STRINGIFY(A) #A const GLchar* vert = STRINGIFY( #version 120\n attribute vec2 position; void main() { ...
1
vote
3answers
136 views

How to get macro name __LINE__ for a multi-line macro call?

I have created a macro for error tracing. Here is a simplified version: #include <stdio.h> #define ERR(...) \ printf("error @ %d\n", __LINE__) int main() { ...
0
votes
2answers
134 views

Remove constness of a pointer in a struct in C

So I need to remove constness from some variables in C (I know what I'm doing). So I wrote a little macro (UNCONST) which lets me assign an new value to a const value. This works just fine for normal ...
2
votes
1answer
105 views

How to evaluate a nested preprocessor macro

let's say I want to select the behaviour of a certain preprocessor directive evaluating at compile time the concatenation of a constant string and the result of another macro. #define CASE1 text1 ...
1
vote
5answers
322 views

C Macros - Pass by Pointer vs Copy/Errors in passing to macro

In an effort to learn pure C (coming from C++), I've decided to write a simple math library using structs and macros. So far, I have this as a test macro: #define MulVec2(dest,src) ((dest.x) = ...
0
votes
1answer
107 views

Print enum mapping mapping in C

I frequently use enum in C to access array elemnets with numerical data, e.g. #define KEYS_MAX 1 #define FIELD_MAX 2 enum {FIELD1=0, FIELD2}; double array[KEYS_MAX][FIELD_MAX]; array[1][FIELD1] = ...
1
vote
1answer
143 views

C++ preprocessor ensure globally unique string

I have a Macro function which takes a name and is intended to be called from various namespaces. I want to ensure that this name be unique globally. The define looks something like this: #define ...
1
vote
0answers
122 views

Unused function in macro with clang

I have a macro that is defined as the following, ie: #define next_position() (bit ? *str++ : (*str++) & 0xff) warning: expression result unused [-Wunused-value] Clang is saying the first ...
1
vote
2answers
130 views

fscanf fixed string size using macro

I want to parse an ip from file using fscanf (C code using gcc). so, I want to do: char myip[INET_ADDRSTRLEN]; fscanf(file, "%16s", myip); but, I don't want to hardcode the number 16, so I'm trying ...
1
vote
4answers
176 views

Objective-C ARC and GCC ({}) extension compatibility?

I'm converting some Objective-C code to ARC that makes heavy use of the GCC "Statements and Declarations in Expressions" extension ({}). The GCC extension is being used in preprocessor macros to ...
0
votes
1answer
56 views

wired output of a bigger macro construct

I work on a logging mechanism using macros: #define LOGFATAL 1 // very serious errors #define TOSTRING(s) dynamic_cast< std::ostringstream & >((std::ostringstream() << s ) ).str() ...
3
votes
3answers
303 views

Single line comment macro chokes gcc

atest.c #define COMMENT /##/ int main() { ... COMMENT int atest; ... } The error messages: atest.c:16:1: error: pasting "/" and "/" does not give a valid preprocessing token atest.c: In ...
0
votes
1answer
78 views

How to write a macro function that uses #ifdef

it's possible to write something like this? #define ISWINDOWS() (#if defined(_WIN32) || defined(_WIN64) \ 1 \ #elif \ 0 \ ...
1
vote
1answer
145 views

GCC optimization of __builtin functions used in a macro

If I have a macro like: #define MAX_SIZE ((1<<18)-1) I can rest assured that by runtime this math has been done already and MAX_SIZE is a literal. My question is, what if I use a __builtin ...
0
votes
1answer
138 views

How can I specify an include file from the GCC Command Line?

Using GCC under Windows, I would like to be able to specify on the gcc command line (or from a manually managed makefile) the name of a specific include file to be included in the file being compiled. ...
1
vote
2answers
381 views

Pushing the C++ preprocessor

I'm trying to utilize the preprocessor in C++ in a way which would ease my development progress enormously! I have a pretty simple issue, I work with a C API library whilst I use regular C++ classes. ...
0
votes
2answers
119 views

In C, what happen if define a variable with undefined thing?

I have an example code like this: int var; var = MACRO_A; I expect the MACRO_A has been defined like this: #define MACRO_A 1234 However, I can not find the MACRO_A defined anywhere in the ...
9
votes
2answers
447 views

Why GCC keeps empty functions?

On the most cases if I want to create an optional feature in C, I simply create two functions like this: #ifdef OPTIONAL_SOMETHING void do_something(int n, const char *s) { while (n--) { ...
0
votes
1answer
111 views

How to duplicate a C macro?

I want to make a C macro (TRAMPOLINE_BLOCK) which takes a predefined macro constant (TRAMPOLINE_LENGTH) and writes that many asm volatile nop instructions. For example: #ifdef __x86_64__ #define ...
0
votes
4answers
243 views

LUT in a macro C

I am currently working on setting up a framework in C for usage between several microcontrollers. The framework has to carry all device specific code, so the application only contains the abstract ...
1
vote
1answer
72 views

Compile beyond pre-processor stage but before assembly stage

Imagine I have a set of macros in a program (macrotest.c) like so: #include <stdio.h> #include <stdlib.h> #define n1 75 #define n2 90 #define mac(x,y) ((x > y) ? (12) : (15)) int ...
1
vote
1answer
171 views

C++, GCC: avoid evaluation of useless expressions

I defined a Debug class (similar to qDebug from Qt) with an operator<< to stream data to stdout. According to its template parameter (that, in turn will depend on a macro DEBUG), Debug will be ...
0
votes
1answer
34 views

Is newer GCC documentation compatible with older documentation?

An example: In "Using and Porting GCC" (2001), there is the macro SMALL_REGISTER_CLASSES, which tells the compiler to minimize the lifetime of hard registers. Its definition consists of a simple zero ...
1
vote
1answer
193 views

Swallowing comma in variadic macros on compilers that do not recognise ##

I need to write a variadic macro in C which must take zero or more arguments. In gcc, that can be achieved by adding "##" after the comma, e.g. ,##____VA_ARGS____ as answered in Variadic macros with ...
1
vote
5answers
318 views

C: What does this macro mean?

How do you read the second line of this macro? What does (type *)0 mean in this context? #define container_of(ptr, type, member) ({ \ const typeof( ((type *)0)->member ) *__mptr = (ptr); \ (type ...
0
votes
2answers
31 views

Which header are GCC macros stored ? I needed to create some tags from those files

I'm wondering where are gcc macros like builtin_expect , __attribute ((warn_unused_result)) etc. stored ? I needed to create a tag file with ctags , for things like those above. Thanks !
1
vote
5answers
119 views

stringification of a variable value

#define SATA_PORT_0 "/sata-ahci/port0" #define SATA_PORT_1 "/sata-ahci/port1" #define SATA_PORT_2 "/sata-ahci/port2" #define SATA_PORT_3 "/sata-ahci/port3" #define SATA_PORT_4 ...
2
votes
1answer
469 views

How can I conditionally include #ident directives in a macro?

A bug in gcc-4.4 causes the #ident directive to emit a warning. We don't allow warnings in our compiler (-Werror) so I need to turn these off when compiled on certain GCC compiler versions. (See ...
1
vote
1answer
228 views

Suppress comparison always true warning for Macros?

I'm wondering if there's a simple / sane way to get gcc to stop throwing this error when the opposing target of the comparison is a macro. Yes, I recognize that with this particular definition of the ...
2
votes
2answers
646 views

Determine LLVM versus GCC at compile time

I'm trying to write a macro similar to the following: #ifndef DEPRECATED_ATTRIBUTE_MESSAGE #define DEPRECATED_ATTRIBUTE_MESSAGE(message) __attribute__((deprecated (message))) #endif And this ...
2
votes
3answers
2k views

GCC macro expansion arguments inside string

I have a situation like this #define PRE 0xF1 #define SR0 0B0000 #define SR1 0B0001 #define SR2 0B0010 #define SR3 0B0011 #define VIOTA(A0) asm(".byte PRE, A0") int main() { VIOTA(SR1); ...
1
vote
1answer
119 views

Xcode — have a macro behave differently depending on whether it is included from a .h file or a .m file?

I want to have a macro SomeMacro(city, country) in a file that will be in a file MacroFile.h that I will #include from either a .h file or a .m file. And I want SomeMacro to become something ...
5
votes
2answers
1k views

GCC ARM Assembly Preprocessor Macro

I am trying to use an assembly(ARM) macro for fixed-point multiplication: #define MULT(a,b) __asm__ __volatile__ ( \ "SMULL r2, r3, %0, %1\n\t" \ "ADD r2, r2, #0x8000\n\t" \ ...
2
votes
3answers
643 views

Is it possible to implement the __super macro?

Please tell me if there is a way to manually implement the Microsoft specific __super macro...
5
votes
3answers
242 views

Compound literals and function-like macros: bug in gcc or the C standard?

In C99, we have compound literals, and they can be passed to functions as in: f((int[2]){ 1, 2 }); However, if f is not a function but rather a function-like macro, gcc barfs on this due to the ...
3
votes
3answers
867 views

Retrieve output target name as a string at compilation time in C++

I have a project which compiles in multiple platforms... Windows, Unix, Linux, SCO, name your flavor. I would like to stuff the output target's name into a variable in the project source code (the ...
4
votes
1answer
215 views

How to eliminate a redundant macro parameter

A while ago, I wrote a set of X-macros for a largish project. I needed to maintain coherent lists of both strings and enumerated references/hash values/callback functions etc. Here is what the ...

1 2