Searched refs:klass (Results 226 - 250 of 337) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DObjectReader.java295 TypeArrayKlass klass = (TypeArrayKlass) array.getKlass();
296 int type = (int) klass.getElementType();
411 ObjArrayKlass klass = (ObjArrayKlass) array.getKlass();
412 Klass bottomKls = klass.getBottomKlass();
414 final int dimension = (int) klass.getDimension();
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp226 return ciObjArrayKlass::make(klass());
234 return klass();
242 return klass();
246 if (klass()->is_instance_klass()) {
247 ciInstanceKlass* ik = (ciInstanceKlass*)klass();
H A Dc1_GraphBuilder.cpp886 || (PatchALot && obj->klass() != ciEnv::current()->String_klass())) {
890 assert(!obj->is_klass(), "must be java_mirror of klass");
1678 ciInstanceKlass* klass = target->holder();
1713 // how klass->is_loaded() can be true and yet target->is_loaded() is false.
1718 if (UseCHA && DeoptC1 && klass->is_loaded() && target->is_loaded() &&
1772 // klass but we need both a dependence on the single interface
1800 // to match that class, otherwise klass will refer to the
1802 klass = cha_monomorphic_target->holder();
1806 CheckCast* c = new CheckCast(klass, receiver, copy_state_for_exception());
1808 c->set_direct_compare(klass
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.hpp64 // | klass |
198 // Helper routine: get klass name + "." + method name + signature as
206 static char* name_and_sig_as_C_string(Klass* klass, Symbol* method_name, Symbol* signature);
207 static char* name_and_sig_as_C_string(Klass* klass, Symbol* method_name, Symbol* signature, char* buf, int size);
298 // exception of klass ex_klass thrown at throw_bci. A value of NULL
299 // for ex_klass indicates that the exception klass is not known; in
603 static klassOop check_non_bcp_klass(klassOop klass);
673 // Find if klass for method is loaded
H A DobjArrayKlass.cpp131 klassOop bound = objArrayKlass::cast(d->klass())->element_klass();
132 klassOop stype = objArrayKlass::cast(s->klass())->element_klass();
150 Klass::cast((new_val->klass()))->is_subtype_of(bound)) {
234 // Create multi-dim klass object and link them together
H A DmethodKlass.cpp122 // Performance tweak: We skip iterating over the klass pointer since we
135 // Performance tweak: We skip iterating over the klass pointer since we
152 // Performance tweak: We skip iterating over the klass pointer since we
168 // Performance tweak: We skip iterating over the klass pointer since we
187 // Performance tweak: We skip iterating over the klass pointer since we
344 constMethodKlass* ck = constMethodKlass::cast(xconst->klass());
354 constMethodKlass* ck = constMethodKlass::cast(xconst->klass());
/openjdk7/hotspot/src/share/vm/opto/
H A Dmacro.cpp684 ciKlass* klass = NULL; local
699 klass = res_type->klass();
702 assert(klass->is_instance_klass(), "must be an instance klass.");
703 iklass = klass->as_instance_klass();
708 assert(klass->is_array_klass() && nfields >= 0, "must be an array klass.");
709 elem_type = klass->as_array_klass()->element_type();
967 Node* klass local
[all...]
H A Dlibrary_call.cpp144 Node* load_mirror_from_klass(Node* klass);
1095 // get String klass for instanceOf
1096 ciInstanceKlass* klass = env()->String_klass(); local
1099 Node* inst = gen_instanceof(argument, makecon(TypeKlassPtr::make(klass)));
1113 const TypeOopPtr* string_type = TypeOopPtr::make_from_klass(klass);
1249 const TypeAryPtr* target_type = TypeAryPtr::make(TypePtr::BotPTR, target_array_type, target_array->klass(), true, Type::OffsetBot);
1390 ciInstanceKlass* klass = env()->String_klass(); local
1392 if (str_const == NULL || str_const->klass() != klass) {
2166 // Can the klass o
2168 ciKlass* klass = itype->klass(); local
3055 load_mirror_from_klass(Node* klass) argument
5357 ciInstanceKlass* klass = env()->Object_klass(); local
[all...]
H A Dparse.hpp483 bool can_not_compile_call_site(ciMethod *dest_method, ciInstanceKlass *klass);
518 void emit_guard_for_new(ciInstanceKlass* klass);
H A Dparse3.cpp228 C->log()->elem("assert_null reason='field' klass='%d'",
361 ciKlass* klass = iter().get_klass(will_link); local
368 ciObjArrayKlass* array_klass = ciObjArrayKlass::make(klass);
H A DgraphKit.hpp342 // Find out the klass of an object.
651 // The optional klass is the one causing the trap.
655 ciKlass* klass = NULL, const char* reason_string = NULL,
661 ciKlass* klass = NULL, const char* reason_string = NULL,
664 klass, reason_string, must_throw, keep_exact_action); local
794 Node* type_check_receiver(Node* receiver, ciKlass* klass, float prob,
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DmethodHandles_sparc.cpp66 Register obj_reg, KlassHandle klass,
69 oop* klass_addr = klass.raw_value();
89 intptr_t super_check_offset = klass->super_check_offset();
325 // Don't actually load the klass; just null-check the receiver.
328 // load receiver klass itself
361 // temp1_recv_klass - klass of stacked receiver, if needed
431 // given intf, index, and recv klass, dispatch to the implementation method
65 verify_klass(MacroAssembler* _masm, Register obj_reg, KlassHandle klass, Register temp_reg, Register temp2_reg, const char* error_message) argument
/openjdk7/hotspot/src/cpu/x86/vm/
H A DmethodHandles_x86.cpp67 Register obj, KlassHandle klass,
69 oop* klass_addr = klass.raw_value();
86 intptr_t super_check_offset = klass->super_check_offset();
333 // Don't actually load the klass; just null-check the receiver.
336 // load receiver klass itself
369 // temp1_recv_klass - klass of stacked receiver, if needed
441 // given intf, index, and recv klass, dispatch to the implementation method
66 verify_klass(MacroAssembler* _masm, Register obj, KlassHandle klass, const char* error_message) argument
H A Dinterp_masm_x86_32.hpp218 void profile_typecheck(Register mdp, Register klass, Register scratch);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe.cpp148 if (obj->klass() == SystemDictionary::Class_klass()) {
152 Klass* k = Klass::cast(obj->klass());
175 Klass* k = Klass::cast(obj->klass());
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DSctpChannelImpl.c84 (JNIEnv *env, jclass klass) {
414 (JNIEnv *env, jclass klass, jint fd, jobject resultContainerObj,
504 (JNIEnv *env, jclass klass, jint fd, jlong address, jint length,
83 Java_sun_nio_ch_SctpChannelImpl_initIDs(JNIEnv *env, jclass klass) argument
413 Java_sun_nio_ch_SctpChannelImpl_receive0(JNIEnv *env, jclass klass, jint fd, jobject resultContainerObj, jlong address, jint length, jboolean peek) argument
503 Java_sun_nio_ch_SctpChannelImpl_send0(JNIEnv *env, jclass klass, jint fd, jlong address, jint length, jobject targetAddress, jint targetPort, jint assocId, jint streamNumber, jboolean unordered, jint ppid) argument
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_init.c1586 cbClassLoad(jvmtiEnv *jvmti, JNIEnv *env, jthread thread, jclass klass) argument
1599 loader = getClassLoader(klass);
1600 event_class_load(env, thread, klass, loader);
1609 cbClassPrepare(jvmtiEnv *jvmti, JNIEnv *env, jthread thread, jclass klass) argument
1623 loader = getClassLoader(klass);
1624 event_class_prepare(env, thread, klass, loader);
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethodData.cpp125 ciKlass* klass = CURRENT_ENV->get_object(k)->as_klass(); local
126 set_receiver(row, klass);
H A DciEnv.hpp108 // Look up a klass by name from a particular class loader (the accessor's).
115 // Return an unloaded klass if !require_local and no class at all is found.
117 // The CI treats a klass as loaded if it is consistently defined in
198 // Get a ciKlass representing an unloaded klass.
205 // Get a ciKlass representing an unloaded klass mirror.
224 // See if we already have an unloaded klass for the given name
384 static ciInstanceKlass* get_instance_klass_for_declared_method_holder(ciKlass* klass);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DList.java365 public static <T> List<T> convert(Class<T> klass, List<?> list) { argument
369 klass.cast(o);
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/iio/
H A DInputImageTests.java184 String klass = spi.getClass().getName();
191 if (klass.startsWith("com.sun.imageio.plugins")) {
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.cpp221 _exception_type = exception->klass();
231 if (exception->klass() == exception_type()) {
241 if (exception->klass() == exception_type() && count() < cache_size) {
605 klassOop klass = deps.context_type(); local
606 if (klass == NULL) continue; // ignore things like evol_method
608 // record this nmethod as dependent on this klass
609 instanceKlass::cast(klass)->add_dependent_nmethod(nm);
1205 cause->klass()->print();
1446 klassOop klass = deps.context_type(); local
1447 if (klass
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A Dsa.js583 // iterate system dictionary for each primitive array klass
633 // iterates Java heap for each Oop of given 'klass'.
635 // of subtypes of 'klass' or not
636 function forEachOopOfKlass(callback, klass, includeSubtypes) {
637 if (klass == undefined) {
638 klass = findInstanceKlass("java.lang.Object");
646 klass, includeSubtypes);
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcTrace.cpp132 return _is_alive->do_object_b(obj) && is_externally_visible_klass(obj->klass());
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecode.cpp127 Symbol* Bytecode_member_ref::klass() const { function in class:Bytecode_member_ref

Completed in 167 milliseconds

1234567891011>>