hotspot/src/share/vm/interpreter/bytecodes.hpp
changeset 33105 294e48b4f704
parent 30117 cce2cdac56dc
child 37466 287c4ebd11b0
equal deleted inserted replaced
33104:a7c0f60a1294 33105:294e48b4f704
   351 #endif
   351 #endif
   352   static bool check_must_rewrite(Bytecodes::Code bc);
   352   static bool check_must_rewrite(Bytecodes::Code bc);
   353 
   353 
   354  public:
   354  public:
   355   // Conversion
   355   // Conversion
   356   static void        check          (Code code)    { assert(is_defined(code),      err_msg("illegal code: %d", (int)code)); }
   356   static void        check          (Code code)    { assert(is_defined(code),      "illegal code: %d", (int)code); }
   357   static void        wide_check     (Code code)    { assert(wide_is_defined(code), err_msg("illegal code: %d", (int)code)); }
   357   static void        wide_check     (Code code)    { assert(wide_is_defined(code), "illegal code: %d", (int)code); }
   358   static Code        cast           (int  code)    { return (Code)code; }
   358   static Code        cast           (int  code)    { return (Code)code; }
   359 
   359 
   360 
   360 
   361   // Fetch a bytecode, hiding breakpoints as necessary.  The method
   361   // Fetch a bytecode, hiding breakpoints as necessary.  The method
   362   // argument is used for conversion of breakpoints into the original
   362   // argument is used for conversion of breakpoints into the original