< prev index next >

src/hotspot/share/classfile/verificationType.hpp

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_CLASSFILE_VERIFICATIONTYPE_HPP
  26 #define SHARE_VM_CLASSFILE_VERIFICATIONTYPE_HPP
  27 
  28 #include "classfile/systemDictionary.hpp"
  29 #include "memory/allocation.hpp"
  30 #include "oops/instanceKlass.hpp"
  31 #include "oops/oop.hpp"
  32 #include "oops/symbol.hpp"
  33 #include "runtime/handles.hpp"
  34 #include "runtime/signature.hpp"
  35 
  36 enum {
  37   // As specifed in the JVM spec
  38   ITEM_Top = 0,
  39   ITEM_Integer = 1,
  40   ITEM_Float = 2,
  41   ITEM_Double = 3,
  42   ITEM_Long = 4,
  43   ITEM_Null = 5,
  44   ITEM_UninitializedThis = 6,
  45   ITEM_Object = 7,
  46   ITEM_Uninitialized = 8,
  47   ITEM_Bogus = (uint)-1
  48 };
  49 




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_CLASSFILE_VERIFICATIONTYPE_HPP
  26 #define SHARE_VM_CLASSFILE_VERIFICATIONTYPE_HPP
  27 
  28 #include "classfile/systemDictionary.hpp"

  29 #include "oops/instanceKlass.hpp"
  30 #include "oops/oop.hpp"
  31 #include "oops/symbol.hpp"
  32 #include "runtime/handles.hpp"
  33 #include "runtime/signature.hpp"
  34 
  35 enum {
  36   // As specifed in the JVM spec
  37   ITEM_Top = 0,
  38   ITEM_Integer = 1,
  39   ITEM_Float = 2,
  40   ITEM_Double = 3,
  41   ITEM_Long = 4,
  42   ITEM_Null = 5,
  43   ITEM_UninitializedThis = 6,
  44   ITEM_Object = 7,
  45   ITEM_Uninitialized = 8,
  46   ITEM_Bogus = (uint)-1
  47 };
  48 


< prev index next >