Bug 402781 - Redo the cache used to process indirect branch targets.
[valgrind.git] / coregrind / pub_core_debuglog.h
blob74bf2afb25784446be4e2a67507ef81569c04663
2 /*--------------------------------------------------------------------*/
3 /*--- Debug (not-for-user) logging. pub_core_debuglog.h ---*/
4 /*--------------------------------------------------------------------*/
6 /*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
10 Copyright (C) 2000-2017 Julian Seward
11 jseward@acm.org
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., 59 Temple Place, Suite 330, Boston, MA
26 02111-1307, USA.
28 The GNU General Public License is contained in the file COPYING.
31 #ifndef __PUB_CORE_DEBUGLOG_H
32 #define __PUB_CORE_DEBUGLOG_H
34 //--------------------------------------------------------------------
35 // PURPOSE: This module provides a low-level debug logging facility
36 // that works through all the twists and turns of program startup. Is
37 // is completely independent of everything, including all memory
38 // facilities, and emits the debug log on file descriptor 2 (stderr).
39 // This module is the first to be initialised at system startup.
41 // Because VG_(debugLog) does printf-style formatting, and because
42 // this module depends on NO OTHERS, this module contains Valgrind's
43 // vfprintf implementation too.
44 //--------------------------------------------------------------------
46 /* Gaaah! We don't want glibc dependencies, but there is no easy,
47 portable way to avoid using stdarg.h. */
48 #include <stdarg.h>
50 #include "pub_core_basics.h" /* For definition of VG_ macro */
52 /* There are no tool-visible exports from m_debuglog, hence no header
53 file for it. */
54 /* #include "pub_tool_debuglog.h" */
57 /* Module startup. */
58 extern
59 void VG_(debugLog_startup) ( Int level, const HChar* who );
62 /* Whether %ps should escape XML metacharacters. */
63 extern void VG_(debugLog_setXml)(Bool xml);
66 /* Get the logging threshold level, as set by the most recent call to
67 VG_(debugLog_startup), or zero if there have been no such calls so
68 far. */
69 extern
70 Int VG_(debugLog_getLevel) ( void );
73 /* Send debugging output. Nothing happens unless 'level'
74 does not exceed the logging threshold level. */
75 extern
76 void VG_(debugLog) ( Int level, const HChar* modulename,
77 const HChar* format, ... )
78 __attribute__((format(__printf__, 3, 4)));
81 /* A simple vprintf(). For each emitted byte, (*send_fn) is called with
82 that byte, and 'send_arg2' as its second param. */
83 extern
84 UInt VG_(debugLog_vprintf) (
85 void (*send_fn)(HChar,void*),/* byte sink */
86 void* send_arg2, /* 2nd arg for byte sink */
87 const HChar *format,
88 va_list vargs
92 #endif // __PUB_CORE_DEBUGLOG_H
94 /*--------------------------------------------------------------------*/
95 /*--- end pub_core_debuglog.h ---*/
96 /*--------------------------------------------------------------------*/