hotspot/src/share/vm/runtime/vm_operations.hpp
changeset 31234 48000028382c
parent 29071 73f45d04ad7a
child 31790 4a08476437e8
equal deleted inserted replaced
31027:6df6a1332f23 31234:48000028382c
   190   }
   190   }
   191 
   191 
   192   static const char* mode_to_string(Mode mode);
   192   static const char* mode_to_string(Mode mode);
   193 
   193 
   194   // Debugging
   194   // Debugging
   195   void print_on_error(outputStream* st) const;
   195   virtual void print_on_error(outputStream* st) const;
   196   const char* name() const { return _names[type()]; }
   196   const char* name() const { return _names[type()]; }
   197   static const char* name(int type) {
   197   static const char* name(int type) {
   198     assert(type >= 0 && type < VMOp_Terminating, "invalid VM operation type");
   198     assert(type >= 0 && type < VMOp_Terminating, "invalid VM operation type");
   199     return _names[type];
   199     return _names[type];
   200   }
   200   }