Searched refs:klass (Results 276 - 300 of 337) sorted by relevance

<<11121314

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.cpp59 // returns true if klass is unloaded or any exception handler
62 bool XHandlers::could_catch(ciInstanceKlass* klass, bool type_is_exact) const { argument
64 if (!klass->is_loaded()) {
81 if (klass->is_subtype_of(handler_klass)) {
92 if (handler_klass->is_subtype_of(klass)) {
H A Dc1_IR.hpp129 bool could_catch(ciInstanceKlass* klass, bool type_is_exact) const;
H A Dc1_LIR.hpp1462 LIR_OpAllocObj(LIR_Opr klass, LIR_Opr result, argument
1465 : LIR_Op1(lir_alloc_object, klass, result)
1475 LIR_Opr klass() const { return in_opr(); } function in class:LIR_OpAllocObj
1529 LIR_OpTypeCheck(LIR_Code code, LIR_Opr result, LIR_Opr object, ciKlass* klass,
1540 ciKlass* klass() const { assert(code() == lir_instanceof || code() == lir_checkcast, "not valid"); return _klass; } function in class:LIR_OpTypeCheck
1682 LIR_OpAllocArray(LIR_Opr klass, LIR_Opr len, LIR_Opr result, LIR_Opr t1, LIR_Opr t2, LIR_Opr t3, LIR_Opr t4, BasicType type, CodeStub* stub) argument
1684 , _klass(klass)
1693 LIR_Opr klass() const { return _klass; } function in class:LIR_OpAllocArray
2091 void allocate_object(LIR_Opr dst, LIR_Opr t1, LIR_Opr t2, LIR_Opr t3, LIR_Opr t4, int header_size, int object_size, LIR_Opr klass, bool init_check, CodeStub* stub);
2092 void allocate_array(LIR_Opr dst, LIR_Opr len, LIR_Opr t1,LIR_Opr t2, LIR_Opr t3,LIR_Opr t4, BasicType type, LIR_Opr klass, CodeStu
[all...]
/openjdk7/jdk/src/share/back/
H A DeventHandler.c884 jthread thread, jclass klass)
894 info.clazz = klass;
913 jthread thread, jclass klass)
923 info.clazz = klass;
883 cbClassPrepare(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jclass klass) argument
912 cbClassLoad(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jclass klass) argument
H A Dutil.h316 jvmtiError classInstances(jclass klass, ObjectBatch *instances, int maxInstances);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsynchronizer.cpp84 Symbol* klassname = ((oop)(klassOop))->klass()->klass_part()->name(); \
1328 Klass::cast(object->klass())->external_name());
1378 Klass::cast(object->klass())->external_name());
1445 (intptr_t) obj, (intptr_t) obj->mark(), Klass::cast(obj->klass())->external_name());
H A Dvframe_hp.cpp226 // Put klass for scalar replaced object.
227 ScopeValue* kv = ((ObjectValue *)ov)->klass();
228 assert(kv->is_constant_oop(), "klass should be oop constant for scalar replaced object");
H A DsharedRuntime.hpp289 * @param klass the name of the target klass attempt
299 static char* generate_class_cast_message(const char* name, const char* klass,
318 // In the code prolog, if the klass comparison fails, the inline cache
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.hpp332 void push_object(ciKlass* klass) { argument
333 push(klass);
471 void trap(ciBytecodeStream* str, ciKlass* klass, int index);
H A DbcEscapeAnalyzer.cpp234 ciInstanceKlass* klass = target->holder(); local
283 if (target->is_loaded() && klass->is_loaded()
284 && (klass->is_initialized() || klass->is_interface() && target->holder()->is_initialized())
/openjdk7/hotspot/src/share/vm/memory/
H A Duniverse.cpp367 // Verify element klass for system obj array klass
387 // Set element klass for system obj array klass
1113 k = Universe::_out_of_memory_error_java_heap->klass();
1130 // The finalizer klass must be linked before looking up the method, in
1254 instanceKlass* call_site_klass = instanceKlass::cast(call_site->klass());
1479 // A klass can never live in the new space. Since the new and old
1489 // Why doesn't the above just say that klass's always live in the perm
1632 instanceKlass* ik = instanceKlass::cast(klass());
[all...]
H A Duniverse.hpp58 klassOop klass() const { return _klass; } function in class:CommonMethodOopCache
221 static int _base_vtable_size; // Java vtbl size of klass Object (in words)
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DJTextComponent.java1203 * Returns true if <code>klass</code> is NOT a JTextComponent and it or
1207 * assumed <code>klass</code> extends <code>JTextComponent</code>.
1209 private static Boolean isProcessInputMethodEventOverridden(Class<?> klass) { argument
1210 if (klass == JTextComponent.class) {
1213 Boolean retValue = overrideMap.get(klass.getName());
1219 klass.getSuperclass());
1222 // If our superclass has overriden it, then by definition klass
1224 overrideMap.put(klass.getName(), sOverriden);
1227 // klass's superclass didn't override it, check for an override in
1228 // klass
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DCommandProcessor.java931 Klass klass = null;
933 klass = SystemDictionaryHelper.findInstanceKlass(t.nextToken());
941 if (klass == null || oop.getKlass().isSubtypeOf(klass))
/openjdk7/hotspot/src/share/vm/code/
H A Ddependencies.hpp526 NO_CHANGE = 0, // an uninvolved klass
536 // klassOop k = str.klass();
569 klassOop klass() { return _klass; } function in class:DepChange::ContextStream
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsMarkSweepDecorator.cpp416 assert(oop(compaction_top)->klass() != NULL, "should have a class");
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecode.hpp206 Symbol* klass() const; // returns the klass of the method or field
/openjdk7/hotspot/src/share/vm/oops/
H A DtypeArrayKlass.cpp126 if (!d->is_typeArray() || element_type() != typeArrayKlass::cast(d->klass())->element_type()) {
152 // create a klass of array holding typeArrays
208 // Performance tweak: We skip iterating over the klass pointer since we
215 // Performance tweak: We skip iterating over the klass pointer since we
223 // Performance tweak: We skip iterating over the klass pointer since we
231 // Performance tweak: We skip iterating over the klass pointer since we
239 // Performance tweak: We skip iterating over the klass pointer since we
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dinterp_masm_sparc.hpp313 void profile_typecheck(Register klass, Register scratch);
/openjdk7/hotspot/src/os/bsd/dtrace/
H A Dlibjvm_db.c478 uint64_t klass; local
486 klass = (uint64_t)((uintptr_t)J->Universe_narrow_oop_base +
489 err = read_pointer(J, methodOopPtr + OFFSET_oopDesc_metadata, &klass);
492 return klass == J->Universe_methodKlassObj;
547 /* To get klass string */
/openjdk7/hotspot/src/os/solaris/dtrace/
H A Dlibjvm_db.c478 uint64_t klass; local
486 klass = (uint64_t)((uintptr_t)J->Universe_narrow_oop_base +
489 err = read_pointer(J, methodOopPtr + OFFSET_oopDesc_metadata, &klass);
492 return klass == J->Universe_methodKlassObj;
547 /* To get klass string */
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/addon/episode/
H A DPluginImpl.java287 bindings.klass().ref(adaptor.implName);
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DClassSyntax.java515 protected Element klass; // <Class ...> field in class:ClassSyntax
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DReferenceTypeImpl.java63 protected ReferenceTypeImpl(VirtualMachine aVm, sun.jvm.hotspot.oops.Klass klass) { argument
65 saKlass = klass;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicLookAndFeel.java1928 * Returns the ui that is of type <code>klass</code>, or null if
1931 static Object getUIOfType(ComponentUI ui, Class klass) { argument
1932 if (klass.isInstance(ui)) {

Completed in 158 milliseconds

<<11121314