blob: e3af28339f4f8b3765f871e665e116b1fd1c24d0 [file] [log] [blame]
nethercoteebf1d862004-11-01 18:22:05 +00001
2/*--------------------------------------------------------------------*/
njnc7561b92005-06-19 01:24:32 +00003/*--- Header included by every tool C file. pub_tool_basics.h ---*/
nethercoteebf1d862004-11-01 18:22:05 +00004/*--------------------------------------------------------------------*/
5
6/*
njnb9c427c2004-12-01 14:14:42 +00007 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
nethercoteebf1d862004-11-01 18:22:05 +00009
Elliott Hughesed398002017-06-21 14:41:24 -070010 Copyright (C) 2000-2017 Julian Seward
nethercoteebf1d862004-11-01 18:22:05 +000011 jseward@acm.org
12
13 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.
17
18 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., 59 Temple Place, Suite 330, Boston, MA
26 02111-1307, USA.
27
28 The GNU General Public License is contained in the file COPYING.
29*/
30
njnc7561b92005-06-19 01:24:32 +000031#ifndef __PUB_TOOL_BASICS_H
32#define __PUB_TOOL_BASICS_H
33
34//--------------------------------------------------------------------
35// PURPOSE: This header should be imported by every single C file in
36// tools. It contains the basic types and other things needed everywhere.
37// There is no corresponding C file because this isn't a module
38// containing executable code, it's all just declarations.
39//--------------------------------------------------------------------
40
41/* ---------------------------------------------------------------------
42 Other headers to include
43 ------------------------------------------------------------------ */
44
florianaf930422014-12-29 19:06:40 +000045// VEX defines Char, UChar, Short, UShort, Int, UInt, Long, ULong, SizeT,
florian9b3da112014-12-31 12:11:15 +000046// Addr, Addr32, Addr64, HWord, HChar, Bool, False and True.
njnc7561b92005-06-19 01:24:32 +000047#include "libvex_basictypes.h"
48
njnc7561b92005-06-19 01:24:32 +000049// For varargs types
50#include <stdarg.h>
51
nethercoteebf1d862004-11-01 18:22:05 +000052
53/* ---------------------------------------------------------------------
njn9c533252009-04-24 04:57:07 +000054 symbol prefixing
55 ------------------------------------------------------------------ */
56
57// All symbols externally visible from Valgrind are prefixed
58// as specified here to avoid namespace conflict problems.
59//
60// VG_ is for symbols exported from modules. ML_ (module-local) is
61// for symbols which are not intended to be visible outside modules,
62// but which cannot be declared as C 'static's since they need to be
63// visible across C files within a given module. It is a mistake for
64// a ML_ name to appear in a pub_core_*.h or pub_tool_*.h file.
65// Likewise it is a mistake for a VG_ name to appear in a priv_*.h
66// file.
67
68#define VGAPPEND(str1,str2) str1##str2
69
70#define VG_(str) VGAPPEND(vgPlain_, str)
71#define ML_(str) VGAPPEND(vgModuleLocal_, str)
72
73
74/* ---------------------------------------------------------------------
njnd01fef72005-03-25 23:35:48 +000075 builtin types
nethercoteebf1d862004-11-01 18:22:05 +000076 ------------------------------------------------------------------ */
77
78// By choosing the right types, we can get these right for 32-bit and 64-bit
79// platforms without having to do any conditional compilation or anything.
njnc4431bf2009-01-15 21:29:24 +000080// POSIX references:
81// - http://www.opengroup.org/onlinepubs/009695399/basedefs/sys/types.h.html
82// - http://www.opengroup.org/onlinepubs/009695399/basedefs/stddef.h.html
nethercote8b5f40c2004-11-02 13:29:50 +000083//
nethercoteebf1d862004-11-01 18:22:05 +000084// Size in bits on: 32-bit archs 64-bit archs
85// ------------ ------------
nethercoteebf1d862004-11-01 18:22:05 +000086typedef unsigned long UWord; // 32 64
njnc4431bf2009-01-15 21:29:24 +000087typedef signed long Word; // 32 64
nethercoteebf1d862004-11-01 18:22:05 +000088
florianaf930422014-12-29 19:06:40 +000089// Our equivalent of POSIX 'ssize_t':
njnc4431bf2009-01-15 21:29:24 +000090// - ssize_t is "used for a count of bytes or an error indication".
nethercote7ac7f7b2004-11-02 12:36:02 +000091typedef Word SSizeT; // 32 64
92
njnc4431bf2009-01-15 21:29:24 +000093// Our equivalent of POSIX 'ptrdiff_t':
94// - ptrdiff_t is a "signed integer type of the result of subtracting two
95// pointers".
96// We use it for memory offsets, eg. the offset into a memory block.
97typedef Word PtrdiffT; // 32 64
nethercote5b9fafd2004-11-04 18:39:22 +000098
njnc4431bf2009-01-15 21:29:24 +000099// Our equivalent of POSIX 'off_t':
100// - off_t is "used for file sizes".
101// At one point we were using it for memory offsets, but PtrdiffT should be
102// used in those cases.
sewardj6e9de462011-06-28 07:25:29 +0000103// Nb: on Linux, off_t is a signed word-sized int. On Darwin it's
njnf76d27a2009-05-28 01:53:07 +0000104// always a signed 64-bit int. So we defined our own Off64T as well.
sewardj8eb8bab2015-07-21 14:44:28 +0000105#if defined(VGO_linux) || defined(VGO_solaris)
njnc4431bf2009-01-15 21:29:24 +0000106typedef Word OffT; // 32 64
njnf76d27a2009-05-28 01:53:07 +0000107#elif defined(VGO_darwin)
108typedef Long OffT; // 64 64
109#else
110# error Unknown OS
111#endif
njnc4431bf2009-01-15 21:29:24 +0000112typedef Long Off64T; // 64 64
sewardj274461d2005-10-02 17:01:41 +0000113
njn21edee32005-06-11 04:44:38 +0000114#if !defined(NULL)
115# define NULL ((void*)0)
116#endif
sewardjbc7df202005-05-02 10:25:34 +0000117
sewardj9c606bd2008-09-18 18:12:50 +0000118/* This is just too useful to not have around the place somewhere. */
119typedef struct { UWord uw1; UWord uw2; } UWordPair;
120
sewardje1f33a42006-10-17 01:38:48 +0000121
njnc7561b92005-06-19 01:24:32 +0000122/* ---------------------------------------------------------------------
123 non-builtin types
124 ------------------------------------------------------------------ */
125
126// These probably shouldn't be here, but moving them to their logical
127// modules results in a lot more #includes...
128
129/* ThreadIds are simply indices into the VG_(threads)[] array. */
130typedef UInt ThreadId;
131
Elliott Hughesed398002017-06-21 14:41:24 -0700132/* Many data structures need to allocate and release memory.
133 The allocation/release functions must be provided by the caller.
134 The Alloc_Fn_t function must allocate a chunk of memory of size szB.
135 cc is the Cost Centre for this allocated memory. This constant string
136 is used to provide Valgrind's heap profiling, activated by
137 --profile-heap=no|yes.
138 The corresponding Free_Fn_t frees the memory chunk p. */
139
140typedef void* (*Alloc_Fn_t) ( const HChar* cc, SizeT szB );
141typedef void (*Free_Fn_t) ( void* p );
142
njnc7561b92005-06-19 01:24:32 +0000143/* An abstraction of syscall return values.
sewardjbd664fd2015-07-08 17:08:23 +0000144 Linux/MIPS32 and Linux/MIPS64:
145 When _isError == False,
146 _val and possible _valEx hold the return value. Whether
147 _valEx actually holds a valid value depends on which syscall
148 this SysRes holds of the result of.
149 When _isError == True,
150 _val holds the error code.
151
152 Linux/other:
njncda2f0f2009-05-18 02:12:08 +0000153 When _isError == False,
154 _val holds the return value.
155 When _isError == True,
sewardjbd664fd2015-07-08 17:08:23 +0000156 _val holds the error code.
sewardje1f33a42006-10-17 01:38:48 +0000157
njncda2f0f2009-05-18 02:12:08 +0000158 Darwin:
159 Interpretation depends on _mode:
160 MACH, MDEP:
161 these can never 'fail' (apparently). The result of the
162 syscall is a single host word, _wLO.
163 UNIX:
164 Can record a double-word error or a double-word result:
165 When _mode is SysRes_UNIX_OK, _wHI:_wLO holds the result.
166 When _mode is SysRes_UNIX_ERR, _wHI:_wLO holds the error code.
167 Probably the high word of an error is always ignored by
168 userspace, but we have to record it, so that we can correctly
njn38c73d72009-05-19 01:32:52 +0000169 update both {R,E}DX and {R,E}AX (in guest state) given a SysRes,
170 if we're required to.
sewardj8eb8bab2015-07-21 14:44:28 +0000171
172 Solaris:
173 When _isError == False,
174 _val and _val2 hold the return value.
175 When _isError == True,
176 _val holds the error code.
njnc7561b92005-06-19 01:24:32 +0000177*/
sewardjbd664fd2015-07-08 17:08:23 +0000178#if defined(VGP_mips32_linux) || defined(VGP_mips64_linux)
sewardje1f33a42006-10-17 01:38:48 +0000179typedef
180 struct {
njncda2f0f2009-05-18 02:12:08 +0000181 Bool _isError;
florian9c120ae2015-04-20 21:02:18 +0000182 UWord _val;
florian9c120ae2015-04-20 21:02:18 +0000183 UWord _valEx;
sewardje1f33a42006-10-17 01:38:48 +0000184 }
185 SysRes;
sewardjbd664fd2015-07-08 17:08:23 +0000186
187#elif defined(VGO_linux) \
188 && !defined(VGP_mips32_linux) && !defined(VGP_mips64_linux)
189typedef
190 struct {
191 Bool _isError;
192 UWord _val;
193 }
194 SysRes;
195
njnf76d27a2009-05-28 01:53:07 +0000196#elif defined(VGO_darwin)
197typedef
bart116458b2009-12-29 14:11:38 +0000198 enum {
199 SysRes_MACH=40, // MACH, result is _wLO
200 SysRes_MDEP, // MDEP, result is _wLO
201 SysRes_UNIX_OK, // UNIX, success, result is _wHI:_wLO
202 SysRes_UNIX_ERR // UNIX, error, error is _wHI:_wLO
203 }
204 SysResMode;
205typedef
njnf76d27a2009-05-28 01:53:07 +0000206 struct {
207 UWord _wLO;
208 UWord _wHI;
bart116458b2009-12-29 14:11:38 +0000209 SysResMode _mode;
njnf76d27a2009-05-28 01:53:07 +0000210 }
211 SysRes;
sewardjbd664fd2015-07-08 17:08:23 +0000212
sewardj8eb8bab2015-07-21 14:44:28 +0000213#elif defined(VGO_solaris)
214typedef
215 struct {
216 UWord _val;
217 UWord _val2;
218 Bool _isError;
219 }
220 SysRes;
221
njncda2f0f2009-05-18 02:12:08 +0000222#else
223# error "Unknown OS"
224#endif
225
226
227/* ---- And now some basic accessor functions for it. ---- */
228
sewardjbd664fd2015-07-08 17:08:23 +0000229#if defined(VGP_mips32_linux) || defined(VGP_mips64_linux)
njncda2f0f2009-05-18 02:12:08 +0000230
231static inline Bool sr_isError ( SysRes sr ) {
232 return sr._isError;
233}
234static inline UWord sr_Res ( SysRes sr ) {
235 return sr._isError ? 0 : sr._val;
236}
sewardj5db15402012-06-07 09:13:21 +0000237static inline UWord sr_ResEx ( SysRes sr ) {
238 return sr._isError ? 0 : sr._valEx;
239}
njncda2f0f2009-05-18 02:12:08 +0000240static inline UWord sr_Err ( SysRes sr ) {
241 return sr._isError ? sr._val : 0;
242}
sewardjbd664fd2015-07-08 17:08:23 +0000243static inline Bool sr_EQ ( UInt sysno, SysRes sr1, SysRes sr2 ) {
244 /* This uglyness of hardcoding syscall numbers is necessary to
Elliott Hughesed398002017-06-21 14:41:24 -0700245 avoid having this header file be dependent on
sewardjbd664fd2015-07-08 17:08:23 +0000246 include/vki/vki-scnums-mips{32,64}-linux.h. It seems pretty
247 safe given that it is inconceivable that the syscall numbers
248 for such simple syscalls would ever change. To make it
249 really safe, coregrind/m_vkiscnums.c static-asserts that these
250 syscall numbers haven't changed, so that the build wil simply
251 fail if they ever do. */
252# if defined(VGP_mips32_linux)
253 const UInt __nr_Linux = 4000;
254 const UInt __nr_pipe = __nr_Linux + 42;
255 const UInt __nr_pipe2 = __nr_Linux + 328;
256# else
257 const UInt __nr_Linux = 5000;
258 const UInt __nr_pipe = __nr_Linux + 21;
259 const UInt __nr_pipe2 = __nr_Linux + 287;
260# endif
261 Bool useEx = sysno == __nr_pipe || sysno == __nr_pipe2;
floriand59d9782015-04-01 19:20:16 +0000262 return sr1._val == sr2._val
sewardjbd664fd2015-07-08 17:08:23 +0000263 && (useEx ? (sr1._valEx == sr2._valEx) : True)
264 && sr1._isError == sr2._isError;
265}
266
267#elif defined(VGO_linux) \
268 && !defined(VGP_mips32_linux) && !defined(VGP_mips64_linux)
269
270static inline Bool sr_isError ( SysRes sr ) {
271 return sr._isError;
272}
273static inline UWord sr_Res ( SysRes sr ) {
274 return sr._isError ? 0 : sr._val;
275}
276static inline UWord sr_Err ( SysRes sr ) {
277 return sr._isError ? sr._val : 0;
278}
279static inline Bool sr_EQ ( UInt sysno, SysRes sr1, SysRes sr2 ) {
280 /* sysno is ignored for Linux/not-MIPS */
281 return sr1._val == sr2._val
282 && sr1._isError == sr2._isError;
njncda2f0f2009-05-18 02:12:08 +0000283}
284
njnf76d27a2009-05-28 01:53:07 +0000285#elif defined(VGO_darwin)
286
287static inline Bool sr_isError ( SysRes sr ) {
288 switch (sr._mode) {
sewardj19e2c942014-10-17 15:05:01 +0000289 case SysRes_UNIX_ERR:
290 return True;
njnf76d27a2009-05-28 01:53:07 +0000291 /* should check tags properly and assert here, but we can't here */
sewardj19e2c942014-10-17 15:05:01 +0000292 case SysRes_MACH:
293 case SysRes_MDEP:
294 case SysRes_UNIX_OK:
295 default:
296 return False;
njnf76d27a2009-05-28 01:53:07 +0000297 }
298}
299
300static inline UWord sr_Res ( SysRes sr ) {
301 switch (sr._mode) {
302 case SysRes_MACH:
303 case SysRes_MDEP:
sewardj19e2c942014-10-17 15:05:01 +0000304 case SysRes_UNIX_OK:
305 return sr._wLO;
306 /* should assert, but we can't here */
307 case SysRes_UNIX_ERR:
308 default:
309 return 0;
njnf76d27a2009-05-28 01:53:07 +0000310 }
311}
312
313static inline UWord sr_ResHI ( SysRes sr ) {
314 switch (sr._mode) {
sewardj19e2c942014-10-17 15:05:01 +0000315 case SysRes_UNIX_OK:
316 return sr._wHI;
317 /* should assert, but we can't here */
318 case SysRes_MACH:
319 case SysRes_MDEP:
320 case SysRes_UNIX_ERR:
321 default:
322 return 0;
njnf76d27a2009-05-28 01:53:07 +0000323 }
324}
325
326static inline UWord sr_Err ( SysRes sr ) {
327 switch (sr._mode) {
sewardj19e2c942014-10-17 15:05:01 +0000328 case SysRes_UNIX_ERR:
329 return sr._wLO;
330 /* should assert, but we can't here */
331 case SysRes_MACH:
332 case SysRes_MDEP:
333 case SysRes_UNIX_OK:
334 default:
335 return 0;
njnf76d27a2009-05-28 01:53:07 +0000336 }
337}
338
sewardjbd664fd2015-07-08 17:08:23 +0000339static inline Bool sr_EQ ( UInt sysno, SysRes sr1, SysRes sr2 ) {
340 /* sysno is ignored for Darwin */
njnf76d27a2009-05-28 01:53:07 +0000341 return sr1._mode == sr2._mode
342 && sr1._wLO == sr2._wLO && sr1._wHI == sr2._wHI;
343}
344
sewardj8eb8bab2015-07-21 14:44:28 +0000345#elif defined(VGO_solaris)
346
347static inline Bool sr_isError ( SysRes sr ) {
348 return sr._isError;
349}
350static inline UWord sr_Res ( SysRes sr ) {
351 return sr._isError ? 0 : sr._val;
352}
353static inline UWord sr_ResHI ( SysRes sr ) {
354 return sr._isError ? 0 : sr._val2;
355}
356static inline UWord sr_Err ( SysRes sr ) {
357 return sr._isError ? sr._val : 0;
358}
359static inline Bool sr_EQ ( UInt sysno, SysRes sr1, SysRes sr2 ) {
360 /* sysno is ignored for Solaris */
361 return sr1._val == sr2._val
Elliott Hughesed398002017-06-21 14:41:24 -0700362 && sr1._isError == sr2._isError
363 && (!sr1._isError) ? (sr1._val2 == sr2._val2) : True;
sewardj8eb8bab2015-07-21 14:44:28 +0000364}
365
njncda2f0f2009-05-18 02:12:08 +0000366#else
367# error "Unknown OS"
368#endif
sewardje1f33a42006-10-17 01:38:48 +0000369
njnc7561b92005-06-19 01:24:32 +0000370
371/* ---------------------------------------------------------------------
sewardj45f4e7c2005-09-27 19:20:21 +0000372 Miscellaneous (word size, endianness, regparmness, stringification)
njnc7561b92005-06-19 01:24:32 +0000373 ------------------------------------------------------------------ */
374
sewardj6e340c72005-07-10 00:53:42 +0000375/* Word size: this is going to be either 4 or 8. */
njnc7561b92005-06-19 01:24:32 +0000376// It should probably be in m_machine.
377#define VG_WORDSIZE VEX_HOST_WORDSIZE
378
sewardj6e340c72005-07-10 00:53:42 +0000379/* Endianness */
380#undef VG_BIGENDIAN
381#undef VG_LITTLEENDIAN
382
sewardj5db15402012-06-07 09:13:21 +0000383#if defined(VGA_x86) || defined(VGA_amd64) || defined (VGA_arm) \
sewardjf0c12502014-01-12 12:54:00 +0000384 || ((defined(VGA_mips32) || defined(VGA_mips64)) && defined (_MIPSEL)) \
Elliott Hughesed398002017-06-21 14:41:24 -0700385 || defined(VGA_arm64) || defined(VGA_ppc64le)
sewardj6e340c72005-07-10 00:53:42 +0000386# define VG_LITTLEENDIAN 1
carllcae0cc22014-08-07 23:17:29 +0000387#elif defined(VGA_ppc32) || defined(VGA_ppc64be) || defined(VGA_s390x) \
petarj4df0bfc2013-02-27 23:17:33 +0000388 || ((defined(VGA_mips32) || defined(VGA_mips64)) && defined (_MIPSEB))
sewardj6e340c72005-07-10 00:53:42 +0000389# define VG_BIGENDIAN 1
njn38c73d72009-05-19 01:32:52 +0000390#else
391# error Unknown arch
sewardj6e340c72005-07-10 00:53:42 +0000392#endif
393
floriand65f7262014-12-29 22:19:24 +0000394/* Offsetof */
395#if !defined(offsetof)
396# define offsetof(type,memb) ((SizeT)(HWord)&((type*)0)->memb)
397#endif
398
Elliott Hughesed398002017-06-21 14:41:24 -0700399#if !defined(container_of)
400# define container_of(ptr, type, member) ((type *)((char *)(ptr) - offsetof(type, member)))
401#endif
402
floriand65f7262014-12-29 22:19:24 +0000403/* Alignment */
404/* We use a prefix vg_ for vg_alignof as its behaviour slightly
405 differs from the standard alignof/gcc defined __alignof__
406
407 vg_alignof returns a "safe" alignement.
408 "safe" is defined as the alignment chosen by the compiler in
409 a struct made of a char followed by this type.
410
411 Note that this is not necessarily the "preferred" alignment
412 for a platform. This preferred alignment is returned by the gcc
413 __alignof__ and by the standard (in recent standard) alignof.
414 Compared to __alignof__, vg_alignof gives on some platforms (e.g.
415 amd64, ppc32, ppc64) a bigger alignment for long double (16 bytes
416 instead of 8).
417 On some platforms (e.g. x86), vg_alignof gives a smaller alignment
418 than __alignof__ for long long and double (4 bytes instead of 8).
419 If we want to have the "preferred" alignment for the basic types,
420 then either we need to depend on gcc __alignof__, or on a (too)
421 recent standard and compiler (implementing <stdalign.h>).
422*/
423#define vg_alignof(_type) (sizeof(struct {char c;_type _t;})-sizeof(_type))
424
sewardj6e340c72005-07-10 00:53:42 +0000425/* Regparmness */
njnf536bbb2005-06-13 04:21:38 +0000426#if defined(VGA_x86)
njnaf839f52005-06-23 03:27:57 +0000427# define VG_REGPARM(n) __attribute__((regparm(n)))
sewardj59570ff2010-01-01 11:59:33 +0000428#elif defined(VGA_amd64) || defined(VGA_ppc32) \
carllcae0cc22014-08-07 23:17:29 +0000429 || defined(VGA_ppc64be) || defined(VGA_ppc64le) \
430 || defined(VGA_arm) || defined(VGA_s390x) \
sewardjf0c12502014-01-12 12:54:00 +0000431 || defined(VGA_mips32) || defined(VGA_mips64) \
Elliott Hughesed398002017-06-21 14:41:24 -0700432 || defined(VGA_arm64)
njnaf839f52005-06-23 03:27:57 +0000433# define VG_REGPARM(n) /* */
njnf536bbb2005-06-13 04:21:38 +0000434#else
435# error Unknown arch
436#endif
437
sewardj45f4e7c2005-09-27 19:20:21 +0000438/* Macro games */
439#define VG_STRINGIFZ(__str) #__str
440#define VG_STRINGIFY(__str) VG_STRINGIFZ(__str)
441
njn64ea7f82006-10-14 23:26:21 +0000442// Where to send bug reports to.
443#define VG_BUGS_TO "www.valgrind.org"
444
bart5dd8e6a2008-03-22 08:04:29 +0000445/* Branch prediction hints. */
sewardj4ee9c562011-05-09 21:54:44 +0000446#if defined(__GNUC__)
bart5dd8e6a2008-03-22 08:04:29 +0000447# define LIKELY(x) __builtin_expect(!!(x), 1)
sewardj4ee9c562011-05-09 21:54:44 +0000448# define UNLIKELY(x) __builtin_expect(!!(x), 0)
bart5dd8e6a2008-03-22 08:04:29 +0000449#else
450# define LIKELY(x) (x)
451# define UNLIKELY(x) (x)
452#endif
453
sewardj588adef2009-08-15 22:41:51 +0000454// printf format string checking for gcc.
455// This feature has been supported since at least gcc version 2.95.
456// For more information about the format attribute, see
457// http://gcc.gnu.org/onlinedocs/gcc-4.3.0/gcc/Function-Attributes.html.
458#if defined(__GNUC__)
459#define PRINTF_CHECK(x, y) __attribute__((format(__printf__, x, y)))
460#else
461#define PRINTF_CHECK(x, y)
462#endif
463
florian70a5de12014-10-22 12:53:16 +0000464// Macro to "cast" away constness (from type const T to type T) without
465// GCC complaining about it. This macro should be used RARELY.
466// x is expected to have type const T
467#define CONST_CAST(T,x) \
468 ({ \
469 union { \
470 const T in; \
471 T out; \
472 } var = { .in = x }; var.out; \
473 })
bart5dd8e6a2008-03-22 08:04:29 +0000474
Elliott Hughesed398002017-06-21 14:41:24 -0700475/* Some architectures (eg. mips, arm) do not support unaligned memory access
476 by hardware, so GCC warns about suspicious situations. This macro could
477 be used to avoid these warnings but only after careful examination. */
478#define ASSUME_ALIGNED(D, x) \
479 ({ \
480 union { \
481 void *in; \
482 D out; \
483 } var; \
484 var.in = (void *) (x); var.out; \
485 })
486
florianc13d5442015-03-28 18:36:01 +0000487// Poor man's static assert
florianea734832015-04-04 18:43:00 +0000488#define STATIC_ASSERT(x) extern int VG_(VG_(VG_(unused)))[(x) ? 1 : -1] \
489 __attribute__((unused))
florianc13d5442015-03-28 18:36:01 +0000490
Elliott Hughesa0664b92017-04-18 17:46:52 -0700491#define VG_MAX(a,b) ((a) > (b) ? a : b)
492#define VG_MIN(a,b) ((a) < (b) ? a : b)
493
njnc7561b92005-06-19 01:24:32 +0000494#endif /* __PUB_TOOL_BASICS_H */
nethercoteebf1d862004-11-01 18:22:05 +0000495
496/*--------------------------------------------------------------------*/
497/*--- end ---*/
498/*--------------------------------------------------------------------*/