comparison jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/CompilerToVM.java @ 23994:ebce30b702eb

[GR-2538] reduced memory overhead of HotSpotVMConfigStore
author Doug Simon <doug.simon@oracle.com>
date Thu, 02 Feb 2017 23:58:25 +0100
parents 1b8892b4ce9c
children 11f0412408cd
comparison
equal deleted inserted replaced
23993:7b65bd0ebeb7 23994:ebce30b702eb
629 * 629 *
630 * @param frame 630 * @param frame
631 * @return the number of bytes required for deoptimization of this frame state 631 * @return the number of bytes required for deoptimization of this frame state
632 */ 632 */
633 native int interpreterFrameSize(BytecodeFrame frame); 633 native int interpreterFrameSize(BytecodeFrame frame);
634
635 /**
636 * Gets the value of the VM flag named {@code name} boxed in an Object.
637 *
638 * @param name name of a VM option
639 * @return {@code null} if the named VM option doesn't exist
640 */
641 native Object getFlagValue(String name);
634 } 642 }