< prev index next >

src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/BasicType.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 38,48 **** public static final int tLong = 11; public static final int tObject = 12; public static final int tArray = 13; public static final int tVoid = 14; public static final int tAddress = 15; ! public static final int tConflict = 16; public static final int tIllegal = 99; public static final BasicType T_BOOLEAN = new BasicType(tBoolean); public static final BasicType T_CHAR = new BasicType(tChar); public static final BasicType T_FLOAT = new BasicType(tFloat); --- 38,51 ---- public static final int tLong = 11; public static final int tObject = 12; public static final int tArray = 13; public static final int tVoid = 14; public static final int tAddress = 15; ! public static final int tNarrowOop = 16; ! public static final int tMetadata = 17; ! public static final int tNarrowKlass = 18; ! public static final int tConflict = 19; public static final int tIllegal = 99; public static final BasicType T_BOOLEAN = new BasicType(tBoolean); public static final BasicType T_CHAR = new BasicType(tChar); public static final BasicType T_FLOAT = new BasicType(tFloat);
*** 53,62 **** --- 56,68 ---- public static final BasicType T_LONG = new BasicType(tLong); public static final BasicType T_OBJECT = new BasicType(tObject); public static final BasicType T_ARRAY = new BasicType(tArray); public static final BasicType T_VOID = new BasicType(tVoid); public static final BasicType T_ADDRESS = new BasicType(tAddress); + public static final BasicType T_NARROWOOP = new BasicType(tNarrowOop); + public static final BasicType T_METADATA = new BasicType(tMetadata); + public static final BasicType T_NARROWKLASS = new BasicType(tNarrowKlass); public static final BasicType T_CONFLICT = new BasicType(tConflict); public static final BasicType T_ILLEGAL = new BasicType(tIllegal); public static int getTBoolean() { return tBoolean;
*** 104,113 **** --- 110,131 ---- public static int getTAddress() { return tAddress; } + public static int getTNarrowOop() { + return tNarrowOop; + } + + public static int getTMetadata() { + return tMetadata; + } + + public static int getTNarrowKlass() { + return tNarrowKlass; + } + /** For stack value type with conflicting contents */ public static int getTConflict() { return tConflict; }
< prev index next >