52
votes
60answers
6k views
What is the worst real-world macros/pre-processor abuse you’ve ever come across?
What is the worst real-world macros/pre-processor abuse you've ever come across (please no contrived IOCCC answers *haha*)?
Please add a short snippet or story if it is really ent …
33
votes
5answers
2k views
Why are there sometimes meaningless do/while and if/else statements in C/C++ macros?
In many C/C++ macros I'm seeing the code of the macro wrapped in what seems like a meaningless do while loop. Here are examples.
#define FOO(X) do { f(X); g(X); } while (0)
#defi …
19
votes
34answers
3k views
When are C++ macros beneficial?
The C preprocessor is justifiably feared and shunned by the C++ community. In-lined functions, consts and templates are usually a safer and superior alternative to a #define.
The …
16
votes
8answers
1k views
What makes lisp macros so special
Reading Paul Graham's essays on programming languages one would think that Lisp macros are the only way to go. As a busy developer working on other platforms I have not had the pri …
13
votes
9answers
1k views
Pythonic macro syntax
I've been working on an alternative compiler front-end for Python where all syntax is parsed via macros. I'm finally to the point with its development that I can start work on a s …
10
votes
8answers
1k views
likely/unlikely macros in the Linux kernel
I've been digging through some parts of the Linux kernel, and found calls like this:
if (unlikely(fd < 0))
{
/* Do something */
}
or
if (likely(!err))
{
/* Do someth …
10
votes
13answers
1k views
How do you create a debug only function that takes a variable argument list? Like printf()
I'd like to make a debug logging function with the same parameters as printf. But one that can be removed by the pre-processor during optimized builds.
For example:
Debug_Print( …
9
votes
4answers
441 views
What’s the use of do while(0) when we define a macro?
I'm reading the linux kernel and I found many macros like this:
#define INIT_LIST_HEAD(ptr) do { \
(ptr)->next = (ptr); (ptr)->prev = (ptr); \
} while (0)
Why do they …
9
votes
18answers
1k views
How far can LISP macros go?
I have read a lot that LISP can redefine syntax on the fly, presumably with macros. I am curious how far does this actually go? Can you redefine the language structure so much th …
8
votes
2answers
345 views
Functional programming in C with macro “Higher Order Function” generators
Pay attention carefully because this is a hell of a question ;-)
I want to use template functions for generic collection actions (like search, foreach, etc.) in C while maintainin …
8
votes
7answers
1k views
Macro to replace C++ operator new
Is it possible to create macros to replace all forms of operator new with overloads that include additional args...say __FILE__ and __LINE__?
The trouble appears to be that operat …
8
votes
13answers
1k views
Are C++ Templates just Macros in disguise?
I've been programming in C++ for a few years, and I've used STL quite a bit and have created my own template classes a few times to see how it's done.
Now I'm trying to integrate …
7
votes
12answers
531 views
Why use Macros in C? [closed]
Possible Duplicate:
What are C macros useful for?
Every few months I get an itch to go learn some bit of C that my crap college programming education never covered. Today …
7
votes
3answers
205 views
Emacs: getting readable keyboard-macros
When using insert-kbd-macro to save a named keyboard-macro I get "unreadable" lisp-code like
(fset 'ppsql
(lambda (&optional arg) "Keyboard macro." (interactive "p") (kmacr …
7
votes
12answers
798 views
What are C macros useful for?
I have written a little bit of C, and I can read it well enough to get a general idea of what it is doing, but every time I have encountered a macro it has thrown me completely. I …
