agent/src/share/classes/sun/jvm/hotspot/code/CodeBlob.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 6879063 Sdiff agent/src/share/classes/sun/jvm/hotspot/code

agent/src/share/classes/sun/jvm/hotspot/code/CodeBlob.java

Print this page




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  20  * CA 95054 USA or visit www.sun.com if you need additional information or
  21  * have any questions.
  22  *
  23  */
  24 
  25 package sun.jvm.hotspot.code;
  26 
  27 import java.io.*;
  28 import java.util.*;
  29 
  30 import sun.jvm.hotspot.asm.x86.*;
  31 import sun.jvm.hotspot.compiler.*;
  32 import sun.jvm.hotspot.debugger.*;
  33 import sun.jvm.hotspot.runtime.*;
  34 import sun.jvm.hotspot.types.*;
  35 import sun.jvm.hotspot.utilities.*;
  36 
  37 public class CodeBlob extends VMObject {
  38   private static AddressField  nameField;
  39   private static CIntegerField sizeField;
  40   private static CIntegerField headerSizeField;
  41   private static CIntegerField relocationSizeField;
  42   private static CIntegerField instructionsOffsetField;
  43   private static CIntegerField frameCompleteOffsetField;
  44   private static CIntegerField dataOffsetField;
  45   private static CIntegerField oopsOffsetField;
  46   private static CIntegerField oopsLengthField;
  47   private static CIntegerField frameSizeField;
  48   private static AddressField  oopMapsField;
  49 
  50   // Only used by server compiler on x86; computed over in SA rather




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  20  * CA 95054 USA or visit www.sun.com if you need additional information or
  21  * have any questions.
  22  *
  23  */
  24 
  25 package sun.jvm.hotspot.code;
  26 
  27 import java.io.*;
  28 import java.util.*;
  29 

  30 import sun.jvm.hotspot.compiler.*;
  31 import sun.jvm.hotspot.debugger.*;
  32 import sun.jvm.hotspot.runtime.*;
  33 import sun.jvm.hotspot.types.*;
  34 import sun.jvm.hotspot.utilities.*;
  35 
  36 public class CodeBlob extends VMObject {
  37   private static AddressField  nameField;
  38   private static CIntegerField sizeField;
  39   private static CIntegerField headerSizeField;
  40   private static CIntegerField relocationSizeField;
  41   private static CIntegerField instructionsOffsetField;
  42   private static CIntegerField frameCompleteOffsetField;
  43   private static CIntegerField dataOffsetField;
  44   private static CIntegerField oopsOffsetField;
  45   private static CIntegerField oopsLengthField;
  46   private static CIntegerField frameSizeField;
  47   private static AddressField  oopMapsField;
  48 
  49   // Only used by server compiler on x86; computed over in SA rather


agent/src/share/classes/sun/jvm/hotspot/code/CodeBlob.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File