Home
last modified time | relevance | path

Searched refs:DEMDEBUG (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/lib/libdemangle/common/
H A Drust-v0.c166 DEMDEBUG("%s: str = '%.*s'", __func__, SV_PRINT(sv)); in rustv0_parse_opt_list()
227 DEMDEBUG("%s: %c -> %s", __func__, c, str); in rustv0_parse_uint_type()
297 DEMDEBUG("%s: %c -> %s", __func__, c, str); in rustv0_parse_basic_type()
313 DEMDEBUG("%s: str='%.*s'", __func__, SV_PRINT(sv)); in rustv0_parse_type()
444 DEMDEBUG("%s: str='%.*s'", __func__, SV_PRINT(sv)); in rustv0_parse_path()
570 DEMDEBUG("%s: str='%.*s'", __func__, SV_PRINT(sv)); in rustv0_has_name()
607 DEMDEBUG("%s: str='%.*s'", __func__, SV_PRINT(sv)); in rustv0_parse_nested_path()
677 DEMDEBUG("%s: str='%.*s'", __func__, SV_PRINT(sv)); in rustv0_parse_disambiguator()
713 DEMDEBUG("%s: str='%.*s'", __func__, SV_PRINT(sv)); in rustv0_parse_undisambiguated_identifier()
876 DEMDEBUG("%s: ERROR: lifetime value %" PRIu64 in rustv0_append_lifetime()
[all …]
H A Drust-legacy.c95 DEMDEBUG("ERROR: string does not end with 'E'"); in rust_demangle_legacy()
104 DEMDEBUG("ERROR: trailing characters in name"); in rust_demangle_legacy()
127 DEMDEBUG("ERROR: no leading length"); in rustleg_parse_name_segment()
135 DEMDEBUG("ERROR: segment length (%" PRIu64 ") > remaining " in rustleg_parse_name_segment()
153 DEMDEBUG("%s: segment='%.*s'", __func__, SV_PRINT(&name)); in rustleg_parse_name_segment()
208 DEMDEBUG("%s: consumed '%.*s'", __func__, in rustleg_parse_name_segment()
227 DEMDEBUG("%s: name = '%.*s'", __func__, SV_PRINT(&name)); in rustleg_parse_name()
230 DEMDEBUG("%s: empty name", __func__); in rustleg_parse_name()
235 DEMDEBUG("%s: does not start with 'N'", __func__); in rustleg_parse_name()
246 DEMDEBUG("%s: ERROR no terminating 'E'", __func__); in rustleg_parse_name()
[all …]
H A Drust.c174 DEMDEBUG("%s: ERROR amount to append (%" PRIu64 ") > " in rust_append_sv()
181 DEMDEBUG("%s: amount (%" PRIu64 ") > INT_MAX", __func__, n); in rust_append_sv()
251 DEMDEBUG("%s: ERROR number starts with leading 0\n", in rust_parse_base10()
270 DEMDEBUG("%s: multiplication overflowed\n", __func__); in rust_parse_base10()
276 DEMDEBUG("%s: addition overflowed\n", __func__); in rust_parse_base10()
289 DEMDEBUG("checking prefix in '%.*s'", SV_PRINT(sv)); in rust_parse_prefix()
308 DEMDEBUG("name is encoded using the rust legacy mangling " in rust_parse_prefix()
326 DEMDEBUG("%s: ERROR: an unsupported encoding version " in rust_parse_prefix()
333 DEMDEBUG("name is encoded using the v0 mangling scheme"); in rust_parse_prefix()
335 DEMDEBUG("did not find a valid rust prefix"); in rust_parse_prefix()
[all …]
H A Drust-v0puny.c75 DEMDEBUG("%s: str='%.*s'", __func__, SV_PRINT(src)); in rustv0_puny_decode()
124 DEMDEBUG("%s: encountered an all-ASCII name encoded with " in rustv0_puny_decode()
148 DEMDEBUG("%s: %" PRIu32 " ASCII codepoints copied", __func__, nbasic); in rustv0_puny_decode()
156 DEMDEBUG("%s: non-ASCII codepoints to decode: %.*s", __func__, in rustv0_puny_decode()
202 DEMDEBUG("%s: insert \\u%04" PRIx32 " at index %zu (len = %zu)", in rustv0_puny_decode()
222 DEMDEBUG("%s: ERROR: utf8 value is out of range", in rustv0_puny_decode()
231 DEMDEBUG("%s: inserted %zu non-basic code points", __func__, in rustv0_puny_decode()
260 DEMDEBUG("%s: ERROR: invalid character 0x%02x encountered", in char_val()
H A Ddemangle.c116 DEMDEBUG("name = '%s'", (str == NULL) ? "(NULL)" : str); in sysdemangle()
117 DEMDEBUG("lang = %s (%d)", langstr(lang), lang); in sysdemangle()
169 DEMDEBUG("ERROR: '%.*s' cannot be a mangled string", len, str); in sysdemangle()
174 DEMDEBUG("trying rust"); in sysdemangle()
181 DEMDEBUG("trying C++"); in sysdemangle()
H A Ddemangle_int.h118 #define DEMDEBUG(s, ...) \ macro