changeset 9425:7785c3ba2985

8033289: clang: clean up unused function warning Reviewed-by: coleenp, dholmes, mgerdin
author henryjen
date Wed, 05 Feb 2014 21:24:29 -0800
parents fd78b4574c4a
children caca9fa8d833
files src/cpu/x86/vm/templateTable_x86_64.cpp src/share/vm/prims/jvmtiTagMap.cpp src/share/vm/runtime/mutex.cpp
diffstat 3 files changed, 2 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/src/cpu/x86/vm/templateTable_x86_64.cpp	Fri Aug 22 08:13:38 2014 +0200
+++ b/src/cpu/x86/vm/templateTable_x86_64.cpp	Wed Feb 05 21:24:29 2014 -0800
@@ -107,10 +107,6 @@
   return Address(rsp,  Interpreter::expr_offset_in_bytes(2));
 }
 
-static inline Address at_tos_p3() {
-  return Address(rsp,  Interpreter::expr_offset_in_bytes(3));
-}
-
 // Condition conversion
 static Assembler::Condition j_not(TemplateTable::Condition cc) {
   switch (cc) {
--- a/src/share/vm/prims/jvmtiTagMap.cpp	Fri Aug 22 08:13:38 2014 +0200
+++ b/src/share/vm/prims/jvmtiTagMap.cpp	Wed Feb 05 21:24:29 2014 -0800
@@ -2805,6 +2805,7 @@
   return true;
 }
 
+#ifdef ASSERT
 // verify that a static oop field is in range
 static inline bool verify_static_oop(InstanceKlass* ik,
                                      oop mirror, int offset) {
@@ -2819,6 +2820,7 @@
     return false;
   }
 }
+#endif // #ifdef ASSERT
 
 // a class references its super class, interfaces, class loader, ...
 // and finally its static fields
--- a/src/share/vm/runtime/mutex.cpp	Fri Aug 22 08:13:38 2014 +0200
+++ b/src/share/vm/runtime/mutex.cpp	Wed Feb 05 21:24:29 2014 -0800
@@ -283,16 +283,6 @@
   return x & 0x7FFFFFFF ;
 }
 
-static inline jint MarsagliaXOR (jint * const a) {
-  jint x = *a ;
-  if (x == 0) x = UNS(a)|1 ;
-  x ^= x << 6;
-  x ^= ((unsigned)x) >> 21;
-  x ^= x << 7 ;
-  *a = x ;
-  return x & 0x7FFFFFFF ;
-}
-
 static int Stall (int its) {
   static volatile jint rv = 1 ;
   volatile int OnFrame = 0 ;