the macro preprocessor for the C and C++ computer programming languages.
0
votes
0answers
18 views
How to breakpoint to post-preprocessed code in Visual Studio?
Read C/C++ source file after preprocessing , is it possible to put a breakpoint in the post-preprocessed code in Visual Studio, so one can debug C/C++ code added by macros?
0
votes
0answers
28 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, ...
0
votes
5answers
48 views
Preprocessor directives define and ifdef do not work as I imagined?
I have 3 files:
main.c
#include <stdio.h>
#include <stdlib.h>
#include "test.h"
#define DEBUG
int main()
{
testFunction();
return 0;
}
test.h
#ifndef TEST_H
#define TEST_H
...
0
votes
1answer
54 views
Preprocessor Directives to separate targets in xcode
I have 2 targets on my project one production and one stage with different configurations.
I want in the code to be able to say
#if target == production
NSLog(@"production");
#elif target == stage
...
0
votes
0answers
12 views
Eclipse add creating of the preprocessed files
I have a Makefile C project in eclipse.
In order to create preprocessed files there is n option in gcc -P -E -o <filename>.
The problem is that I don't know how to add correctly ...
2
votes
1answer
50 views
what does __init_refok keyword means in linux kernel code?
While browsing the kernel code, I came accross a keyword that is used in several kernel init functions, __init_refok.
some of the lines I came accross are like
void __init_refok free_initmem(void)
...
2
votes
1answer
46 views
XCode: How to add preprocessor define for a single source file?
I want to add preprocessor macros for a couple files in my project, but not all the files. They're 3rd party sources, so I don't want to edit the files, as to avoid merge maintenance hassle when new ...
0
votes
0answers
21 views
mcpp (preprocessor) stripping empty character constants
I have a project I am migrating to the mcpp preprocessor from my OS X box's cpp implementation and there are numerous instances of empty character constants (e.g. foo = '') in my code. Running through ...
1
vote
0answers
37 views
macro to check if the return value of a function is being checked
I have a function
void *custom_get_value(ObjectPtr)
This function traditionally never used to return NULL.It can return any of the following values
uint32_t
int32_t
uint64_t
int64_t
uint8_t
...
0
votes
4answers
49 views
How to understand the operator “\” in define macro?
I'm using a micro controller STM32f100RB. In one of head files ,there's something I can not understand.The code is as following.Can anybody tell me What the symbol "\" is ? Is it an operator?How to ...
1
vote
1answer
57 views
iOS: check system version in #define and do different stuff, compiler error
I am using MKReverseGeocoder for iOS < 5 and CLGeocoder for iOS >= 5, but got a warning because MKReverseGeocoder is deprecated, then I tried to do something like:
#define SYSTEM_LOWER_THAN_5 ...
1
vote
1answer
41 views
Android NDK. How to omit path in __FILE__/__BASE_FILE__
I've searched SO and found that I could use __BASE_FILE__.
The problem I think is that ndk-build calls gcc with the full path to a file and I get that path __BASE_FILE__.
So, the question is how to ...
2
votes
1answer
61 views
#pragma warning - file specific?
Simple question, but I can't seem to find an answer in any reference material.
If I have a #pragma warning() directive, does the compiler only define that for the current file? Or is it propagated ...
2
votes
1answer
53 views
Escaping Markdown for use with the C preprocessor
I would like to combine Markdown and C-preprocessor directives in the same file. The problem is that # has a meaning in both languages. Assuming that the C-preprocessor runs first, how can I espace ...
3
votes
2answers
99 views
C preprocessor using the closing bracket of a parent macro
I have this code which works:
#include <stdio.h>
#define A(x) x B
#define B(x) C(x,
#define C(x,y) y x)
int main( void ) {
printf( A("1") ("2") "3" );
}
It prints 132 (the point of the A ...
1
vote
1answer
62 views
c preprocessor to determine project or exe name
I have a C resource file called resources.rc, which contains the following line to specify the icon used for a project
1000 ICON "icon222.ico"
I would like to use this same resource file for ...
0
votes
1answer
77 views
ACSL annotations on C macros
Is it possible to annotate C macros with ACSL?
eg:
/*@
assigns \nothing;
behavior xmin:
assumes x < y;
ensures \result == x;
behavior ymin:
assumes y <= ...
0
votes
5answers
147 views
preprocessor #if doesn't work
I'm trying to write a somehow-generic printArray function in c, which I will able to run with several programs, each with a different type of array.
I did this:
#define TYPE int /* or char or ...
0
votes
1answer
20 views
How to manage intermediate outputs efficiently?
I am implementing a C preprocessor in C...
I have the three functions:
trigraph replacing function
Line splicing function
comment removing function
However these functions work separately on ...
3
votes
6answers
85 views
Handling #ifdef's that were used to create multiple versions of an algorithm
I am trying to benchmark many (about 25) variations of an algorithm written in C++.
I implemented these variations using a combination of three methods:
copying code and making minor changes to ...
0
votes
1answer
31 views
How to make 'gcc -E' stop on #error
Is there a way to make GCC's preprocessor stop when it finds a #error, when running it with option -E?
For instance, in the following program:
#error STOP HERE
int main() {
return 0;
}
Running ...
2
votes
2answers
156 views
#ifndef in c file?
Is it possible to put #ifndef at the top of a c file? Basically I need to check whether a certain preprocessor constant was declared when running the program and my program will change accordingly.
I ...
5
votes
4answers
181 views
Generating Template Parameters at Compile Time
I've created a class that looks like an array, but rather than holding the data in the program itself, it streams the byte from a file (to reduce RAM impact). Now I've got all this working, but the ...
2
votes
3answers
183 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
2answers
96 views
Can anybody please explain the behavour of C preprocessor in following examples?
I am implementing a C macro preprocessor (C99)...
I am surprised by the following behaviour....
Ex1:
#define PASTE(x) X_##x
#define EXPAND(x) PASTE(x)
#define TABSIZE 1024
#define BUFSIZE TABSIZE
...
3
votes
2answers
87 views
and bitwise operator in C preprocessor
When I try the following code:
#if 11 & 10 == 10
#endif
the evaluation of expression is true but when I change that to the following:
#if 10 & 10 == 10
#endif
The evaluation returns ...
1
vote
0answers
77 views
3rd party libraries conflicting definitions/ redefinitons
I am working on Qt Platform with two separate libraries. The Problem that I am facing is that he two libraries have different declaration for int32_t.
The first library has :
#ifdef _WIN32
#if ...
1
vote
1answer
23 views
What does __real__ mean in C Preprocessor?
I am not able to find out the definition for __real__ in GNU C Preprocessor. Can anybody point me where i can find it ? I mean in which header file ? What is the significance of it?
5
votes
1answer
175 views
algorithm behind the generation of the reverse bits lookup table(8 bit)
I found the lookup table here. The table is generated as a reverse bits table of 8 bits.
I can not figure out why it works. Please explain the theory behind it. Thanks
static const unsigned char ...
0
votes
2answers
94 views
C macro get typeof argument
I am trying to write a macro to assist with object oriented programming in C. As I store the class information in a constant struct, I need to create a macro that does the following:
Take the type ...
2
votes
1answer
63 views
C macro adding to a typename
I am trying to create a C macro, that given a typename will append _info to it, take the address of that and a call a function with it. Example code (doesn't work):
#define new(X) ...
3
votes
3answers
188 views
Code complexity metrics and ifdefs
I was wondering how standard code complexity metrics (e.g., LOC, McCabe cyclomatic complexity, Halstead metrics, etc) are computed in the face of ifdefs in C/C++ code.
If ifdefs are ignored, syntax ...
3
votes
1answer
98 views
What is an easily hackable C preprocessor? [closed]
I want to add a small feature to a C preprocessor, but for that, I need one that is easy to understand and can easily be modified. Specifically, I am looking for the following criteria:
small ...
2
votes
3answers
168 views
size of size_t preprocessor value
I am creating an implementation of a hash table in C for educational purposes.
The hash function should return a size_t hash. Since the size of size_t is different in different platforms (and I ...
0
votes
2answers
67 views
Implementing C preprocessor
I am implementing a C preprocessor...
On Wiki, I found the following functionalities of it...
Trigraph replacement
Line splicing
Tokenization
Macro expansion and directive handling
File Inclusion
...
0
votes
3answers
96 views
Can I define the following macro “unstringifying” from a static const char* array?
I have, in a .c file, the following (this is a much smaller array to exemplify):
static const char* __someNames[] =
{
"Fox",
"Wulf",
"Cat"
};
Then later I am defining a macro like this:
...
1
vote
1answer
62 views
How can I use complex control flow, arithmetic or functional primitives in the C preprocessor?
I would like to be able to write preprocessor macros using a more fully fledged language. Such a language would ideally include the following features:
boolean and natural arithmetic and comparisons
...
0
votes
2answers
98 views
C preprocessor macro that turns string into token?
I am trying to write a C preprocessor Macro for LLVM that's used like:
vc(@"Browser")
and expands to:
[[BrowserViewController alloc] initWithNibName:@"BrowserViewController" bundle:nil]
The best ...
1
vote
5answers
196 views
Reset the C/C++ preprocessor #line the physical file/line
I have a code generator that's going to take some user-written code and embed chunks of it in a larger generated file. I want the underlying compiler to provide good diagnostics when there are defects ...
1
vote
3answers
89 views
Writing a Preprocessor Function: Is the syntax correct
I am experimenting with preprocessor function-like macros so I am trying to write a macro that forward declares regular functions. But when I go to compile it says that line 2 has incorrect syntax.
...
0
votes
2answers
114 views
Is partial macro application / currying possible in the C preprocessor?
As an example of the problem, is there any way to implement the macro partialconcat in the following code?
#define apply(f, x) f(x)
apply(partialconcat(he),llo) //should produce hello
EDIT:
...
0
votes
5answers
561 views
#define Square(x) (x*(x)) [duplicate]
Possible Duplicate:
square of a number being defined using #define
Can you please explain why the following code outputs "29"?
#define Square(x) (x*(x))
void main()
{
int x = 5;
...
0
votes
0answers
84 views
#define in macro body
I have the following use case
#define ConstantDouble( T )\
T( Alert, c_alert )
// I want to generate #define macro's dynamically
#define T( x, y ) #define #x y <-- Error
ConstantDouble( T )
...
0
votes
1answer
90 views
Odd behavior by #define
I have this code in C++:
#include <string>
#include <iostream>
int const foo = 1;
int const bar = 0;
#define foo bar
#define bar foo
int main()
{
std::cout << foo << ...
1
vote
1answer
125 views
Error while compiling: expected expression before ')' token
This is one of the conditions in my program:
if(Debug)fprintf(stdout,"Direction dir %d quot %d rem %0.2f %s\n",direction,quotient, remain, cardinal[quotient]);
I have defined everything and have ...
0
votes
2answers
188 views
What does Boost Wave not do?
Boost Wave provides a reusable C preprocessor. It's easy to obtain from the documentation the (extensive) list of the things it does do, standards it supports, features it includes etc.
What does it ...
0
votes
2answers
117 views
Is there a better way to fill array with precalculated values by templates (for using in runtime)?
So, assume I have a template structure-function fib<i>::value. I want to get nth fibonacci number in runtime. For this i create array fibs[] = { fib<0>::value, ... , fib<maxN>::value ...
2
votes
2answers
108 views
Why is GCC inserting seemingly unneeded variables into my assembly file?
I have an assembly file which can be seen below. It only has a few functions, and once compiled, I only want those functions to be in the binary.
#include <arm.h>
.section ...
2
votes
3answers
158 views
Is it possible to write c++ template/macros to check whether two functions have the same signatures
Is it possible to write c++ template/macros to check whether two functions have the same signatures (return type and arguments list) ?
Here's a simple example of how I want to use it:
int foo(const ...
2
votes
3answers
88 views
Way to omit undefined preprocessor branches by default with unifdef?
I'm using a complicated C code that includes many, many compilation options. This
makes the code very hard to read. I'd like to produce a copy of the code reflecting
the way it's actually compiled. ...


