agent/src/share/classes/sun/jvm/hotspot/runtime/VM.java
*** 619,628 **** --- 619,633 ---- bytes = new Bytes(debugger.getMachineDescription()); } return bytes; } + /** Returns true if this is a isBigEndian, false otherwise */ + public boolean isBigEndian() { + return isBigEndian; + } + /** Returns true if this is a "core" build, false if either C1 or C2 is present */ public boolean isCore() { return (!(usingClientCompiler || usingServerCompiler)); }