src/cpu/x86/vm/bytes_x86.hpp

Thu, 03 Nov 2011 04:12:49 -0700

author
twisti
date
Thu, 03 Nov 2011 04:12:49 -0700
changeset 3252
448691f285a5
parent 3156
f08d439fab8c
child 6876
710a3c8b516e
permissions
-rw-r--r--

7106944: assert(_pc == *pc_addr) failed may be too strong
Reviewed-by: kvn, never

duke@435 1 /*
stefank@2314 2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef CPU_X86_VM_BYTES_X86_HPP
stefank@2314 26 #define CPU_X86_VM_BYTES_X86_HPP
stefank@2314 27
stefank@2314 28 #include "memory/allocation.hpp"
stefank@2314 29
duke@435 30 class Bytes: AllStatic {
duke@435 31 private:
duke@435 32 #ifndef AMD64
duke@435 33 // Helper function for swap_u8
duke@435 34 static inline u8 swap_u8_base(u4 x, u4 y); // compiler-dependent implementation
duke@435 35 #endif // AMD64
duke@435 36
duke@435 37 public:
duke@435 38 // Returns true if the byte ordering used by Java is different from the native byte ordering
duke@435 39 // of the underlying machine. For example, this is true for Intel x86, but false for Solaris
duke@435 40 // on Sparc.
duke@435 41 static inline bool is_Java_byte_ordering_different(){ return true; }
duke@435 42
duke@435 43
duke@435 44 // Efficient reading and writing of unaligned unsigned data in platform-specific byte ordering
duke@435 45 // (no special code is needed since x86 CPUs can access unaligned data)
duke@435 46 static inline u2 get_native_u2(address p) { return *(u2*)p; }
duke@435 47 static inline u4 get_native_u4(address p) { return *(u4*)p; }
duke@435 48 static inline u8 get_native_u8(address p) { return *(u8*)p; }
duke@435 49
duke@435 50 static inline void put_native_u2(address p, u2 x) { *(u2*)p = x; }
duke@435 51 static inline void put_native_u4(address p, u4 x) { *(u4*)p = x; }
duke@435 52 static inline void put_native_u8(address p, u8 x) { *(u8*)p = x; }
duke@435 53
duke@435 54
duke@435 55 // Efficient reading and writing of unaligned unsigned data in Java
duke@435 56 // byte ordering (i.e. big-endian ordering). Byte-order reversal is
duke@435 57 // needed since x86 CPUs use little-endian format.
duke@435 58 static inline u2 get_Java_u2(address p) { return swap_u2(get_native_u2(p)); }
duke@435 59 static inline u4 get_Java_u4(address p) { return swap_u4(get_native_u4(p)); }
duke@435 60 static inline u8 get_Java_u8(address p) { return swap_u8(get_native_u8(p)); }
duke@435 61
duke@435 62 static inline void put_Java_u2(address p, u2 x) { put_native_u2(p, swap_u2(x)); }
duke@435 63 static inline void put_Java_u4(address p, u4 x) { put_native_u4(p, swap_u4(x)); }
duke@435 64 static inline void put_Java_u8(address p, u8 x) { put_native_u8(p, swap_u8(x)); }
duke@435 65
duke@435 66
duke@435 67 // Efficient swapping of byte ordering
duke@435 68 static inline u2 swap_u2(u2 x); // compiler-dependent implementation
duke@435 69 static inline u4 swap_u4(u4 x); // compiler-dependent implementation
duke@435 70 static inline u8 swap_u8(u8 x);
duke@435 71 };
duke@435 72
duke@435 73
duke@435 74 // The following header contains the implementations of swap_u2, swap_u4, and swap_u8[_base]
stefank@2314 75 #ifdef TARGET_OS_ARCH_linux_x86
stefank@2314 76 # include "bytes_linux_x86.inline.hpp"
stefank@2314 77 #endif
stefank@2314 78 #ifdef TARGET_OS_ARCH_solaris_x86
stefank@2314 79 # include "bytes_solaris_x86.inline.hpp"
stefank@2314 80 #endif
stefank@2314 81 #ifdef TARGET_OS_ARCH_windows_x86
stefank@2314 82 # include "bytes_windows_x86.inline.hpp"
stefank@2314 83 #endif
never@3156 84 #ifdef TARGET_OS_ARCH_bsd_x86
never@3156 85 # include "bytes_bsd_x86.inline.hpp"
never@3156 86 #endif
stefank@2314 87
stefank@2314 88
stefank@2314 89 #endif // CPU_X86_VM_BYTES_X86_HPP

mercurial