Branch data Line data Source code
1 : : /* do not edit automatically generated by mc from M2Debug. */
2 : : /* M2Debug.mod simple debugging facilities in the Modula-2 compiler.
3 : :
4 : : Copyright (C) 2001-2025 Free Software Foundation, Inc.
5 : : Contributed by Gaius Mulley <gaius.mulley@southwales.ac.uk>.
6 : :
7 : : This file is part of GNU Modula-2.
8 : :
9 : : GNU Modula-2 is free software; you can redistribute it and/or modify
10 : : it under the terms of the GNU General Public License as published by
11 : : the Free Software Foundation; either version 3, or (at your option)
12 : : any later version.
13 : :
14 : : GNU Modula-2 is distributed in the hope that it will be useful, but
15 : : WITHOUT ANY WARRANTY; without even the implied warranty of
16 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 : : General Public License for more details.
18 : :
19 : : You should have received a copy of the GNU General Public License
20 : : along with GNU Modula-2; see the file COPYING3. If not see
21 : : <http://www.gnu.org/licenses/>. */
22 : :
23 : : #define INCLUDE_MEMORY
24 : : #include "config.h"
25 : : #include "system.h"
26 : : #include "gcc-consolidation.h"
27 : :
28 : : #include <stdbool.h>
29 : : # if !defined (PROC_D)
30 : : # define PROC_D
31 : : typedef void (*PROC_t) (void);
32 : : typedef struct { PROC_t proc; } PROC;
33 : : # endif
34 : :
35 : : #define _M2Debug_C
36 : :
37 : : #include "GM2Debug.h"
38 : : # include "GStrIO.h"
39 : : # include "GM2Error.h"
40 : : # include "GM2Options.h"
41 : :
42 : :
43 : : /*
44 : : Assert - tests the boolean, q. If false then an error is reported
45 : : and the execution is HALTed.
46 : : */
47 : :
48 : : extern "C" void M2Debug_Assert (bool q);
49 : :
50 : : /*
51 : : WriteDebug - only writes a string if the debugging mode is on.
52 : : */
53 : :
54 : : extern "C" void M2Debug_WriteDebug (const char *a_, unsigned int _a_high);
55 : :
56 : :
57 : : /*
58 : : Assert - tests the boolean, q. If false then an error is reported
59 : : and the execution is HALTed.
60 : : */
61 : :
62 : 1895285248 : extern "C" void M2Debug_Assert (bool q)
63 : : {
64 : 1895285248 : if (! q)
65 : : {
66 : 24 : M2Error_InternalError ((const char *) "assert failed", 13);
67 : : }
68 : 1895285224 : }
69 : :
70 : :
71 : : /*
72 : : WriteDebug - only writes a string if the debugging mode is on.
73 : : */
74 : :
75 : 0 : extern "C" void M2Debug_WriteDebug (const char *a_, unsigned int _a_high)
76 : : {
77 : 0 : char a[_a_high+1];
78 : :
79 : : /* make a local copy of each unbounded array. */
80 : 0 : memcpy (a, a_, _a_high+1);
81 : :
82 : 0 : if (M2Options_CompilerDebugging)
83 : : {
84 : 0 : StrIO_WriteString ((const char *) a, _a_high);
85 : 0 : StrIO_WriteLn ();
86 : : }
87 : 0 : }
88 : :
89 : 15392 : extern "C" void _M2_M2Debug_init (__attribute__((unused)) int argc, __attribute__((unused)) char *argv[], __attribute__((unused)) char *envp[])
90 : : {
91 : 15392 : }
92 : :
93 : 0 : extern "C" void _M2_M2Debug_fini (__attribute__((unused)) int argc, __attribute__((unused)) char *argv[], __attribute__((unused)) char *envp[])
94 : : {
95 : 0 : }
|