Searched refs:_putstatic (Results 1 - 25 of 38) sorted by relevance

12

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodePutStatic.java46 return javaCode() == Bytecodes._putstatic;
H A DBytecodeDisassembler.java91 addBytecodeClass(Bytecodes._putstatic, BytecodePutStatic.class);
H A DBytecodes.java218 public static final int _putstatic = 179; // 0xb3 field in class:Bytecodes
739 def(_putstatic , "putstatic" , "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);
336 bool is_put = (bc == Bytecodes::_putfield || bc == Bytecodes::_putstatic);
H A DciStreams.cpp268 cur_bc() == Bytecodes::_putstatic, "wrong bc");
H A DbcEscapeAnalyzer.cpp848 case Bytecodes::_putstatic:
860 if (s.cur_bc() != Bytecodes::_putstatic) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/jcore/
H A DByteCodeRewriter.java116 case Bytecodes._putstatic:
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DConstants.java353 _putstatic = 179, // 0xb3 field in class:Constants
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.cpp511 bool is_put = (bytecode == Bytecodes::_putfield || bytecode == Bytecodes::_putstatic);
512 bool is_static = (bytecode == Bytecodes::_getstatic || bytecode == Bytecodes::_putstatic);
538 bool uninitialized_static = ((bytecode == Bytecodes::_getstatic || bytecode == Bytecodes::_putstatic) &&
545 put_code = ((is_static) ? Bytecodes::_putstatic : Bytecodes::_putfield);
H A Dbytecode.hpp266 bool is_putstatic() const { return java_code() == Bytecodes::_putstatic; }
H A Dbytecodes.hpp220 _putstatic = 179, // 0xb3 enumerator in enum:Bytecodes::Code
H A Dinterpreter.cpp434 case Bytecodes::_putstatic :
H A Drewriter.cpp333 case Bytecodes::_putstatic : // fall through
H A DlinkResolver.cpp593 assert(byte == Bytecodes::_getstatic || byte == Bytecodes::_putstatic ||
596 bool is_static = (byte == Bytecodes::_getstatic || byte == Bytecodes::_putstatic);
597 bool is_put = (byte == Bytecodes::_putfield || byte == Bytecodes::_putstatic);
H A DbytecodeTracer.cpp526 case Bytecodes::_putstatic:
H A DbytecodeInterpreter.cpp1833 CASE(_putstatic):
1851 if ((Bytecodes::Code)opcode == Bytecodes::_putstatic) {
1883 if ((Bytecodes::Code)opcode == Bytecodes::_putstatic) {
H A Dbytecodes.cpp474 def(_putstatic , "putstatic" , "bJJ" , NULL , T_ILLEGAL, -1, true );
/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.hpp279 case Bytecodes::_putstatic : // fall through
/openjdk7/hotspot/src/share/vm/prims/
H A DmethodComparator.cpp149 case Bytecodes::_putstatic : // fall through
H A DjvmtiClassFileReconstituter.cpp719 case Bytecodes::_putstatic : // fall through
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRAssembler.cpp67 case Bytecodes::_putstatic:
77 case Bytecodes::_putstatic:
H A Dc1_Runtime1.cpp845 case Bytecodes::_putstatic:
988 do_patch = (code != Bytecodes::_getstatic && code != Bytecodes::_putstatic) ||
H A Dc1_GraphBuilder.cpp1513 if (code == Bytecodes::_getstatic || code == Bytecodes::_putstatic) {
1557 case Bytecodes::_putstatic:
2669 case Bytecodes::_putstatic : // fall through
2800 , Bytecodes::_putstatic
/openjdk7/hotspot/src/share/vm/compiler/
H A DmethodLiveness.cpp783 case Bytecodes::_putstatic:
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBlock.cpp377 case Bytecodes::_putstatic:

Completed in 123 milliseconds

12