Searched refs:_getfield (Results 1 - 25 of 45) sorted by relevance

12

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeGetField.java46 return javaCode() == Bytecodes._getfield;
H A DBytecodes.java219 public static final int _getfield = 180; // 0xb4 field in class:Bytecodes
740 def(_getfield , "getfield" , "bJJ" , null , BasicType.getTIllegal(), 0, true );
766 def(_fast_agetfield , "fast_agetfield" , "bJJ" , null , BasicType.getTObject() , 0, true , _getfield );
767 def(_fast_bgetfield , "fast_bgetfield" , "bJJ" , null , BasicType.getTInt() , 0, true , _getfield );
768 def(_fast_cgetfield , "fast_cgetfield" , "bJJ" , null , BasicType.getTChar() , 0, true , _getfield );
769 def(_fast_dgetfield , "fast_dgetfield" , "bJJ" , null , BasicType.getTDouble() , 0, true , _getfield );
770 def(_fast_fgetfield , "fast_fgetfield" , "bJJ" , null , BasicType.getTFloat() , 0, true , _getfield );
771 def(_fast_igetfield , "fast_igetfield" , "bJJ" , null , BasicType.getTInt() , 0, true , _getfield );
772 def(_fast_lgetfield , "fast_lgetfield" , "bJJ" , null , BasicType.getTLong() , 0, true , _getfield );
773 def(_fast_sgetfield , "fast_sgetfield" , "bJJ" , null , BasicType.getTShort() , 0, true , _getfield );
[all...]
H A DBytecodeDisassembler.java49 addBytecodeClass(Bytecodes._getfield, BytecodeGetField.class);
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecodes.cpp77 // a following _getfield rewrites itself.
475 def(_getfield , "getfield" , "bJJ" , NULL , T_ILLEGAL, 0, true );
502 def(_fast_agetfield , "fast_agetfield" , "bJJ" , NULL , T_OBJECT , 0, true , _getfield );
503 def(_fast_bgetfield , "fast_bgetfield" , "bJJ" , NULL , T_INT , 0, true , _getfield );
504 def(_fast_cgetfield , "fast_cgetfield" , "bJJ" , NULL , T_CHAR , 0, true , _getfield );
505 def(_fast_dgetfield , "fast_dgetfield" , "bJJ" , NULL , T_DOUBLE , 0, true , _getfield );
506 def(_fast_fgetfield , "fast_fgetfield" , "bJJ" , NULL , T_FLOAT , 0, true , _getfield );
507 def(_fast_igetfield , "fast_igetfield" , "bJJ" , NULL , T_INT , 0, true , _getfield );
508 def(_fast_lgetfield , "fast_lgetfield" , "bJJ" , NULL , T_LONG , 0, true , _getfield );
509 def(_fast_sgetfield , "fast_sgetfield" , "bJJ" , NULL , T_SHORT , 0, true , _getfield );
[all...]
H A Dbytecode.hpp263 bool is_getfield() const { return java_code() == Bytecodes::_getfield; }
H A Dbytecodes.hpp221 _getfield = 180, // 0xb4 enumerator in enum:Bytecodes::Code
H A Dinterpreter.cpp431 case Bytecodes::_getfield :
H A Drewriter.cpp334 case Bytecodes::_getfield : // fall through
H A DbytecodeTracer.cpp529 case Bytecodes::_getfield:
H A DinterpreterRuntime.cpp543 get_code = ((is_static) ? Bytecodes::_getstatic : Bytecodes::_getfield);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/jcore/
H A DByteCodeRewriter.java117 case Bytecodes._getfield:
/openjdk7/hotspot/src/share/vm/ci/
H A DciField.cpp319 bc == Bytecodes::_getfield || bc == Bytecodes::_putfield,
H A DciStreams.cpp265 assert(cur_bc() == Bytecodes::_getfield ||
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DConstants.java354 _getfield = 180, // 0xb4 field in class:Constants
/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.hpp273 case Bytecodes::_getfield : // fall through
H A DmethodOop.cpp463 if (java_code_at(1) != Bytecodes::_getfield) return false;
/openjdk7/hotspot/src/share/vm/prims/
H A DmethodComparator.cpp150 case Bytecodes::_getfield : // fall through
H A DjvmtiClassFileReconstituter.cpp720 case Bytecodes::_getfield : // fall through
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkInliner.cpp474 case Bytecodes::_getfield:
H A DsharkTopLevelBlock.cpp77 case Bytecodes::_getfield:
83 is_field = (bc() == Bytecodes::_getfield || bc() == Bytecodes::_putfield);
H A DsharkBlock.cpp368 case Bytecodes::_getfield:
/openjdk7/hotspot/src/cpu/zero/vm/
H A DcppInterpreter_zero.cpp495 code[1] == Bytecodes::_getfield &&
504 if (!entry->is_resolved(Bytecodes::_getfield)) {
/openjdk7/hotspot/src/share/vm/compiler/
H A DmethodLiveness.cpp784 case Bytecodes::_getfield:
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRAssembler.cpp70 case Bytecodes::_getfield:
H A Dc1_GraphBuilder.cpp1565 case Bytecodes::_getfield: {
2670 case Bytecodes::_getfield : // fall through
2801 , Bytecodes::_getfield

Completed in 153 milliseconds

12