Searched refs:JVM_ACC_STATIC (Results 1 - 25 of 26) sorted by relevance

12

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DClassConstants.java90 public static final long JVM_ACC_STATIC = 0x0008; /* instance variable is static */ field in interface:ClassConstants
177 JVM_ACC_STATIC |
187 JVM_ACC_STATIC |
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DVMModifiers.java34 int STATIC = (int) JVM_ACC_STATIC; /* instance variable is static */
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DConstants.java31 static final int JVM_ACC_STATIC = 0x0008; /* instance variable is static */ field in interface:Constants
/openjdk7/hotspot/src/share/vm/ci/
H A DciFlags.hpp52 bool is_static () const { return (_flags & JVM_ACC_STATIC ) != 0; }
/openjdk7/hotspot/src/share/vm/classfile/
H A DvmSymbols.cpp356 const int neg = JVM_ACC_STATIC | JVM_ACC_SYNCHRONIZED;
361 const int neg = JVM_ACC_STATIC;
366 const int neg = JVM_ACC_STATIC | JVM_ACC_SYNCHRONIZED;
370 const int req = JVM_ACC_STATIC;
375 const int req = JVM_ACC_STATIC | JVM_ACC_NATIVE;
381 const int neg = JVM_ACC_STATIC;
H A DclassFileParser.cpp1857 flags = JVM_ACC_STATIC;
1858 } else if ((flags & JVM_ACC_STATIC) == JVM_ACC_STATIC) {
1859 flags &= JVM_ACC_STATIC | JVM_ACC_STRICT;
1867 args_size = ((flags & JVM_ACC_STATIC) ? 0 : 1) +
2530 #define RECOGNIZED_INNER_CLASS_MODIFIERS (JVM_RECOGNIZED_CLASS_MODIFIERS | JVM_ACC_PRIVATE | JVM_ACC_PROTECTED | JVM_ACC_STATIC)
4182 const bool is_static = (flags & JVM_ACC_STATIC) != 0;
4220 const bool is_static = (flags & JVM_ACC_STATIC) != 0;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DAccessFlags.java41 public boolean isStatic () { return (flags & JVM_ACC_STATIC ) != 0; }
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dinterpreter_x86_64.cpp96 __ testl(rscratch1, JVM_ACC_STATIC);
181 __ testl(c_rarg3, JVM_ACC_STATIC);
H A DcppInterpreter_x86.cpp517 __ testl(rax, JVM_ACC_STATIC);
771 __ testl(rax, JVM_ACC_STATIC);
1188 __ testl(t, JVM_ACC_STATIC);
H A DtemplateInterpreter_x86_32.cpp566 __ testl(rax, JVM_ACC_STATIC);
1028 __ testl(t, JVM_ACC_STATIC);
H A DtemplateInterpreter_x86_64.cpp521 __ testl(rax, JVM_ACC_STATIC);
1022 __ testl(t, JVM_ACC_STATIC);
/openjdk7/hotspot/src/share/vm/utilities/
H A DaccessFlags.hpp103 bool is_static () const { return (_flags & JVM_ACC_STATIC ) != 0; }
/openjdk7/jdk/src/share/javavm/export/
H A Dclassfile_constants.h43 JVM_ACC_STATIC = 0x0008, enumerator in enum:__anon545
H A Djvm.h1040 JVM_ACC_STATIC | \
1050 JVM_ACC_STATIC | \
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.h1010 #define JVM_ACC_STATIC 0x0008 /* instance variable is static */ macro
1185 JVM_ACC_STATIC | \
1195 JVM_ACC_STATIC | \
H A DmethodHandles.cpp164 int basic_mods = (ref_kind_is_static(ref_kind) ? JVM_ACC_STATIC : 0);
772 bool is_static = ((flags & JVM_ACC_STATIC) != 0);
1068 ? (flags & JVM_ACC_STATIC) != 0
1069 : (flags & JVM_ACC_STATIC) == 0)) {
H A DjvmtiRedefineClasses.cpp707 || (new_flags & (JVM_ACC_FINAL|JVM_ACC_STATIC)) == 0
736 || (old_flags & (JVM_ACC_FINAL|JVM_ACC_STATIC)) == 0
H A Dunsafe.cpp706 int really_is_static = ((modifiers & JVM_ACC_STATIC) != 0);
742 if ((modifiers & JVM_ACC_STATIC) == 0) {
H A Djvm.cpp1575 if (modifiers & JVM_ACC_STATIC) {
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_io.c1516 if ( modifiers & JVM_ACC_STATIC ) {
1525 if ( modifiers & JVM_ACC_STATIC ) {
H A Dhprof_util.c1187 if ( ( finfo.modifiers & JVM_ACC_STATIC ) == 0 ||
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateInterpreter_sparc.cpp370 __ btst(JVM_ACC_STATIC, O0);
991 __ btst(JVM_ACC_STATIC, O0);
H A DcppInterpreter_sparc.cpp764 __ btst(JVM_ACC_STATIC, O0);
1180 __ delayed()->btst(JVM_ACC_STATIC, O1);
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.cpp964 if (must_be_static) flags_bits |= JVM_ACC_STATIC;
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c1739 if ((JVM_GetMethodIxModifiers(env, cb, mi) & JVM_ACC_STATIC) == 0) {

Completed in 504 milliseconds

12