Advance the head to 3.16.0.GIT.
[valgrind.git] / VEX / priv / main_globals.h
blobcab88b61f7bbe7e0bf58b57cb46cbfa1207e2114
2 /*---------------------------------------------------------------*/
3 /*--- begin main_globals.h ---*/
4 /*---------------------------------------------------------------*/
6 /*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
10 Copyright (C) 2004-2017 OpenWorks LLP
11 info@open-works.net
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.
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.
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
26 02110-1301, USA.
28 The GNU General Public License is contained in the file COPYING.
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.
36 #ifndef __VEX_MAIN_GLOBALS_H
37 #define __VEX_MAIN_GLOBALS_H
39 #include "libvex_basictypes.h"
40 #include "libvex.h"
43 /* Global settings for the VEX library. These are the
44 only library-wide globals. */
46 /* Are we started yet? */
47 extern Bool vex_initdone;
49 /* failure exit function */
50 __attribute__ ((noreturn))
51 extern void (*vex_failure_exit) ( void );
53 /* logging output function */
54 extern void (*vex_log_bytes) ( const HChar*, SizeT nbytes );
56 /* debug paranoia level */
57 extern Int vex_debuglevel;
59 /* trace flags */
60 extern Int vex_traceflags;
62 /* Optimiser/front-end control */
63 extern VexControl vex_control;
66 /* vex_traceflags values */
67 #define VEX_TRACE_FE (1 << 7) /* show conversion into IR */
68 #define VEX_TRACE_OPT1 (1 << 6) /* show after initial opt */
69 #define VEX_TRACE_INST (1 << 5) /* show after instrumentation */
70 #define VEX_TRACE_OPT2 (1 << 4) /* show after second opt */
71 #define VEX_TRACE_TREES (1 << 3) /* show after tree building */
72 #define VEX_TRACE_VCODE (1 << 2) /* show selected insns */
73 #define VEX_TRACE_RCODE (1 << 1) /* show after reg-alloc */
74 #define VEX_TRACE_ASM (1 << 0) /* show final assembly */
77 #endif /* ndef __VEX_MAIN_GLOBALS_H */
79 /*---------------------------------------------------------------*/
80 /*--- end main_globals.h ---*/
81 /*---------------------------------------------------------------*/