diff src/share/vm/prims/methodHandleWalk.cpp @ 1783:d5d065957597

6953144: Tiered compilation Summary: Infrastructure for tiered compilation support (interpreter + c1 + c2) for 32 and 64 bit. Simple tiered policy implementation. Reviewed-by: kvn, never, phh, twisti
author iveresov
date Fri, 03 Sep 2010 17:51:07 -0700
parents e0ba4e04c839
children d257356e35f0
line wrap: on
line diff
--- a/src/share/vm/prims/methodHandleWalk.cpp	Thu Sep 02 11:40:02 2010 -0700
+++ b/src/share/vm/prims/methodHandleWalk.cpp	Fri Sep 03 17:51:07 2010 -0700
@@ -979,7 +979,7 @@
 
   // Inline the method.
   InvocationCounter* ic = m->invocation_counter();
-  ic->set_carry();
+  ic->set_carry_flag();
 
   for (int i = 0; i < argc; i++) {
     ArgToken arg = argv[i];
@@ -1209,7 +1209,7 @@
   // Set the carry bit of the invocation counter to force inlining of
   // the adapter.
   InvocationCounter* ic = m->invocation_counter();
-  ic->set_carry();
+  ic->set_carry_flag();
 
   // Rewrite the method and set up the constant pool cache.
   objArrayOop m_array = oopFactory::new_system_objArray(1, CHECK_(nullHandle));