Are CPU registers and CPU cache different?

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

Yes, CPU register is just a small amount of data storage, that facilitates some CPU operations.

CPU cache, it is a high speed volatile memory which is bigger in size, that helps the processor to reduce the memory operations.

link|improve this answer
2  
The CPU registers contain the numbers the CPU calculates with. – Georg Schölly Aug 17 '10 at 8:12
feedback

It is not very inaccurate to think of the processor's register as the level 0 cache, smaller and faster than the other layers of cache in-between the processor and memory. The difference is only that from the point of view of the instruction set, cache access is transparent (the cache is accessed through a memory address that happens to be a cached address at the moment) whereas registers are explicitly referenced in each instruction.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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