< prev index next >

src/share/vm/interpreter/bytecodes.hpp

Print this page

        

*** 351,362 **** #endif static bool check_must_rewrite(Bytecodes::Code bc); public: // Conversion ! static void check (Code code) { assert(is_defined(code), err_msg("illegal code: %d", (int)code)); } ! static void wide_check (Code code) { assert(wide_is_defined(code), err_msg("illegal code: %d", (int)code)); } static Code cast (int code) { return (Code)code; } // Fetch a bytecode, hiding breakpoints as necessary. The method // argument is used for conversion of breakpoints into the original --- 351,362 ---- #endif static bool check_must_rewrite(Bytecodes::Code bc); public: // Conversion ! static void check (Code code) { assert(is_defined(code), "illegal code: %d", (int)code); } ! static void wide_check (Code code) { assert(wide_is_defined(code), "illegal code: %d", (int)code); } static Code cast (int code) { return (Code)code; } // Fetch a bytecode, hiding breakpoints as necessary. The method // argument is used for conversion of breakpoints into the original
< prev index next >