< prev index next >
src/hotspot/share/interpreter/bytecode.hpp
Print this page
*** 291,300 ****
--- 291,309 ----
// Returns index
long index() const { return get_index_u2(Bytecodes::_new); };
};
+ class Bytecode_defaultvalue: public Bytecode {
+ public:
+ Bytecode_defaultvalue(Method* method, address bcp): Bytecode(method, bcp) { verify(); }
+ void verify() const { assert(java_code() == Bytecodes::_defaultvalue, "check defaultvalue"); }
+
+ // Returns index
+ long index() const { return get_index_u2(Bytecodes::_defaultvalue); };
+ };
+
class Bytecode_multianewarray: public Bytecode {
public:
Bytecode_multianewarray(Method* method, address bcp): Bytecode(method, bcp) { verify(); }
void verify() const { assert(java_code() == Bytecodes::_multianewarray, "check new"); }
< prev index next >