diff src/cpu/x86/vm/jniTypes_x86.hpp @ 8151:b8f261ba79c6

Minimize diff to plain HotSpot version.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 07 Mar 2013 21:00:29 +0100
parents 79a7b761755c
children
line wrap: on
line diff
--- a/src/cpu/x86/vm/jniTypes_x86.hpp	Thu Mar 07 15:17:51 2013 +0100
+++ b/src/cpu/x86/vm/jniTypes_x86.hpp	Thu Mar 07 21:00:29 2013 +0100
@@ -127,26 +127,6 @@
   static inline oop     get_obj   (intptr_t *from) { return *(oop *)    from; }
   static inline jfloat  get_float (intptr_t *from) { return *(jfloat *) from; }
   static inline jdouble get_double(intptr_t *from) { return *(jdouble *)(from + _JNI_SLOT_OFFSET); }
-
-  static inline jint    get_int   (intptr_t *from, int& pos) {
-    return get_int(from + pos++);
-  }
-  static inline jlong   get_long  (intptr_t *from, int& pos) {
-    jlong result = get_long(from + pos);
-    pos += 2;
-    return result;
-  }
-  static inline oop     get_obj   (intptr_t *from, int& pos) {
-    return get_obj(from + pos++);
-  }
-  static inline jfloat  get_float (intptr_t *from, int& pos) {
-    return get_float(from + pos++);
-  }
-  static inline jdouble get_double(intptr_t *from, int& pos) {
-    jdouble result = get_double(from + pos);
-    pos += 2;
-    return result;
-  }
 #undef _JNI_SLOT_OFFSET
 };