< prev index next >

src/hotspot/share/ci/ciCallProfile.hpp

Print this page

        

@@ -61,10 +61,13 @@
   // Note:  The following predicates return false for invalid profiles:
   bool      has_receiver(int i) const { return _limit > i; }
   int       morphism() const          { return _morphism; }
 
   int       count() const             { return _count; }
+#ifndef _LP64
+  void      set_count(int c)          { _count = c; }
+#endif
   int       receiver_count(int i)  {
     assert(i < _limit, "out of Call Profile MorphismLimit");
     return _receiver_count[i];
   }
   float     receiver_prob(int i)  {
< prev index next >