comparison agent/src/share/classes/sun/jvm/hotspot/runtime/VM.java @ 331:cecd8eb4e0ca

6706829: Compressed Oops: add debug info for narrow oops Summary: Add support for narrow oops in debug info to avoid decoding. Reviewed-by: rasbold, never
author kvn
date Wed, 10 Sep 2008 18:23:32 -0700
parents d1605aabd0a1
children 660978a2a31a 54782a4cd321
comparison
equal deleted inserted replaced
330:1c6e3bfb543a 331:cecd8eb4e0ca
619 bytes = new Bytes(debugger.getMachineDescription()); 619 bytes = new Bytes(debugger.getMachineDescription());
620 } 620 }
621 return bytes; 621 return bytes;
622 } 622 }
623 623
624 /** Returns true if this is a isBigEndian, false otherwise */
625 public boolean isBigEndian() {
626 return isBigEndian;
627 }
628
624 /** Returns true if this is a "core" build, false if either C1 or C2 629 /** Returns true if this is a "core" build, false if either C1 or C2
625 is present */ 630 is present */
626 public boolean isCore() { 631 public boolean isCore() {
627 return (!(usingClientCompiler || usingServerCompiler)); 632 return (!(usingClientCompiler || usingServerCompiler));
628 } 633 }