Merge
authornever
Mon, 12 Mar 2012 19:54:41 -0700
changeset 12159 714449dc1f6d
parent 12158 f24f2560da32 (current diff)
parent 12113 71f302d5c8ee (diff)
child 12160 c3ce1d6b88e1
Merge
--- a/hotspot/src/cpu/sparc/vm/sparc.ad	Mon Mar 12 10:46:47 2012 -0700
+++ b/hotspot/src/cpu/sparc/vm/sparc.ad	Mon Mar 12 19:54:41 2012 -0700
@@ -1832,6 +1832,8 @@
   case Op_CountLeadingZerosL:
   case Op_CountTrailingZerosI:
   case Op_CountTrailingZerosL:
+  case Op_PopCountI:
+  case Op_PopCountL:
     if (!UsePopCountInstruction)
       return false;
     break;
--- a/hotspot/src/cpu/x86/vm/x86_32.ad	Mon Mar 12 10:46:47 2012 -0700
+++ b/hotspot/src/cpu/x86/vm/x86_32.ad	Mon Mar 12 19:54:41 2012 -0700
@@ -1293,6 +1293,14 @@
   if (!has_match_rule(opcode))
     return false;
 
+  switch (opcode) {
+    case Op_PopCountI:
+    case Op_PopCountL:
+      if (!UsePopCountInstruction)
+        return false;
+    break;
+  }
+  
   return true;  // Per default match rules are supported.
 }
 
--- a/hotspot/src/cpu/x86/vm/x86_64.ad	Mon Mar 12 10:46:47 2012 -0700
+++ b/hotspot/src/cpu/x86/vm/x86_64.ad	Mon Mar 12 19:54:41 2012 -0700
@@ -1714,6 +1714,14 @@
   if (!has_match_rule(opcode))
     return false;
 
+  switch (opcode) {
+    case Op_PopCountI:
+    case Op_PopCountL:
+      if (!UsePopCountInstruction)
+        return false;
+    break;
+  }
+
   return true;  // Per default match rules are supported.
 }
 
--- a/hotspot/src/share/vm/opto/library_call.cpp	Mon Mar 12 10:46:47 2012 -0700
+++ b/hotspot/src/share/vm/opto/library_call.cpp	Mon Mar 12 19:54:41 2012 -0700
@@ -338,11 +338,11 @@
     break;
 
   case vmIntrinsics::_bitCount_i:
-    if (!Matcher::has_match_rule(Op_PopCountI)) return NULL;
+    if (!Matcher::match_rule_supported(Op_PopCountI)) return NULL;
     break;
 
   case vmIntrinsics::_bitCount_l:
-    if (!Matcher::has_match_rule(Op_PopCountL)) return NULL;
+    if (!Matcher::match_rule_supported(Op_PopCountL)) return NULL;
     break;
 
   case vmIntrinsics::_numberOfLeadingZeros_i: