< prev index next >

test/runtime/Unsafe/FieldOffset.java

Print this page




   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @summary Verifies the behaviour of Unsafe.fieldOffset
  27  * @library /testlibrary
  28  * @modules java.base/jdk.internal.misc
  29  *          java.management
  30  * @run main FieldOffset
  31  */
  32 
  33 import java.lang.reflect.Field;
  34 import jdk.test.lib.*;
  35 import jdk.internal.misc.Unsafe;
  36 import java.lang.reflect.*;
  37 import static jdk.test.lib.Asserts.*;
  38 
  39 public class FieldOffset {
  40     public static void main(String args[]) throws Exception {
  41         Unsafe unsafe = Utils.getUnsafe();
  42         Field[] fields = Test.class.getDeclaredFields();
  43 
  44         for (int i = 0; i < fields.length; i++) {
  45             long offset = unsafe.objectFieldOffset(fields[i]);
  46             // Ensure we got a valid offset value back
  47             assertNotEquals(offset, unsafe.INVALID_FIELD_OFFSET);
  48 
  49             // Make sure the field offset is unique
  50             for (int j = 0; j < i; j++) {
  51                 assertNotEquals(offset, unsafe.objectFieldOffset(fields[j]));
  52             }
  53         }
  54 




   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @summary Verifies the behaviour of Unsafe.fieldOffset
  27  * @library /test/lib
  28  * @modules java.base/jdk.internal.misc
  29  *          java.management
  30  * @run main FieldOffset
  31  */
  32 
  33 import java.lang.reflect.Field;
  34 import jdk.test.lib.Utils;
  35 import jdk.internal.misc.Unsafe;
  36 import java.lang.reflect.*;
  37 import static jdk.test.lib.Asserts.*;
  38 
  39 public class FieldOffset {
  40     public static void main(String args[]) throws Exception {
  41         Unsafe unsafe = Utils.getUnsafe();
  42         Field[] fields = Test.class.getDeclaredFields();
  43 
  44         for (int i = 0; i < fields.length; i++) {
  45             long offset = unsafe.objectFieldOffset(fields[i]);
  46             // Ensure we got a valid offset value back
  47             assertNotEquals(offset, unsafe.INVALID_FIELD_OFFSET);
  48 
  49             // Make sure the field offset is unique
  50             for (int j = 0; j < i; j++) {
  51                 assertNotEquals(offset, unsafe.objectFieldOffset(fields[j]));
  52             }
  53         }
  54 


< prev index next >