Searched refs:java_code (Results 1 - 14 of 14) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
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 Dbytecode.cpp201 if (Bytecodes::java_code(rawc) == Bytecodes::_ldc)
238 switch (Bytecodes::java_code(code())) {
252 switch (Bytecodes::java_code(code())) {
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
H A DbytecodeStream.hpp199 code = Bytecodes::java_code(raw_code);
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 DbytecodeTracer.cpp376 Bytecodes::Code code = Bytecodes::java_code(raw_code());
/openjdk7/hotspot/src/share/vm/ci/
H A DciStreams.hpp127 Bytecodes::Code next_bc() { return Bytecodes::java_code((Bytecodes::Code)* _pc); }
140 _bc = Bytecodes::java_code(_raw_bc = (Bytecodes::Code)*_pc);
H A DciField.cpp351 Bytecodes::java_code(bc),
H A DciStreams.cpp98 bc = Bytecodes::java_code(_raw_bc = (Bytecodes::Code)_pc[1]);
/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;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.cpp713 LinkResolver::resolve_field(result, constants, field_access.index(), Bytecodes::java_code(code), false, CHECK_NULL);
826 LinkResolver::resolve_field(result, constants, field_access.index(), Bytecodes::java_code(code), false, CHECK);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateTable_x86_32.cpp262 __ cmpl(temp_reg, (int)Bytecodes::java_code(bc));
815 assert(Bytecodes::java_code(Bytecodes::_fast_iaccess_0) == Bytecodes::_aload_0, "fix bytecode definition");
821 assert(Bytecodes::java_code(Bytecodes::_fast_aaccess_0) == Bytecodes::_aload_0, "fix bytecode definition");
827 assert(Bytecodes::java_code(Bytecodes::_fast_faccess_0) == Bytecodes::_aload_0, "fix bytecode definition");
833 assert(Bytecodes::java_code(Bytecodes::_fast_aload_0) == Bytecodes::_aload_0, "fix bytecode definition");
H A DtemplateTable_x86_64.cpp268 __ cmpl(temp_reg, (int) Bytecodes::java_code(bc));
828 assert(Bytecodes::java_code(Bytecodes::_fast_iaccess_0) ==
836 assert(Bytecodes::java_code(Bytecodes::_fast_aaccess_0) ==
844 assert(Bytecodes::java_code(Bytecodes::_fast_faccess_0) ==
852 assert(Bytecodes::java_code(Bytecodes::_fast_aload_0) ==
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateTable_sparc.cpp206 Bytecodes::Code orig_bytecode = Bytecodes::java_code(bc);
726 assert(Bytecodes::java_code(Bytecodes::_fast_iaccess_0) == Bytecodes::_aload_0, "adjust fast bytecode def");
732 assert(Bytecodes::java_code(Bytecodes::_fast_aaccess_0) == Bytecodes::_aload_0, "adjust fast bytecode def");
738 assert(Bytecodes::java_code(Bytecodes::_fast_faccess_0) == Bytecodes::_aload_0, "adjust fast bytecode def");
744 assert(Bytecodes::java_code(Bytecodes::_fast_aload_0) == Bytecodes::_aload_0, "adjust fast bytecode def");

Completed in 85 milliseconds