Searched refs:receiver (Results 126 - 136 of 136) sorted by relevance

123456

/openjdk7/hotspot/src/share/vm/oops/
H A DmethodDataOop.hpp643 // which are used to store a type profile for the receiver of the check.
679 // Get the receiver at row. The 'unchecked' version is needed by parallel old
680 // gc; it does not assert the receiver is a klass. During compaction of the
689 klassOop receiver(uint row) {
722 // An additional receiver will be recorded in the cleaned row
/openjdk7/hotspot/src/share/vm/opto/
H A DgraphKit.cpp2503 Node* GraphKit::type_check_receiver(Node* receiver, ciKlass* klass, argument
2507 Node* recv_klass = load_object_klass(receiver);
2518 // Subsume downstream occurrences of receiver with a cast to
2520 Node* cast = new(C) CheckCastPPNode(control(), receiver, recv_xtype);
2570 ciKlass* exact_kls = profile.receiver(0);
H A DgraphKit.hpp606 // Do a null check on the receiver as it would happen before the call to
794 Node* type_check_receiver(Node* receiver, ciKlass* klass, float prob,
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp371 _signature->append(as_BasicType(receiver()->type()));
H A Dc1_LIR.cpp1769 if (receiver()->is_valid()) {
1770 out->print(" [recv: "); receiver()->print(out); out->print("]");
/openjdk7/jdk/test/java/lang/invoke/
H A DMethodHandlesTest.java607 // predict receiver type narrowing:
768 Object receiver = randomArg(defc);
773 target = maybeMoveIn(lookup, defc).bind(receiver, methodName, type);
783 System.out.println("bind "+receiver+"."+name+"/"+type+" => "+target
792 Object[] argsWithReceiver = cat(array(Object[].class, receiver), args);
865 +( isStatic ? "" : " receiver="+rcvc)
/openjdk7/hotspot/src/share/vm/adlc/
H A Doutput_c.cpp1131 char receiver[] = "instXXXX->"; local
1132 sprintf(receiver, "inst%d->", inst_position);
1133 inst->index_temps( fp, globals, inst_prefix, receiver );
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DsharedRuntime_sparc.cpp862 // | receiver | |
1862 // Make sure the receiver is loaded into a register.
1864 assert(sig_bt[0] == T_OBJECT, "receiver argument must be an object");
1866 assert(r->is_valid(), "bad receiver arg");
1869 // pass the receiver oop in a register. If this is not true on some
1870 // platform, pick a temp and load the receiver from stack.
1871 fatal("receiver always in a register");
1983 Register receiver = O0; local
1993 __ ld_ptr(receiver, oopDesc::mark_offset_in_bytes(), header);
2235 // the class mirror instead of a receiver
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DWSDLModeler.java84 public WSDLModeler(WsimportOptions options, ErrorReceiver receiver, MetadataFinder forest) { argument
85 super(options, receiver,forest);
/openjdk7/hotspot/src/share/vm/prims/
H A Djni.cpp1320 static void jni_invoke_static(JNIEnv *env, JavaValue* result, jobject receiver, JNICallType call_type, jmethodID method_id, JNI_ArgumentPusher *args, TRAPS) { argument
1347 static void jni_invoke_nonstatic(JNIEnv *env, JavaValue* result, jobject receiver, JNICallType call_type, jmethodID method_id, JNI_ArgumentPusher *args, TRAPS) { argument
1348 oop recv = JNIHandles::resolve(receiver);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DLower.java1129 JCExpression receiver = make.Select(
1132 return make.App(receiver, args);

Completed in 104 milliseconds

123456