ReservedCodeCacheSize (and InitialCodeCacheSize) is an option for the (just-in-time) compiler of the Java Hotspot VM. Basically it sets the maximum size for the compiler's code cache.
The cache can become full, which results in warnings like Java HotSpot(TM) Client VM warning: CodeCache is full. Compiler has been disabled. Java HotSpot(TM) Client VM warning: Try increasing the code cache size using -XXReservedCodeCacheSize=. Must worse when followed by Java HotSpot(TM) Client VM warning: Exception java.lang.OutOfMemoryError occurred dispatching signal SIGINT to handler- the VM may need to be forcibly terminated.
When to set this option?
- when having Hotspot compiler failures
- to reduce memory needed by the JVM (and hence risking JIT compiler failures)
Normally you'd not change this value. I think the default values are quite good balanced because this problems occur on very rare occasions only (in my experince).