This key disables "Scalar Replacement Optimization"
Simply put, when an object is identified as non-escaping, the JVM can replace its allocation to the heap with the distribution of its members on the stack, which reduces the lack of stack allocation controlled by the user. Optimization is enabled by default with JDK 6U23 in the hotspot server compiler.
Additional Information.
source
share