forked from antmicro/tlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
debug.c
96 lines (90 loc) · 2.29 KB
/
debug.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
* Debug functions.
*
* Copyright (c) Antmicro
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#include <unistd.h>
#include "infrastructure.h"
#include "cpu.h"
#include "tcg-op.h"
#include <global_helper.h>
#define GEN_HELPER 1
#include <global_helper.h>
#include <string.h>
#include "debug.h"
char *msgs[MAX_MSG_COUNT];
#define MAX_MSG_LENGTH 4096
#ifdef DEBUG_ON
static uint32_t log_set_msg(char *msg)
{
int id = 0;
while (msgs[id] != NULL) {
if ((strcmp(msgs[id], msg)) == 0) {
return id;
}
id++;
}
if (id >= MAX_MSG_COUNT) {
msgs[0] = tlib_strdup("MSG_COUNT_OVERFLOW");
return 0; // overflow
}
msgs[id] = tlib_strdup(msg);
return id;
}
#endif
void generate_log(uint32_t pc, char *format, ...)
{
#ifdef DEBUG_ON
char msg[MAX_MSG_LENGTH];
va_list argList;
va_start(argList, format);
vsprintf(msg, format, argList);
va_end(argList);
TCGv ll = tcg_temp_new();
TCGv ll2 = tcg_temp_new();
int id = log_set_msg(msg);
tcg_gen_movi_tl(ll, id);
tcg_gen_movi_tl(ll2, pc);
gen_helper_log(ll, ll2);
tcg_temp_free(ll);
tcg_temp_free(ll2);
#endif
}
void mark_as_locked(struct TranslationBlock *tb, char *filename, int line_number)
{
#if DEBUG
tb->lock_active = 1;
tb->lock_file = filename;
tb->lock_line = line_number;
#endif
}
void check_locked(struct TranslationBlock *tb)
{
#if DEBUG
if (tb->lock_active) {
tlib_abortf("Translation after locking the TB detected @ %s:%d", tb->lock_file, tb->lock_line);
}
#endif
}
void generate_var_log(TCGv v)
{
#ifdef DEBUG_ON
gen_helper_var_log(v);
#endif
}