vote up 2 vote down star
1

Where are variables in C++ stored?

Inside the RAM or the processor's cache?

flag
This question makes no sense, since (most) caches are transparent and are really just a part of the memory system. It's also flawed because it really depends on the architecture and the compiler where C++ (or any compiled language's) variables get stored. – tgamblin Oct 23 '08 at 17:26
Also, the question title could be significantly improved – jonner Oct 23 '08 at 18:24
@Tal, as others have said, as stated the question is kind of vague. Maybe you want to look at people's comments and see if you can ask a little more specific question. – Onorio Catenacci Oct 23 '08 at 18:27
What can we do with questions that should be unasked? Can I tag them with "Mu"? – Arkadiy Oct 23 '08 at 21:00
OK, I've gone and done it. en.wikipedia.org/wiki/W%C3%BA – Arkadiy Oct 23 '08 at 21:03

8 Answers

vote up 0 vote down

Variables can be held in a number of different places, sometimes in more than one place. Most variables are placed in RAM when a program is loaded; sometimes variables which are declared const are instead placed in ROM. Whenever a variable is accessed, if it is not in the processor's cache, a cache miss will result, and the processor will stall while the variable is copied from RAM/ROM into the cache.

If you have any halfway decent optimizing compiler, local variables will often instead be stored in a processor's register file. Variables will move back and forth between RAM, the cache, and the register file as they are read and written, but they will generally always have a copy in RAM/ROM, unless the compiler decides that's not necessary.

link|flag
Compilers for normal, non-embedded architectures do not place variables in "ROM." – Dan Oct 23 '08 at 17:23
ROM conventionally means memory that is written only during manufacture - const variables are still stored in the computer's RAM, but just aren't written to during the program execution – Chris Johnson Oct 23 '08 at 17:24
Stroustrup often talks about variables stored in ROM. As does the C++ Standards committee ( open-std.org/jtc1/sc22/… pg. 75). In reality, it's not physical ROM, but instead a section of the executable for data (in ELF it's the .text section). – Max Lybbert Oct 23 '08 at 18:23
vote up 4 vote down

Variables in C++ are stored either on the stack or the heap.

stack:

int x;

heap:

int *p = new int;

That being said, both are structures built in RAM.

If your RAM usage is high though windows can swap this out to disk.

When computation is done on variables, the memory will be copied to registers.

link|flag
vote up 0 vote down

depending on how they are declared, they will either be stored in the "heap" or the "stack"

The heap is a dynamic data structure that the application can use.

When the application uses data it has to be moved to the CPU's registers right before they are consumed, however this is very volatile and temporary storage.

link|flag
vote up 16 vote down

Variables are stored:

  • on the stack, if they're "automatic" function-local variables
  • on the heap, if they're allocated with new or malloc, etc.
  • in a per-process data area if they are global or static

This is all in RAM, of course. Caching is transparent to userspace processes, though it may visibily affect performance.

Compilers may optimize code to store variables in registers. This is highly compiler and code-dependent, but good compilers will do so aggressively.

link|flag
Actually, variables are not stored in the heap. You may have a variable that points to something in the heap, but the variable itself will be in a register, on a stack, or be statically allocated. – Kristopher Johnson Oct 23 '08 at 17:29
Kristopher, a valid point. In the C++ definition, the variable is the pointer, not the pointed-to array, so you're right. – Dan Oct 23 '08 at 19:12
vote up 6 vote down

Variables are usually stored in RAM. This is either on the heap (e.g. all global variables will usually go there) or on the stack (all variables declared within a method/function usually go there). Stack and Heap are both RAM, just different locations. Pointers have different rules. The pointer to something (a memory block, an object, etc.) itself usually follows the rules of above (a pointer declared within a function is stored on the stack), but the data it points to (the memory block itself or the object you created with new) is stored on the heap. You can create pointers pointing to the stack (e.g. "int a = 10; int * b = &a;", b points to a and a is stored on the stack), but memory allocation using malloc or new counts towards heap memory.

What goes into CPU cache is beyond compilers control, the CPU decides itself what to cache and how to long to cache it (depending on factors like "Has this data been recently used?" or "Is it to be expected that the data is used pretty soon again?" and of course the size of the cache has a big influence for how long CPUs will keep data there - the more cache they have, the more data they can cache and the longer they can keep data there before freeing up cache space for new data).

The compiler might only decide if data goes into a CPU register. Usually data is kept there if it's accessed very often in a row (since register access is faster than cache and much faster than RAM). Some operations on some systems can actually only be performed if the data is in a register - however the compiler will decide whether to copy the data back to RAM immediately after performing an operation on it or to keep it there to perform many more operations on it before writing it back to RAM. It will always try to keep the most often accessed data in a register if possible and if it runs out of registers (depending on how many registers your CPU has), it will decide if it's better to write the data back to RAM (and fetch it from there when needed again), or just temporarily swap the data onto stack and later on fetch it back from there (even though stack is RAM as well, usually using the stack is faster since CPUs usually have the top of stack cached anyway, so pushing to and popping from stack might in fact be only writing to cache and reading back from there, the data might never arrive at memory at all). However when code flow jumps from one method/function to another one, usually all registers are written back to memory, as the compiler can hardly say for sure that the called function/method will not access the memory where the register data came from and when not writing the data back, the function might see an old value still present in memory, as the new value is only in a register and has not been written back yet.

link|flag
vote up 10 vote down

For C++ in general, the proper answer is "wherever your compiler decides to put them". You should not make assumptions otherwise, uless you somehow direct your compiler otherwise. Some variables can be stored entirely in registers, and some might be totally optimized away and replaced by a literal somewhere. With some compilers on some platforms, constants might actually end up in ROM.

The part of your question about "the processor's cache" is a bit confused. There are some tools for directing how the processor handles its cache, but in general that is the processor's business and should be invisible to you. You can think of the cache as your CPU's window into RAM. Pretty much any memory access goes through the cache.

On the other end of the equation, unused RAM sometimes will get swapped out to disk on most OSes. So its possible (but unlikely) that at some moments your variables are actually being stored on disk. :-)

link|flag
vote up 3 vote down

I think you are mixing up two concepts. One, how does the C++ language store variables in memory. Two, how does the computer and operating system manage that memory.

In C++, variables can be allocated on the stack, which is memory that is reserved for the program's use and is fixed in size at thread start or in dynamic memory which can be allocated on the fly using new. A compiler can also choose to store the variables on registers in the processor if analysis of the code will allow it. Those variables would never see the system memory.

If a variable ends up in memory, the OS and the processor chip set take over. Both stack based addresses and dynamic addresses are virtual. That means that they may or may not be resident in system memory at any given time. The in memory variable may be stored in the systems memory, paged onto disk or may be resident in a cache on or near the processor. So, it's hard to know where that data is actually living. If a program hasn't been idle for a time or two programs are competing for memory resources, the value can be saved off to disk in the page file and restored when it is the programs turn to run. If the variable is local to some work being done, it could be modified in the processors cache several times before it is finally flushed back to the system memory. The code you wrote would never know this happened. All it knows is that it has an address to operate on and all of the other systems take care of the rest.

link|flag
In most modern systems, the stack is not fixed in size, but is automatically extended by the operating system on the occurrence of a page fault (because of an empty stack). – Paul de Vrieze Oct 23 '08 at 19:07
In your answer, it becomes very clear that two different things are going on: the language's "object model" and the RAM/SwapFile/Caching system. Nice answer! – xtofl Oct 23 '08 at 19:44
Hi Paul. Thanks for the comment. You're right that the stack is virtual memory and can be paged. My point was that it was fixed in size when allocated at thread start. This is governed by the linker. – Todd Oct 23 '08 at 20:17
vote up 4 vote down

C++ is not aware of your processor's cache.

When you are running a program, written in C++ or any other language, your CPU will keep a copy of "popular" chunks of RAM in a cache. That's done at the hardware level.

Don't think of CPU cache as "other" or "more" memory...it's just a mechanism to keep some chunks of RAM close by.

link|flag

Your Answer

Get an OpenID
or

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