blob: ab5401bfc16487d2841021a829059d5429f68b55 (
plain)
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
|
/*
* Copyright 2019 WebAssembly Community Group participants
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "support/debug.h"
#include <cstring>
#include <set>
#include <string>
#ifndef NDEBUG
static bool debugEnabled = false;
static std::set<std::string> debugTypesEnabled;
bool wasm::isDebugEnabled(const char* type) {
if (!debugEnabled) {
return false;
}
if (debugTypesEnabled.empty()) {
return true;
}
return debugTypesEnabled.count(type) > 0;
}
void wasm::setDebugEnabled(const char* types) {
debugEnabled = true;
// split types on comma and add each string to debugTypesEnabled
size_t start = 0;
size_t end = strlen(types);
while (start < end) {
const char* type_end = strchr(types + start, ',');
if (type_end == nullptr) {
type_end = types + end;
}
size_t type_size = type_end - (types + start);
std::string type(types + start, type_size);
debugTypesEnabled.insert(type);
start += type_size + 1;
}
}
#endif
|