Searched defs:java_code (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecodes.cpp168 void Bytecodes::def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap, Code java_code) { argument
176 _java_code [code] = java_code;
179 if (java_code != code) bc_flags |= _bc_can_rewrite;
554 Code java = java_code(code);
H A Dbytecode.hpp82 Bytecodes::Code java_code() const { return Bytecodes::java_code(code()); } function in class:Bytecode
83 Bytecodes::Code invoke_code() const { return (code() == Bytecodes::_invokehandle) ? code() : java_code(); }
263 bool is_getfield() const { return java_code() == Bytecodes::_getfield; }
264 bool is_putfield() const { return java_code() == Bytecodes::_putfield; }
265 bool is_getstatic() const { return java_code() == Bytecodes::_getstatic; }
266 bool is_putstatic() const { return java_code() == Bytecodes::_putstatic; }
282 void verify() const { assert(Bytecodes::java_code(code()) == Bytecodes::_checkcast, "check checkcast"); }
301 void verify() const { assert(java_code() == Bytecodes::_new, "check new"); }
310 void verify() const { assert(java_code()
[all...]
H A Dbytecodes.hpp350 static void def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap, Code java_code);
380 return java_code(code_at(method, bcp));
403 static Code java_code (Code code) { check(code); return _java_code [code]; } function in class:Bytecodes
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java825 private static void def(int code, String name, String format, String wide_format, int result_type, int depth, boolean can_trap, int java_code) { argument
835 _java_code [code] = java_code;
840 if (java_code != code) bc_flags |= _bc_can_rewrite;

Completed in 42 milliseconds