blob: 86df4446bf5ad9b7ea3203916a5322d947b39ebc [file] [log] [blame]
sewardjac9af022004-07-05 01:15:34 +00001
2/*---------------------------------------------------------------*/
sewardj752f9062010-05-03 21:38:49 +00003/*--- begin libvex_basictypes.h ---*/
sewardjac9af022004-07-05 01:15:34 +00004/*---------------------------------------------------------------*/
5
sewardjf8ed9d82004-11-12 17:40:23 +00006/*
sewardj752f9062010-05-03 21:38:49 +00007 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
sewardjf8ed9d82004-11-12 17:40:23 +00009
Elliott Hughesed398002017-06-21 14:41:24 -070010 Copyright (C) 2004-2017 OpenWorks LLP
sewardj752f9062010-05-03 21:38:49 +000011 info@open-works.net
sewardjf8ed9d82004-11-12 17:40:23 +000012
sewardj752f9062010-05-03 21:38:49 +000013 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
sewardjf8ed9d82004-11-12 17:40:23 +000017
sewardj752f9062010-05-03 21:38:49 +000018 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
sewardj7bd6ffe2005-08-03 16:07:36 +000026 02110-1301, USA.
27
sewardj752f9062010-05-03 21:38:49 +000028 The GNU General Public License is contained in the file COPYING.
sewardjf8ed9d82004-11-12 17:40:23 +000029
30 Neither the names of the U.S. Department of Energy nor the
31 University of California nor the names of its contributors may be
32 used to endorse or promote products derived from this software
33 without prior written permission.
sewardjf8ed9d82004-11-12 17:40:23 +000034*/
35
sewardj5287fd72004-07-05 17:29:08 +000036#ifndef __LIBVEX_BASICTYPES_H
37#define __LIBVEX_BASICTYPES_H
sewardjac9af022004-07-05 01:15:34 +000038
sewardjea602bc2004-10-14 21:40:12 +000039/* It is important that the sizes of the following data types (on the
40 host) are as stated. LibVEX_Init therefore checks these at
41 startup. */
42
43/* Always 8 bits. */
sewardjac9af022004-07-05 01:15:34 +000044typedef unsigned char UChar;
sewardj810dcf02004-11-22 12:55:45 +000045typedef signed char Char;
46typedef char HChar; /* signfulness depends on host */
47 /* Only to be used for printf etc
48 format strings */
sewardjac9af022004-07-05 01:15:34 +000049
sewardjea602bc2004-10-14 21:40:12 +000050/* Always 16 bits. */
sewardjac9af022004-07-05 01:15:34 +000051typedef unsigned short UShort;
52typedef signed short Short;
53
sewardjea602bc2004-10-14 21:40:12 +000054/* Always 32 bits. */
sewardjac9af022004-07-05 01:15:34 +000055typedef unsigned int UInt;
56typedef signed int Int;
57
sewardjea602bc2004-10-14 21:40:12 +000058/* Always 64 bits. */
sewardjac9af022004-07-05 01:15:34 +000059typedef unsigned long long int ULong;
60typedef signed long long int Long;
61
florianc66ba652014-12-29 19:05:37 +000062/* Equivalent of C's size_t type. The type is unsigned and has this
63 storage requirement:
64 32 bits on a 32-bit architecture
65 64 bits on a 64-bit architecture. */
66typedef unsigned long SizeT;
67
sewardjc9a43662004-11-30 18:51:59 +000068/* Always 128 bits. */
69typedef UInt U128[4];
70
sewardjc4530ae2012-05-21 10:18:49 +000071/* Always 256 bits. */
72typedef UInt U256[8];
73
sewardjacfbd7d2010-08-17 22:52:08 +000074/* A union for doing 128-bit vector primitives conveniently. */
75typedef
76 union {
77 UChar w8[16];
78 UShort w16[8];
79 UInt w32[4];
80 ULong w64[2];
81 }
82 V128;
sewardjea602bc2004-10-14 21:40:12 +000083
sewardjcc3d2192013-03-27 11:37:33 +000084/* A union for doing 256-bit vector primitives conveniently. */
85typedef
86 union {
87 UChar w8[32];
88 UShort w16[16];
89 UInt w32[8];
90 ULong w64[4];
91 }
92 V256;
93
sewardjacfbd7d2010-08-17 22:52:08 +000094/* Floating point. */
sewardja58ea662004-08-15 03:12:41 +000095typedef float Float; /* IEEE754 single-precision (32-bit) value */
96typedef double Double; /* IEEE754 double-precision (64-bit) value */
97
sewardjea602bc2004-10-14 21:40:12 +000098/* Bool is always 8 bits. */
sewardjac9af022004-07-05 01:15:34 +000099typedef unsigned char Bool;
100#define True ((Bool)1)
101#define False ((Bool)0)
102
sewardj7a240552005-01-28 21:37:12 +0000103/* Use this to coerce the result of a C comparison to a Bool. This is
104 useful when compiling with Intel icc with ultra-paranoid
105 compilation flags (-Wall). */
106static inline Bool toBool ( Int x ) {
107 Int r = (x == 0) ? False : True;
108 return (Bool)r;
109}
sewardj9d2e7692005-02-07 01:11:31 +0000110static inline UChar toUChar ( Int x ) {
111 x &= 0xFF;
112 return (UChar)x;
113}
sewardj58277842005-02-07 03:11:17 +0000114static inline HChar toHChar ( Int x ) {
115 x &= 0xFF;
116 return (HChar)x;
117}
sewardj9d2e7692005-02-07 01:11:31 +0000118static inline UShort toUShort ( Int x ) {
119 x &= 0xFFFF;
120 return (UShort)x;
121}
sewardj40e144d2005-03-28 00:46:27 +0000122static inline Short toShort ( Int x ) {
123 x &= 0xFFFF;
124 return (Short)x;
125}
sewardj98e65ba2005-02-25 18:36:07 +0000126static inline UInt toUInt ( Long x ) {
127 x &= 0xFFFFFFFFLL;
128 return (UInt)x;
129}
sewardj7a240552005-01-28 21:37:12 +0000130
sewardj35421a32004-07-05 13:12:34 +0000131/* 32/64 bit addresses. */
132typedef UInt Addr32;
133typedef ULong Addr64;
134
florianbeac5302014-12-31 12:09:38 +0000135/* An address: 32-bit or 64-bit wide depending on host architecture */
136typedef unsigned long Addr;
137
138
sewardjea602bc2004-10-14 21:40:12 +0000139/* Something which has the same size as void* on the host. That is,
140 it is 32 bits on a 32-bit host and 64 bits on a 64-bit host, and so
141 it can safely be coerced to and from a pointer type on the host
142 machine. */
143typedef unsigned long HWord;
144
florian93a09742015-01-07 20:14:48 +0000145/* Set up VEX_HOST_WORDSIZE and VEX_REGPARM. */
sewardj97e87932005-02-07 00:00:50 +0000146#undef VEX_HOST_WORDSIZE
sewardj03d91142011-03-14 12:35:18 +0000147#undef VEX_REGPARM
sewardj97e87932005-02-07 00:00:50 +0000148
sewardjaca070a2006-10-17 00:28:22 +0000149/* The following 4 work OK for Linux. */
sewardja219a802005-03-29 21:35:08 +0000150#if defined(__x86_64__)
sewardj97e87932005-02-07 00:00:50 +0000151# define VEX_HOST_WORDSIZE 8
sewardj03d91142011-03-14 12:35:18 +0000152# define VEX_REGPARM(_n) /* */
sewardj216ac962011-03-15 12:41:30 +0000153
sewardj97e87932005-02-07 00:00:50 +0000154#elif defined(__i386__)
155# define VEX_HOST_WORDSIZE 4
sewardj03d91142011-03-14 12:35:18 +0000156# define VEX_REGPARM(_n) __attribute__((regparm(_n)))
sewardj216ac962011-03-15 12:41:30 +0000157
ceriond953ebb2005-11-29 13:27:20 +0000158#elif defined(__powerpc__) && defined(__powerpc64__)
159# define VEX_HOST_WORDSIZE 8
sewardj03d91142011-03-14 12:35:18 +0000160# define VEX_REGPARM(_n) /* */
sewardj216ac962011-03-15 12:41:30 +0000161
ceriond953ebb2005-11-29 13:27:20 +0000162#elif defined(__powerpc__) && !defined(__powerpc64__)
sewardj97e87932005-02-07 00:00:50 +0000163# define VEX_HOST_WORDSIZE 4
sewardj216ac962011-03-15 12:41:30 +0000164# define VEX_REGPARM(_n) /* */
165
sewardjbbcf1882014-01-12 12:49:10 +0000166#elif defined(__arm__) && !defined(__aarch64__)
sewardj6c299f32009-12-31 18:00:12 +0000167# define VEX_HOST_WORDSIZE 4
sewardj03d91142011-03-14 12:35:18 +0000168# define VEX_REGPARM(_n) /* */
sewardjaca070a2006-10-17 00:28:22 +0000169
sewardjbbcf1882014-01-12 12:49:10 +0000170#elif defined(__aarch64__) && !defined(__arm__)
sewardjaca070a2006-10-17 00:28:22 +0000171# define VEX_HOST_WORDSIZE 8
sewardj03d91142011-03-14 12:35:18 +0000172# define VEX_REGPARM(_n) /* */
sewardjaca070a2006-10-17 00:28:22 +0000173
sewardj2019a972011-03-07 16:04:07 +0000174#elif defined(__s390x__)
175# define VEX_HOST_WORDSIZE 8
sewardj03d91142011-03-14 12:35:18 +0000176# define VEX_REGPARM(_n) /* */
sewardj2019a972011-03-07 16:04:07 +0000177
sewardjbbcf1882014-01-12 12:49:10 +0000178#elif defined(__mips__) && (__mips == 64)
petarjb92a9542013-02-27 22:57:17 +0000179# define VEX_HOST_WORDSIZE 8
sewardjbbcf1882014-01-12 12:49:10 +0000180# define VEX_REGPARM(_n) /* */
181
182#elif defined(__mips__) && (__mips != 64)
sewardjd0e5fe72012-06-07 08:51:02 +0000183# define VEX_HOST_WORDSIZE 4
184# define VEX_REGPARM(_n) /* */
185
sewardj97e87932005-02-07 00:00:50 +0000186#else
187# error "Vex: Fatal: Can't establish the host architecture"
188#endif
189
190
sewardj97e87932005-02-07 00:00:50 +0000191#endif /* ndef __LIBVEX_BASICTYPES_H */
sewardjac9af022004-07-05 01:15:34 +0000192
193/*---------------------------------------------------------------*/
sewardj5287fd72004-07-05 17:29:08 +0000194/*--- libvex_basictypes.h ---*/
sewardjac9af022004-07-05 01:15:34 +0000195/*---------------------------------------------------------------*/
sewardj0de80192015-04-10 12:27:40 +0000196