< prev index next >

src/hotspot/share/classfile/verifier.hpp

Print this page

        

*** 94,104 **** #define CHECK_VERIFY(verifier) \ CHECK); if ((verifier)->has_error()) return; ((void)0 #define CHECK_VERIFY_(verifier, result) \ CHECK_(result)); if ((verifier)->has_error()) return (result); ((void)0 ! class TypeOrigin VALUE_OBJ_CLASS_SPEC { private: typedef enum { CF_LOCALS, // Comes from the current frame locals CF_STACK, // Comes from the current frame expression stack SM_LOCALS, // Comes from stackmap locals --- 94,104 ---- #define CHECK_VERIFY(verifier) \ CHECK); if ((verifier)->has_error()) return; ((void)0 #define CHECK_VERIFY_(verifier, result) \ CHECK_(result)); if ((verifier)->has_error()) return (result); ((void)0 ! class TypeOrigin { private: typedef enum { CF_LOCALS, // Comes from the current frame locals CF_STACK, // Comes from the current frame expression stack SM_LOCALS, // Comes from stackmap locals
*** 144,154 **** #ifdef ASSERT void print_on(outputStream* str) const; #endif }; ! class ErrorContext VALUE_OBJ_CLASS_SPEC { private: typedef enum { INVALID_BYTECODE, // There was a problem with the bytecode WRONG_TYPE, // Type value was not as expected FLAGS_MISMATCH, // Frame flags are not assignable --- 144,154 ---- #ifdef ASSERT void print_on(outputStream* str) const; #endif }; ! class ErrorContext { private: typedef enum { INVALID_BYTECODE, // There was a problem with the bytecode WRONG_TYPE, // Type value was not as expected FLAGS_MISMATCH, // Frame flags are not assignable
< prev index next >