bytes.hpp revision 6760:22b98ab2a69f
1205859Sjoel/*
2162886Snetchild * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
3159687Snetchild * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4159687Snetchild *
5159687Snetchild * This code is free software; you can redistribute it and/or modify it
6159687Snetchild * under the terms of the GNU General Public License version 2 only, as
7159687Snetchild * published by the Free Software Foundation.
8159687Snetchild *
9159687Snetchild * This code is distributed in the hope that it will be useful, but WITHOUT
10159687Snetchild * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11159687Snetchild * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12159687Snetchild * version 2 for more details (a copy is included in the LICENSE file that
13159687Snetchild * accompanied this code).
14159687Snetchild *
15159687Snetchild * You should have received a copy of the GNU General Public License version
16159687Snetchild * 2 along with this work; if not, write to the Free Software Foundation,
17159687Snetchild * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18159687Snetchild *
19159687Snetchild * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20159687Snetchild * or visit www.oracle.com if you need additional information or have any
21159687Snetchild * questions.
22159687Snetchild *
23159687Snetchild */
24159687Snetchild
25159687Snetchild#ifndef SHARE_VM_UTILITIES_BYTES_HPP
26159687Snetchild#define SHARE_VM_UTILITIES_BYTES_HPP
27159687Snetchild
28159687Snetchild#ifdef TARGET_ARCH_x86
29159687Snetchild# include "bytes_x86.hpp"
30159687Snetchild#endif
31159687Snetchild#ifdef TARGET_ARCH_sparc
32159687Snetchild# include "bytes_sparc.hpp"
33159687Snetchild#endif
34159687Snetchild#ifdef TARGET_ARCH_zero
35162886Snetchild# include "bytes_zero.hpp"
36159687Snetchild#endif
37162886Snetchild#ifdef TARGET_ARCH_arm
38162886Snetchild# include "bytes_arm.hpp"
39159687Snetchild#endif
40159687Snetchild#ifdef TARGET_ARCH_ppc
41159687Snetchild# include "bytes_ppc.hpp"
42162886Snetchild#endif
43162886Snetchild
44159687Snetchild#endif // SHARE_VM_UTILITIES_BYTES_HPP
45162886Snetchild