Searched refs:_getstatic (Results 1 - 25 of 40) sorted by relevance

12

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeGetStatic.java46 return javaCode() == Bytecodes._getstatic;
H A DBytecodeDisassembler.java50 addBytecodeClass(Bytecodes._getstatic, BytecodeGetStatic.class);
H A DBytecodes.java217 public static final int _getstatic = 178; // 0xb2 field in class:Bytecodes
738 def(_getstatic , "getstatic" , "bJJ" , null , BasicType.getTIllegal(), 1, true );
/openjdk7/hotspot/src/share/vm/ci/
H A DciField.cpp318 assert(bc == Bytecodes::_getstatic || bc == Bytecodes::_putstatic ||
330 bool is_static = (bc == Bytecodes::_getstatic || bc == Bytecodes::_putstatic);
H A DciStreams.cpp267 cur_bc() == Bytecodes::_getstatic ||
H A DbcEscapeAnalyzer.cpp831 case Bytecodes::_getstatic:
836 if (s.cur_bc() != Bytecodes::_getstatic) {
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DConstants.java352 _getstatic = 178, // 0xb2 field in class:Constants
397 public final static int _first_linker_op = _getstatic;
H A DInstruction.java459 return (bc >= _getstatic && bc <= _putfield);
500 def("bkf", _getstatic, _putfield); // pack kf (base=Field)
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/jcore/
H A DByteCodeRewriter.java115 case Bytecodes._getstatic:
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.cpp512 bool is_static = (bytecode == Bytecodes::_getstatic || bytecode == Bytecodes::_putstatic);
538 bool uninitialized_static = ((bytecode == Bytecodes::_getstatic || bytecode == Bytecodes::_putstatic) &&
543 get_code = ((is_static) ? Bytecodes::_getstatic : Bytecodes::_getfield);
H A Dbytecode.hpp265 bool is_getstatic() const { return java_code() == Bytecodes::_getstatic; }
H A Dbytecodes.hpp219 _getstatic = 178, // 0xb2 enumerator in enum:Bytecodes::Code
H A Dinterpreter.cpp433 case Bytecodes::_getstatic :
H A Drewriter.cpp332 case Bytecodes::_getstatic : // fall through
H A DbytecodeTracer.cpp527 case Bytecodes::_getstatic:
H A DbytecodeInterpreter.cpp1732 CASE(_getstatic):
1757 if ((Bytecodes::Code)opcode == Bytecodes::_getstatic) {
1772 if ((Bytecodes::Code)opcode == Bytecodes::_getstatic) {
H A DlinkResolver.cpp593 assert(byte == Bytecodes::_getstatic || byte == Bytecodes::_putstatic ||
596 bool is_static = (byte == Bytecodes::_getstatic || byte == Bytecodes::_putstatic);
H A Dbytecodes.cpp473 def(_getstatic , "getstatic" , "bJJ" , NULL , T_ILLEGAL, 1, true );
/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.hpp272 case Bytecodes::_getstatic : // fall through
/openjdk7/hotspot/src/share/vm/prims/
H A DmethodComparator.cpp148 case Bytecodes::_getstatic : // fall through
H A DjvmtiClassFileReconstituter.cpp718 case Bytecodes::_getstatic : // fall through
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkInliner.cpp478 case Bytecodes::_getstatic:
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRAssembler.cpp68 case Bytecodes::_getstatic:
78 case Bytecodes::_getstatic:
H A Dc1_Runtime1.cpp846 case Bytecodes::_getstatic:
988 do_patch = (code != Bytecodes::_getstatic && code != Bytecodes::_putstatic) ||
/openjdk7/hotspot/src/share/vm/compiler/
H A DmethodLiveness.cpp782 case Bytecodes::_getstatic:

Completed in 130 milliseconds

12