vote up 2 vote down star

I am working on an embedded system, so memory is precious for me.

One issue that has been recurring is that I've been running out of memory space when attempting to compile a program for it. This is usually fixed by limiting the number of typedefs, etc that can take up a lot of space.

There is a macro generator that I use to create a file with a lot of #define's in it. Some of these are simple values, others are boundary checks

ie

#define SIGNAL1 (float)0.03f
#define SIGNAL1_ISVALID(value) ((value >= 0.0f) && (value <= 10.0f))

Now, I don't use all of these defines. I use some, but not actually the majority. I have been told that they don't actually take up any memory if they are not used, but I was unsure on this point. I'm hoping that by cutting out the unused ones that I can free up some extra memory (but again, I was told this is pointless).

Do unused #define's take up any memory space?

flag

Are you saying that you compile the software ON the embedded system? – pavium Aug 28 at 7:35
No, sorry for the confusion. I am compiling under Windows and generating a binary file – espais Aug 28 at 7:41
so are you running out of space while compiling or while running the executable? – Naveen Aug 28 at 7:42
Running out of space during the conversion (directly after compilation) to our specific binary format. – espais Aug 28 at 8:43
1  
typedefs also take up no space in the compiled image (though defining variables with them might). – Michael Burr Aug 28 at 15:24
show 1 more comment

4 Answers

vote up 13 vote down check

No, #defines take up no space unless they are used - #defines work like find/replace; whenever the compiler sees the left half, it'll replace it with the right half before it actually compiles.

So, if you have:

float f = SIGNAL1;

The compiler will literally interpret the statement:

float f = (float)0.03f;

It will never see the SIGNAL1, it won't show up in a debugger, etc.

link|flag
3  
Actually, the preprocessor does the macro replacement. By the time the source code gets to the actual compiler, all the macro calls have been textually replaced by whatever they're defined as. This means that it is somewhat dangerous to use an argument twice in a macro, because if the argument is something like i++, i will be incremented every time the argument appears in the macro expansion. So SIGNAL1_ISVALID(++i) expands to ((++i >= 0.0f) && (++i <= 10.0f)) – Chuck Aug 28 at 7:50
@Chuck You and I know that, but I was trying to make the answer easier to grok - thanks for mentioning this though! – Paul Betts Aug 28 at 7:55
Very good point as well. – espais Aug 28 at 8:44
Not strictly true about not showing up in a debugger. E.g: developer.apple.com/DOCUMENTATION/DeveloperTools/… (But usually true, and easier to grok the answer if you assume this ;) – benno Aug 28 at 12:32
vote up 0 vote down

Well, yes and no.

No, unused #defines won't increase the size of the resulting binary.

Yes, all #defines (whether used or unused) must be known by the compiler when building the binary.

By your question it's a bit ambiguous how you use the compiler, but it almost seems that you try to build directly on an embedded device; have you tried a cross-compiler? :)

link|flag
1  
#define`s are never known by the compiler. They are only known by the preprocessor, which uses them for textual substitution and #if`/#ifdef statements. Once we're out of the preprocessor and into the actual compiler, `#define`s are all replaced, and no longer exist (and if they aren't replaced, they become syntax errors or worse, missing symbols to the linker). – Chris Lutz Aug 28 at 7:49
P.S. Sorry about the random fixed-width fonts. Now I understand how the regex that SO uses to match code blocks works. – Chris Lutz Aug 28 at 7:50
Ah yes, but in a "loose" context like the one in this question (where the OP don't specify/care whether it's the compiler or preprocessor that runs out of memory) we can assume the preprocessing is part of the compilation process. – christoffer Aug 28 at 12:30
vote up 0 vote down

unused #defines doesn't take up space in the resulting executable. They do take up memory in the compiler itself whist compiling.

link|flag
vote up 0 vote down

This is usually fixed by limiting the number of typedefs, etc that can take up a lot of space.

You seem somewhat confused because typedef's do not take up space at runtime. They are merely aliases for data types. Now you may have instances of large structures (typedef'd or otherwise), but it is the instance that takes space, not the type definition. I wonder what 'etc' might cover in this statement.

Macro instances are replaced in the source code with their definition, and code generated accordingly, an unused macro does not result in any generated code.

Things that take up space are:

  1. Executable code (functions/member functions)
  2. Data instantiation (including C++ object instances)
  3. The amount of space allocated to the stack (or stacks in a multi-threaded system).

What is left is typically available for dynamic memory allocation (RAM), or is unused or made for non-volatile storage (Flash/EPROM).

Reducing memory usage is primarily a case of selecting/designing efficient data structures, using appropriate data types, and efficient code and algorithm design. It is best to target the area that will get the greatest benefit. To see the size of objects and code in your application, get the linker to generate a map file. That will tell you which are the largest functions, as well as the sizes of global and static objects.

Source file text length is not a good guide to code size. Large amounts of C code is declarative (typically header files are all declarative), and do not generate memory occupying code or data.

An embedded system does not necessarily imply small memory, so you should specify. I have worked on systems with 64Mb RAM and 2Mb Flash, and even that is modest compared with many systems. A typical micro-controller with on-chip resources however, will generally have much less (especially SRAM which takes up a lot of chip area). Also whether your system is Harvard or Von Neumann architecture is relevant here, since in a Harvard architecture data and code spaces are separate, so we need to know what it is you are short of. If Von Neumann, the code/data usage is still relevant if the code is running from ROM, or is it is copied from ROM to RAM at run-time (i.e. different types of memory, even if they are in the same address space).

Clifford

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.