Searched defs:receiver_count (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/ci/
H A DciCallProfile.hpp58 void add_receiver(ciKlass* receiver, int receiver_count);
66 int receiver_count(int i) { function in class:ciCallProfile
H A DciMethod.cpp500 int rcount = call->receiver_count(i) + epsilon;
543 void ciCallProfile::add_receiver(ciKlass* receiver, int receiver_count) { argument
549 for (; i > 0 && receiver_count > _receiver_count[i-1]; i--) {
554 _receiver_count[i] = receiver_count;
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DCallSite.java37 private int receiver_count; field in class:CallSite
116 // receiver_count + "/" + count + "," + (receiver_count * 100 / count) + "%)");
160 return receiver_count;
163 public void setReceiver_count(int receiver_count) { argument
164 this.receiver_count = receiver_count;
/openjdk7/hotspot/src/share/vm/opto/
H A DdoCall.cpp44 void trace_type_profile(Compile* C, ciMethod *method, int depth, int bci, ciMethod *prof_method, ciKlass *prof_klass, int site_count, int receiver_count) { argument
57 out->print(" \\-> TypeProfile (%d/%d counts) = ", receiver_count, site_count);
85 int receiver_count = -1; local
89 receiver_count = profile.receiver_count(0);
94 int rid = (receiver_count >= 0)? log->identify(profile.receiver(0)): -1;
100 if (receiver_count >= 0) {
101 log->print(" receiver='%d' receiver_count='%d'", rid, receiver_count);
103 log->print(" receiver2='%d' receiver2_count='%d'", r2id, profile.receiver_count(
[all...]

Completed in 27 milliseconds