Fuzz introspector
For issues and ideas: https://github.com/ossf/fuzz-introspector/issues

Fuzzer details

Fuzzer: fuzz_padded

Call tree

The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview

Call tree overview bitmap:

The distribution of callsites in terms of coloring is
Color Runtime hitcount Callsite count Percentage
red 0 0 0.0%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 27 100.%
All colors 27 100

Fuzz blockers

The followings are the branches where fuzzer fails to bypass.

Unique non-covered Complexity Unique Reachable Complexities Unique Reachable Functions All non-covered Complexity All Reachable Complexity Function Name Function Callsite Blocked Branch
0 0 None 2 7 simdjson::padded_string::load(std::__1::basic_string_view >) call site: 00000 /src/simdjson/include/simdjson/padded_string-inl.h:135
0 0 None 2 7 simdjson::padded_string::load(std::__1::basic_string_view >) call site: 00000 /src/simdjson/include/simdjson/padded_string-inl.h:147
0 0 None 0 0 unsignedcharFuzzData::get () call site: 00000 /src/simdjson/fuzz/FuzzUtils.h:76

Runtime coverage analysis

Covered functions
23
Functions that are reachable but not covered
7
Reachable functions
39
Percentage of reachable functions covered
82.05%
NB: The sum of covered functions and functions that are reachable but not covered need not be equal to Reachable functions . This is because the reachability analysis is an approximation and thus at runtime some functions may be covered that are not included in the reachability analysis. This is a limitation of our static analysis capabilities.
Function name source code lines source lines hit percentage hit

Files reached

filename functions hit
/src/simdjson/fuzz/fuzz_padded.cpp 1
/src/simdjson/fuzz/FuzzUtils.h 5
/src/simdjson/include/simdjson/padded_string-inl.h 8

Fuzzer: fuzz_utf8

Call tree

The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview

Call tree overview bitmap:

The distribution of callsites in terms of coloring is
Color Runtime hitcount Callsite count Percentage
red 0 8 42.1%
gold [1:9] 6 31.5%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 5 26.3%
All colors 19 100

Fuzz blockers

The followings are the branches where fuzzer fails to bypass.

Unique non-covered Complexity Unique Reachable Complexities Unique Reachable Functions All non-covered Complexity All Reachable Complexity Function Name Function Callsite Blocked Branch
2 2 1 :

['abort']

2 2 get_runtime_supported_implementations() call site: 00000 /src/simdjson/fuzz/supported_implementations.h:25
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:157
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:161
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:165
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:169
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:173
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:177
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:181
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:185
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:189

Runtime coverage analysis

Covered functions
147
Functions that are reachable but not covered
6
Reachable functions
21
Percentage of reachable functions covered
71.43%
NB: The sum of covered functions and functions that are reachable but not covered need not be equal to Reachable functions . This is because the reachability analysis is an approximation and thus at runtime some functions may be covered that are not included in the reachability analysis. This is a limitation of our static analysis capabilities.
Warning: The number of covered functions are larger than the number of reachable functions. This means that there are more functions covered at runtime than are extracted using static analysis. This is likely a result of the static analysis component failing to extract the right call graph or the coverage runtime being compiled with sanitizers in code that the static analysis has not analysed. This can happen if lto/gold is not used in all places that coverage instrumentation is used.
Function name source code lines source lines hit percentage hit

Files reached

filename functions hit
/src/simdjson/fuzz/fuzz_utf8.cpp 3
/src/simdjson/fuzz/supported_implementations.h 1
/src/simdjson/src/implementation.cpp 2
/src/simdjson/include/simdjson/internal/isadetection.h 2

Fuzzer: fuzz_parser

Call tree

The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview

Call tree overview bitmap:

The distribution of callsites in terms of coloring is
Color Runtime hitcount Callsite count Percentage
red 0 2 9.52%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 19 90.4%
All colors 21 100

Fuzz blockers

The followings are the branches where fuzzer fails to bypass.

Unique non-covered Complexity Unique Reachable Complexities Unique Reachable Functions All non-covered Complexity All Reachable Complexity Function Name Function Callsite Blocked Branch
7 7 2 :

['std::__1::unique_ptr >::operator->() const', 'simdjson::internal::dom_parser_implementation::allocate(unsigned long, unsigned long)']

7 7 simdjson::dom::parser::allocate(unsignedlong,unsignedlong) call site: 00000 /src/simdjson/include/simdjson/dom/parser-inl.h:185
0 0 None 0 139 simdjson::internal::detect_best_supported_implementation_on_first_use::set_best()const call site: 00000 /src/simdjson/src/implementation.cpp:160
0 0 None 0 133 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:479
0 0 None 0 116 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:500
0 0 None 0 12 simdjson::internal::parse_decimal(charconst*&) call site: 00000 /src/simdjson/src/from_chars.cpp:68
0 0 None 0 6 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:535
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:157
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:161
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:165
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:169
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:173
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:177

Runtime coverage analysis

Covered functions
273
Functions that are reachable but not covered
7
Reachable functions
37
Percentage of reachable functions covered
81.08%
NB: The sum of covered functions and functions that are reachable but not covered need not be equal to Reachable functions . This is because the reachability analysis is an approximation and thus at runtime some functions may be covered that are not included in the reachability analysis. This is a limitation of our static analysis capabilities.
Warning: The number of covered functions are larger than the number of reachable functions. This means that there are more functions covered at runtime than are extracted using static analysis. This is likely a result of the static analysis component failing to extract the right call graph or the coverage runtime being compiled with sanitizers in code that the static analysis has not analysed. This can happen if lto/gold is not used in all places that coverage instrumentation is used.
Function name source code lines source lines hit percentage hit

Files reached

filename functions hit
/src/simdjson/fuzz/fuzz_parser.cpp 1
/src/simdjson/include/simdjson/dom/document.h 2
/src/simdjson/include/simdjson/dom/parser-inl.h 4
/src/simdjson/include/simdjson/dom/document-inl.h 2
/src/simdjson/include/simdjson/internal/dom_parser_implementation.h 1
/src/simdjson/src/implementation.cpp 1
/src/simdjson/include/simdjson/implementation.h 3
/src/simdjson/include/simdjson/padded_string-inl.h 1
/src/simdjson/include/simdjson/dom/parser.h 1

Fuzzer: fuzz_minifyimpl

Call tree

The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview

Call tree overview bitmap:

The distribution of callsites in terms of coloring is
Color Runtime hitcount Callsite count Percentage
red 0 3 18.7%
gold [1:9] 6 37.5%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 7 43.7%
All colors 16 100

Fuzz blockers

The followings are the branches where fuzzer fails to bypass.

Unique non-covered Complexity Unique Reachable Complexities Unique Reachable Functions All non-covered Complexity All Reachable Complexity Function Name Function Callsite Blocked Branch
2 2 1 :

['abort']

2 2 get_runtime_supported_implementations() call site: 00000 /src/simdjson/fuzz/supported_implementations.h:25
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:157
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:161
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:165
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:169
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:173
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:177
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:181
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:185
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:189
0 0 None 0 0 simdjson::error_codesimdjson::haswell::(anonymousnamespace)::stage1::json_minifier::minify<128ul>(unsignedcharconst*,unsignedlong,unsignedchar*,unsignedlong&) call site: 00000 /src/simdjson/src/generic/stage1/json_minifier.h:72
0 0 None 0 0 simdjson::error_codesimdjson::westmere::(anonymousnamespace)::stage1::json_minifier::minify<64ul>(unsignedcharconst*,unsignedlong,unsignedchar*,unsignedlong&) call site: 00000 /src/simdjson/src/generic/stage1/json_minifier.h:72

Runtime coverage analysis

Covered functions
139
Functions that are reachable but not covered
6
Reachable functions
23
Percentage of reachable functions covered
73.91%
NB: The sum of covered functions and functions that are reachable but not covered need not be equal to Reachable functions . This is because the reachability analysis is an approximation and thus at runtime some functions may be covered that are not included in the reachability analysis. This is a limitation of our static analysis capabilities.
Warning: The number of covered functions are larger than the number of reachable functions. This means that there are more functions covered at runtime than are extracted using static analysis. This is likely a result of the static analysis component failing to extract the right call graph or the coverage runtime being compiled with sanitizers in code that the static analysis has not analysed. This can happen if lto/gold is not used in all places that coverage instrumentation is used.
Function name source code lines source lines hit percentage hit

Files reached

filename functions hit
/src/simdjson/fuzz/fuzz_minifyimpl.cpp 2
/src/simdjson/fuzz/supported_implementations.h 1
/src/simdjson/src/implementation.cpp 2
/src/simdjson/include/simdjson/internal/isadetection.h 2
/src/simdjson/include/simdjson/error-inl.h 1

Fuzzer: fuzz_print_json

Call tree

The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview

Call tree overview bitmap:

The distribution of callsites in terms of coloring is
Color Runtime hitcount Callsite count Percentage
red 0 8 8.60%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 85 91.3%
All colors 93 100

Fuzz blockers

The followings are the branches where fuzzer fails to bypass.

Unique non-covered Complexity Unique Reachable Complexities Unique Reachable Functions All non-covered Complexity All Reachable Complexity Function Name Function Callsite Blocked Branch
7 7 2 :

['std::__1::unique_ptr >::operator->() const', 'simdjson::internal::dom_parser_implementation::allocate(unsigned long, unsigned long)']

7 7 simdjson::dom::parser::allocate(unsignedlong,unsignedlong) call site: 00000 /src/simdjson/include/simdjson/dom/parser-inl.h:185
0 0 None 0 139 simdjson::internal::detect_best_supported_implementation_on_first_use::set_best()const call site: 00000 /src/simdjson/src/implementation.cpp:160
0 0 None 0 133 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:479
0 0 None 0 116 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:500
0 0 None 0 12 simdjson::internal::parse_decimal(charconst*&) call site: 00000 /src/simdjson/src/from_chars.cpp:68
0 0 None 0 6 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:535
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:157
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:161
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:165
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:169
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:173
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:177

Runtime coverage analysis

Covered functions
343
Functions that are reachable but not covered
20
Reachable functions
127
Percentage of reachable functions covered
84.25%
NB: The sum of covered functions and functions that are reachable but not covered need not be equal to Reachable functions . This is because the reachability analysis is an approximation and thus at runtime some functions may be covered that are not included in the reachability analysis. This is a limitation of our static analysis capabilities.
Warning: The number of covered functions are larger than the number of reachable functions. This means that there are more functions covered at runtime than are extracted using static analysis. This is likely a result of the static analysis component failing to extract the right call graph or the coverage runtime being compiled with sanitizers in code that the static analysis has not analysed. This can happen if lto/gold is not used in all places that coverage instrumentation is used.
Function name source code lines source lines hit percentage hit

Files reached

filename functions hit
/src/simdjson/fuzz/fuzz_print_json.cpp 1
/src/simdjson/include/simdjson/dom/document.h 2
/src/simdjson/include/simdjson/dom/parser-inl.h 4
/src/simdjson/include/simdjson/dom/document-inl.h 2
/src/simdjson/include/simdjson/internal/dom_parser_implementation.h 1
/src/simdjson/src/implementation.cpp 1
/src/simdjson/include/simdjson/implementation.h 3
/src/simdjson/include/simdjson/padded_string-inl.h 1
/src/simdjson/fuzz/NullBuffer.h 4
/src/simdjson/include/simdjson/dom/serialization.h 5
/src/simdjson/include/simdjson/dom/serialization-inl.h 5
/src/simdjson/include/simdjson/internal/tape_ref-inl.h 2
/src/simdjson/include/simdjson/dom/array-inl.h 5
/src/simdjson/include/simdjson/dom/object-inl.h 6
/src/simdjson/src/to_chars.cpp 16
/usr/local/bin/../include/c++/v1/math.h 2
/src/simdjson/include/simdjson/dom/parser.h 1

Fuzzer: fuzz_dump

Call tree

The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview

Call tree overview bitmap:

The distribution of callsites in terms of coloring is
Color Runtime hitcount Callsite count Percentage
red 0 3 7.69%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 36 92.3%
All colors 39 100

Fuzz blockers

The followings are the branches where fuzzer fails to bypass.

Unique non-covered Complexity Unique Reachable Complexities Unique Reachable Functions All non-covered Complexity All Reachable Complexity Function Name Function Callsite Blocked Branch
7 7 2 :

['std::__1::unique_ptr >::operator->() const', 'simdjson::internal::dom_parser_implementation::allocate(unsigned long, unsigned long)']

7 7 simdjson::dom::parser::allocate(unsignedlong,unsignedlong) call site: 00000 /src/simdjson/include/simdjson/dom/parser-inl.h:185
0 0 None 0 139 simdjson::internal::detect_best_supported_implementation_on_first_use::set_best()const call site: 00000 /src/simdjson/src/implementation.cpp:160
0 0 None 0 133 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:479
0 0 None 0 116 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:500
0 0 None 0 12 simdjson::internal::parse_decimal(charconst*&) call site: 00000 /src/simdjson/src/from_chars.cpp:68
0 0 None 0 6 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:535
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:157
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:161
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:165
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:169
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:173
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:177

Runtime coverage analysis

Covered functions
348
Functions that are reachable but not covered
12
Reachable functions
74
Percentage of reachable functions covered
83.78%
NB: The sum of covered functions and functions that are reachable but not covered need not be equal to Reachable functions . This is because the reachability analysis is an approximation and thus at runtime some functions may be covered that are not included in the reachability analysis. This is a limitation of our static analysis capabilities.
Warning: The number of covered functions are larger than the number of reachable functions. This means that there are more functions covered at runtime than are extracted using static analysis. This is likely a result of the static analysis component failing to extract the right call graph or the coverage runtime being compiled with sanitizers in code that the static analysis has not analysed. This can happen if lto/gold is not used in all places that coverage instrumentation is used.
Function name source code lines source lines hit percentage hit

Files reached

filename functions hit
/src/simdjson/fuzz/fuzz_dump.cpp 2
/src/simdjson/include/simdjson/dom/document.h 2
/src/simdjson/include/simdjson/dom/parser-inl.h 4
/src/simdjson/include/simdjson/dom/document-inl.h 2
/src/simdjson/include/simdjson/internal/dom_parser_implementation.h 1
/src/simdjson/src/implementation.cpp 1
/src/simdjson/include/simdjson/implementation.h 3
/src/simdjson/include/simdjson/padded_string-inl.h 1
/src/simdjson/fuzz/NullBuffer.h 4
/src/simdjson/include/simdjson/dom/element-inl.h 7
/src/simdjson/include/simdjson/dom/array-inl.h 1
/src/simdjson/include/simdjson/dom/object-inl.h 1
/src/simdjson/include/simdjson/internal/tape_ref-inl.h 1
/src/simdjson/include/simdjson/dom/parser.h 1

Fuzzer: fuzz_element

Call tree

The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview

Call tree overview bitmap:

The distribution of callsites in terms of coloring is
Color Runtime hitcount Callsite count Percentage
red 0 6 4.08%
gold [1:9] 6 4.08%
yellow [10:29] 6 4.08%
greenyellow [30:49] 6 4.08%
lawngreen 50+ 123 83.6%
All colors 147 100

Fuzz blockers

The followings are the branches where fuzzer fails to bypass.

Unique non-covered Complexity Unique Reachable Complexities Unique Reachable Functions All non-covered Complexity All Reachable Complexity Function Name Function Callsite Blocked Branch
7 7 2 :

['std::__1::unique_ptr >::operator->() const', 'simdjson::internal::dom_parser_implementation::allocate(unsigned long, unsigned long)']

7 7 simdjson::dom::parser::allocate(unsignedlong,unsignedlong) call site: 00000 /src/simdjson/include/simdjson/dom/parser-inl.h:185
0 0 None 0 139 simdjson::internal::detect_best_supported_implementation_on_first_use::set_best()const call site: 00000 /src/simdjson/src/implementation.cpp:160
0 0 None 0 133 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:479
0 0 None 0 116 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:500
0 0 None 0 12 simdjson::internal::parse_decimal(charconst*&) call site: 00000 /src/simdjson/src/from_chars.cpp:68
0 0 None 0 6 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:535
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:157
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:161
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:165
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:169
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:173
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:177

Runtime coverage analysis

Covered functions
538
Functions that are reachable but not covered
24
Reachable functions
304
Percentage of reachable functions covered
92.11%
NB: The sum of covered functions and functions that are reachable but not covered need not be equal to Reachable functions . This is because the reachability analysis is an approximation and thus at runtime some functions may be covered that are not included in the reachability analysis. This is a limitation of our static analysis capabilities.
Warning: The number of covered functions are larger than the number of reachable functions. This means that there are more functions covered at runtime than are extracted using static analysis. This is likely a result of the static analysis component failing to extract the right call graph or the coverage runtime being compiled with sanitizers in code that the static analysis has not analysed. This can happen if lto/gold is not used in all places that coverage instrumentation is used.
Function name source code lines source lines hit percentage hit

Files reached

filename functions hit
/src/simdjson/fuzz/fuzz_element.cpp 13
/src/simdjson/fuzz/FuzzUtils.h 8
/src/simdjson/include/simdjson/dom/document.h 2
/src/simdjson/include/simdjson/padded_string-inl.h 2
/src/simdjson/include/simdjson/dom/parser-inl.h 4
/src/simdjson/include/simdjson/dom/document-inl.h 3
/src/simdjson/include/simdjson/internal/dom_parser_implementation.h 1
/src/simdjson/src/implementation.cpp 1
/src/simdjson/include/simdjson/implementation.h 3
/src/simdjson/include/simdjson/dom/element-inl.h 33
/src/simdjson/include/simdjson/internal/tape_ref-inl.h 2
/src/simdjson/include/simdjson/dom/array-inl.h 7
/src/simdjson/include/simdjson/error.h 2
/usr/local/bin/../include/c++/v1/exception 1
/src/simdjson/include/simdjson/dom/object-inl.h 12
/src/simdjson/include/simdjson/dom/element.h 1
/src/simdjson/fuzz/NullBuffer.h 4
/src/simdjson/include/simdjson/internal/jsonformatutils.h 1
/src/simdjson/include/simdjson/dom/parser.h 1

Fuzzer: fuzz_dump_raw_tape

Call tree

The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview

Call tree overview bitmap:

The distribution of callsites in terms of coloring is
Color Runtime hitcount Callsite count Percentage
red 0 3 10.3%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 26 89.6%
All colors 29 100

Fuzz blockers

The followings are the branches where fuzzer fails to bypass.

Unique non-covered Complexity Unique Reachable Complexities Unique Reachable Functions All non-covered Complexity All Reachable Complexity Function Name Function Callsite Blocked Branch
7 7 2 :

['std::__1::unique_ptr >::operator->() const', 'simdjson::internal::dom_parser_implementation::allocate(unsigned long, unsigned long)']

7 7 simdjson::dom::parser::allocate(unsignedlong,unsignedlong) call site: 00000 /src/simdjson/include/simdjson/dom/parser-inl.h:185
0 0 None 0 139 simdjson::internal::detect_best_supported_implementation_on_first_use::set_best()const call site: 00000 /src/simdjson/src/implementation.cpp:160
0 0 None 0 133 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:479
0 0 None 0 116 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:500
0 0 None 0 12 simdjson::internal::parse_decimal(charconst*&) call site: 00000 /src/simdjson/src/from_chars.cpp:68
0 0 None 0 6 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:535
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:157
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:161
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:165
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:169
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:173
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:177

Runtime coverage analysis

Covered functions
279
Functions that are reachable but not covered
12
Reachable functions
51
Percentage of reachable functions covered
76.47%
NB: The sum of covered functions and functions that are reachable but not covered need not be equal to Reachable functions . This is because the reachability analysis is an approximation and thus at runtime some functions may be covered that are not included in the reachability analysis. This is a limitation of our static analysis capabilities.
Warning: The number of covered functions are larger than the number of reachable functions. This means that there are more functions covered at runtime than are extracted using static analysis. This is likely a result of the static analysis component failing to extract the right call graph or the coverage runtime being compiled with sanitizers in code that the static analysis has not analysed. This can happen if lto/gold is not used in all places that coverage instrumentation is used.
Function name source code lines source lines hit percentage hit

Files reached

filename functions hit
/src/simdjson/fuzz/fuzz_dump_raw_tape.cpp 1
/src/simdjson/include/simdjson/dom/document.h 2
/src/simdjson/include/simdjson/dom/parser-inl.h 4
/src/simdjson/include/simdjson/dom/document-inl.h 3
/src/simdjson/include/simdjson/internal/dom_parser_implementation.h 1
/src/simdjson/src/implementation.cpp 1
/src/simdjson/include/simdjson/implementation.h 3
/src/simdjson/include/simdjson/padded_string-inl.h 1
/src/simdjson/fuzz/NullBuffer.h 4
/src/simdjson/include/simdjson/dom/element-inl.h 1
/src/simdjson/include/simdjson/internal/jsonformatutils.h 1
/src/simdjson/include/simdjson/dom/parser.h 1

Fuzzer: fuzz_minify

Call tree

The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview

Call tree overview bitmap:

The distribution of callsites in terms of coloring is
Color Runtime hitcount Callsite count Percentage
red 0 8 8.79%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 83 91.2%
All colors 91 100

Fuzz blockers

The followings are the branches where fuzzer fails to bypass.

Unique non-covered Complexity Unique Reachable Complexities Unique Reachable Functions All non-covered Complexity All Reachable Complexity Function Name Function Callsite Blocked Branch
7 7 2 :

['std::__1::unique_ptr >::operator->() const', 'simdjson::internal::dom_parser_implementation::allocate(unsigned long, unsigned long)']

7 7 simdjson::dom::parser::allocate(unsignedlong,unsignedlong) call site: 00000 /src/simdjson/include/simdjson/dom/parser-inl.h:185
0 0 None 0 139 simdjson::internal::detect_best_supported_implementation_on_first_use::set_best()const call site: 00000 /src/simdjson/src/implementation.cpp:160
0 0 None 0 133 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:479
0 0 None 0 116 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:500
0 0 None 0 12 simdjson::internal::parse_decimal(charconst*&) call site: 00000 /src/simdjson/src/from_chars.cpp:68
0 0 None 0 6 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:535
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:157
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:161
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:165
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:169
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:173
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:177

Runtime coverage analysis

Covered functions
345
Functions that are reachable but not covered
15
Reachable functions
124
Percentage of reachable functions covered
87.9%
NB: The sum of covered functions and functions that are reachable but not covered need not be equal to Reachable functions . This is because the reachability analysis is an approximation and thus at runtime some functions may be covered that are not included in the reachability analysis. This is a limitation of our static analysis capabilities.
Warning: The number of covered functions are larger than the number of reachable functions. This means that there are more functions covered at runtime than are extracted using static analysis. This is likely a result of the static analysis component failing to extract the right call graph or the coverage runtime being compiled with sanitizers in code that the static analysis has not analysed. This can happen if lto/gold is not used in all places that coverage instrumentation is used.
Function name source code lines source lines hit percentage hit

Files reached

filename functions hit
/src/simdjson/fuzz/fuzz_minify.cpp 1
/src/simdjson/fuzz/FuzzUtils.h 1
/src/simdjson/include/simdjson/dom/document.h 2
/src/simdjson/include/simdjson/dom/parser-inl.h 4
/src/simdjson/include/simdjson/dom/document-inl.h 2
/src/simdjson/include/simdjson/internal/dom_parser_implementation.h 1
/src/simdjson/src/implementation.cpp 1
/src/simdjson/include/simdjson/implementation.h 3
/src/simdjson/include/simdjson/padded_string-inl.h 1
/src/simdjson/include/simdjson/dom/serialization.h 6
/src/simdjson/include/simdjson/dom/serialization-inl.h 5
/src/simdjson/include/simdjson/internal/tape_ref-inl.h 2
/src/simdjson/include/simdjson/dom/array-inl.h 5
/src/simdjson/include/simdjson/dom/object-inl.h 6
/src/simdjson/src/to_chars.cpp 16
/usr/local/bin/../include/c++/v1/math.h 2
/src/simdjson/include/simdjson/dom/parser.h 1

Fuzzer: fuzz_implementations

Call tree

The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview

Call tree overview bitmap:

The distribution of callsites in terms of coloring is
Color Runtime hitcount Callsite count Percentage
red 0 16 15.2%
gold [1:9] 6 5.71%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 83 79.0%
All colors 105 100

Fuzz blockers

The followings are the branches where fuzzer fails to bypass.

Unique non-covered Complexity Unique Reachable Complexities Unique Reachable Functions All non-covered Complexity All Reachable Complexity Function Name Function Callsite Blocked Branch
7 7 2 :

['std::__1::unique_ptr >::operator->() const', 'simdjson::internal::dom_parser_implementation::allocate(unsigned long, unsigned long)']

7 7 simdjson::dom::parser::allocate(unsignedlong,unsignedlong) call site: 00000 /src/simdjson/include/simdjson/dom/parser-inl.h:185
2 2 1 :

['abort']

2 2 get_runtime_supported_implementations() call site: 00000 /src/simdjson/fuzz/supported_implementations.h:25
0 0 None 0 133 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:479
0 0 None 0 116 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:500
0 0 None 0 12 simdjson::internal::parse_decimal(charconst*&) call site: 00000 /src/simdjson/src/from_chars.cpp:68
0 0 None 0 6 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:535
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:157
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:161
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:165
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:169
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:173
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:177

Runtime coverage analysis

Covered functions
644
Functions that are reachable but not covered
25
Reachable functions
138
Percentage of reachable functions covered
81.88%
NB: The sum of covered functions and functions that are reachable but not covered need not be equal to Reachable functions . This is because the reachability analysis is an approximation and thus at runtime some functions may be covered that are not included in the reachability analysis. This is a limitation of our static analysis capabilities.
Warning: The number of covered functions are larger than the number of reachable functions. This means that there are more functions covered at runtime than are extracted using static analysis. This is likely a result of the static analysis component failing to extract the right call graph or the coverage runtime being compiled with sanitizers in code that the static analysis has not analysed. This can happen if lto/gold is not used in all places that coverage instrumentation is used.
Function name source code lines source lines hit percentage hit

Files reached

filename functions hit
/src/simdjson/fuzz/fuzz_implementations.cpp 3
/src/simdjson/fuzz/supported_implementations.h 1
/src/simdjson/src/implementation.cpp 3
/src/simdjson/include/simdjson/internal/isadetection.h 2
/src/simdjson/include/simdjson/implementation.h 4
/src/simdjson/include/simdjson/dom/parser-inl.h 4
/src/simdjson/include/simdjson/dom/document-inl.h 2
/src/simdjson/include/simdjson/internal/dom_parser_implementation.h 1
/src/simdjson/include/simdjson/padded_string-inl.h 1
/src/simdjson/include/simdjson/dom/serialization.h 5
/src/simdjson/include/simdjson/dom/serialization-inl.h 5
/src/simdjson/include/simdjson/internal/tape_ref-inl.h 2
/src/simdjson/include/simdjson/dom/array-inl.h 5
/src/simdjson/include/simdjson/dom/object-inl.h 6
/src/simdjson/src/to_chars.cpp 16
/usr/local/bin/../include/c++/v1/math.h 2
/src/simdjson/include/simdjson/error-inl.h 2

Fuzzer: fuzz_atpointer

Call tree

The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview

Call tree overview bitmap:

The distribution of callsites in terms of coloring is
Color Runtime hitcount Callsite count Percentage
red 0 6 11.3%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 47 88.6%
All colors 53 100

Fuzz blockers

The followings are the branches where fuzzer fails to bypass.

Unique non-covered Complexity Unique Reachable Complexities Unique Reachable Functions All non-covered Complexity All Reachable Complexity Function Name Function Callsite Blocked Branch
7 7 2 :

['std::__1::unique_ptr >::operator->() const', 'simdjson::internal::dom_parser_implementation::allocate(unsigned long, unsigned long)']

7 7 simdjson::dom::parser::allocate(unsignedlong,unsignedlong) call site: 00000 /src/simdjson/include/simdjson/dom/parser-inl.h:185
0 0 None 0 139 simdjson::internal::detect_best_supported_implementation_on_first_use::set_best()const call site: 00000 /src/simdjson/src/implementation.cpp:160
0 0 None 0 133 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:479
0 0 None 0 116 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:500
0 0 None 0 12 simdjson::internal::parse_decimal(charconst*&) call site: 00000 /src/simdjson/src/from_chars.cpp:68
0 0 None 0 6 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:535
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:157
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:161
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:165
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:169
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:173
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:177

Runtime coverage analysis

Covered functions
324
Functions that are reachable but not covered
13
Reachable functions
91
Percentage of reachable functions covered
85.71%
NB: The sum of covered functions and functions that are reachable but not covered need not be equal to Reachable functions . This is because the reachability analysis is an approximation and thus at runtime some functions may be covered that are not included in the reachability analysis. This is a limitation of our static analysis capabilities.
Warning: The number of covered functions are larger than the number of reachable functions. This means that there are more functions covered at runtime than are extracted using static analysis. This is likely a result of the static analysis component failing to extract the right call graph or the coverage runtime being compiled with sanitizers in code that the static analysis has not analysed. This can happen if lto/gold is not used in all places that coverage instrumentation is used.
Function name source code lines source lines hit percentage hit

Files reached

filename functions hit
/src/simdjson/fuzz/fuzz_atpointer.cpp 1
/src/simdjson/fuzz/FuzzUtils.h 3
/src/simdjson/include/simdjson/dom/document.h 2
/src/simdjson/include/simdjson/padded_string-inl.h 2
/src/simdjson/include/simdjson/dom/parser-inl.h 4
/src/simdjson/include/simdjson/dom/document-inl.h 2
/src/simdjson/include/simdjson/internal/dom_parser_implementation.h 1
/src/simdjson/src/implementation.cpp 1
/src/simdjson/include/simdjson/implementation.h 3
/src/simdjson/include/simdjson/dom/element-inl.h 2
/src/simdjson/include/simdjson/dom/object-inl.h 8
/src/simdjson/include/simdjson/internal/tape_ref-inl.h 2
/src/simdjson/include/simdjson/dom/element.h 1
/src/simdjson/include/simdjson/error.h 1
/src/simdjson/include/simdjson/dom/array-inl.h 3
/src/simdjson/include/simdjson/dom/parser.h 1

Fuzzer: fuzz_ndjson

Call tree

The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview

Call tree overview bitmap:

The distribution of callsites in terms of coloring is
Color Runtime hitcount Callsite count Percentage
red 0 5 7.93%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 58 92.0%
All colors 63 100

Fuzz blockers

The followings are the branches where fuzzer fails to bypass.

Unique non-covered Complexity Unique Reachable Complexities Unique Reachable Functions All non-covered Complexity All Reachable Complexity Function Name Function Callsite Blocked Branch
7 7 2 :

['std::__1::unique_ptr >::operator->() const', 'simdjson::internal::dom_parser_implementation::allocate(unsigned long, unsigned long)']

7 7 simdjson::dom::parser::allocate(unsignedlong,unsignedlong) call site: 00000 /src/simdjson/include/simdjson/dom/parser-inl.h:185
0 0 None 0 139 simdjson::internal::detect_best_supported_implementation_on_first_use::set_best()const call site: 00000 /src/simdjson/src/implementation.cpp:160
0 0 None 0 133 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:479
0 0 None 0 116 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:500
0 0 None 0 28 simdjson::dom::document_stream::next() call site: 00000 /src/simdjson/include/simdjson/dom/document_stream-inl.h:240
0 0 None 0 12 simdjson::internal::parse_decimal(charconst*&) call site: 00000 /src/simdjson/src/from_chars.cpp:68
0 0 None 0 6 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:535
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:157
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:161
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:165
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:169
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:173

Runtime coverage analysis

Covered functions
331
Functions that are reachable but not covered
7
Reachable functions
86
Percentage of reachable functions covered
91.86%
NB: The sum of covered functions and functions that are reachable but not covered need not be equal to Reachable functions . This is because the reachability analysis is an approximation and thus at runtime some functions may be covered that are not included in the reachability analysis. This is a limitation of our static analysis capabilities.
Warning: The number of covered functions are larger than the number of reachable functions. This means that there are more functions covered at runtime than are extracted using static analysis. This is likely a result of the static analysis component failing to extract the right call graph or the coverage runtime being compiled with sanitizers in code that the static analysis has not analysed. This can happen if lto/gold is not used in all places that coverage instrumentation is used.
Function name source code lines source lines hit percentage hit

Files reached

filename functions hit
/src/simdjson/fuzz/fuzz_ndjson.cpp 1
/src/simdjson/fuzz/FuzzUtils.h 5
/src/simdjson/include/simdjson/padded_string-inl.h 4
/src/simdjson/include/simdjson/dom/document.h 3
/src/simdjson/include/simdjson/dom/document_stream.h 1
/src/simdjson/include/simdjson/dom/parser-inl.h 6
/src/simdjson/include/simdjson/dom/parser.h 1
/src/simdjson/include/simdjson/dom/document_stream-inl.h 9
/src/simdjson/include/simdjson/dom/document-inl.h 2
/src/simdjson/include/simdjson/internal/dom_parser_implementation.h 1
/src/simdjson/src/implementation.cpp 1
/src/simdjson/include/simdjson/implementation.h 3
/src/simdjson/include/simdjson/dom/element-inl.h 3

Fuzzer: fuzz_ondemand

Call tree

The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview

Call tree overview bitmap:

The distribution of callsites in terms of coloring is
Color Runtime hitcount Callsite count Percentage
red 0 36 33.6%
gold [1:9] 2 1.86%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 69 64.4%
All colors 107 100

Fuzz blockers

The followings are the branches where fuzzer fails to bypass.

Unique non-covered Complexity Unique Reachable Complexities Unique Reachable Functions All non-covered Complexity All Reachable Complexity Function Name Function Callsite Blocked Branch
0 0 None 0 139 simdjson::internal::detect_best_supported_implementation_on_first_use::set_best()const call site: 00000 /src/simdjson/src/implementation.cpp:160
0 0 None 0 133 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:479
0 0 None 0 116 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:500
0 0 None 0 12 simdjson::internal::parse_decimal(charconst*&) call site: 00000 /src/simdjson/src/from_chars.cpp:68
0 0 None 0 6 simdjson::internal::adjusted_mantissasimdjson::internal::compute_float >(simdjson::internal::decimal&) call site: 00000 /src/simdjson/src/from_chars.cpp:535
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:157
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:161
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:165
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:169
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:173
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:177
0 0 None 0 2 simdjson::internal::detect_supported_architectures() call site: 00000 /src/simdjson/include/simdjson/internal/isadetection.h:181

Runtime coverage analysis

Covered functions
410
Functions that are reachable but not covered
8
Reachable functions
97
Percentage of reachable functions covered
91.75%
NB: The sum of covered functions and functions that are reachable but not covered need not be equal to Reachable functions . This is because the reachability analysis is an approximation and thus at runtime some functions may be covered that are not included in the reachability analysis. This is a limitation of our static analysis capabilities.
Warning: The number of covered functions are larger than the number of reachable functions. This means that there are more functions covered at runtime than are extracted using static analysis. This is likely a result of the static analysis component failing to extract the right call graph or the coverage runtime being compiled with sanitizers in code that the static analysis has not analysed. This can happen if lto/gold is not used in all places that coverage instrumentation is used.
Function name source code lines source lines hit percentage hit

Files reached

filename functions hit
/src/simdjson/fuzz/fuzz_ondemand.cpp 1
/src/simdjson/fuzz/FuzzUtils.h 5
/src/simdjson/include/simdjson/padded_string-inl.h 5
/src/simdjson/include/simdjson/padded_string_view-inl.h 3
/src/simdjson/src/implementation.cpp 1
/src/simdjson/include/simdjson/implementation.h 3
/src/simdjson/include/simdjson/generic/ondemand/logger-inl.h 4
/src/simdjson/include/simdjson/generic/ondemand/value_iterator-inl.h 5
/src/simdjson/include/simdjson/generic/ondemand/json_iterator-inl.h 1
/src/simdjson/include/simdjson/generic/numberparsing.h 1
/src/simdjson/src/from_chars.cpp 15
/src/simdjson/include/simdjson/generic/ondemand/parser.h 1

Analyses and suggestions

Optimal target analysis

Remaining optimal interesting functions

The following table shows a list of functions that are optimal targets. Optimal targets are identified by finding the functions that in combination, yield a high code coverage.

Func name Functions filename Arg count Args Function depth hitcount instr count bb count cyclomatic complexity Reachable functions Incoming references total cyclomatic complexity Unreached complexity
simdjson::haswell::dom_parser_implementation::parse(unsignedcharconst*,unsignedlong,simdjson::dom::document&) /src/simdjson/src/haswell/dom_parser_implementation.cpp 4 ['class.simdjson::fallback::dom_parser_implementation *', 'char *', 'size_t ', 'class.simdjson::dom::document *'] 6 0 30 6 3 50 0 565 448
simdjson::icelake::dom_parser_implementation::parse(unsignedcharconst*,unsignedlong,simdjson::dom::document&) /src/simdjson/src/icelake/dom_parser_implementation.cpp 4 ['class.simdjson::fallback::dom_parser_implementation *', 'char *', 'size_t ', 'class.simdjson::dom::document *'] 7 0 30 6 3 50 0 555 436
simdjson::westmere::dom_parser_implementation::parse(unsignedcharconst*,unsignedlong,simdjson::dom::document&) /src/simdjson/src/westmere/dom_parser_implementation.cpp 4 ['class.simdjson::fallback::dom_parser_implementation *', 'char *', 'size_t ', 'class.simdjson::dom::document *'] 6 0 30 6 3 50 0 549 430
simdjson::fallback::dom_parser_implementation::parse(unsignedcharconst*,unsignedlong,simdjson::dom::document&) /src/simdjson/src/fallback/dom_parser_implementation.cpp 4 ['class.simdjson::fallback::dom_parser_implementation *', 'char *', 'size_t ', 'class.simdjson::dom::document *'] 7 0 30 6 3 44 0 537 415
simdjson::fallback::dom_parser_implementation::stage2_next(simdjson::dom::document&) /src/simdjson/src/fallback/dom_parser_implementation.cpp 2 ['class.simdjson::fallback::dom_parser_implementation *', 'class.simdjson::dom::document *'] 6 0 6375 999 346 38 0 471 346
simdjson::westmere::dom_parser_implementation::stage2_next(simdjson::dom::document&) /src/simdjson/src/westmere/dom_parser_implementation.cpp 2 ['class.simdjson::fallback::dom_parser_implementation *', 'class.simdjson::dom::document *'] 5 0 6765 999 346 38 0 471 346
simdjson::haswell::dom_parser_implementation::stage2_next(simdjson::dom::document&) /src/simdjson/src/haswell/dom_parser_implementation.cpp 2 ['class.simdjson::fallback::dom_parser_implementation *', 'class.simdjson::dom::document *'] 5 0 6590 999 346 38 0 471 346
simdjson::icelake::dom_parser_implementation::stage2_next(simdjson::dom::document&) /src/simdjson/src/icelake/dom_parser_implementation.cpp 2 ['class.simdjson::fallback::dom_parser_implementation *', 'class.simdjson::dom::document *'] 6 0 6565 999 346 38 0 471 346
simdjson::internal::detect_best_supported_implementation_on_first_use::name()const /src/simdjson/src/implementation.cpp 1 ['class.simdjson::internal::detect_best_supported_implementation_on_first_use *'] 4 0 29 5 5 41 0 121 96
simdjson::internal::from_chars(charconst*,charconst*) /src/simdjson/src/from_chars.cpp 2 ['char *', 'char *'] 3 0 67 11 2 30 0 122 38

Implementing fuzzers that target the above functions will improve reachability such that it becomes:

Functions statically reachable by fuzzers
74.5%
266/357
Cyclomatic complexity statically reachable by fuzzers
89.0%
4125 / 4631

All functions overview

If you implement fuzzers for these functions, the status of all functions in the project will be:

Func name Functions filename Args Function call depth Reached by Fuzzers Fuzzers runtime hit Func lines hit % I Count BB Count Cyclomatic complexity Functions reached Reached by functions Accumulated cyclomatic complexity Undiscovered complexity

Files and Directories in report

This section shows which files and directories are considered in this report. The main reason for showing this is fuzz introspector may include more code in the reasoning than is desired. This section helps identify if too many files/directories are included, e.g. third party code, which may be irrelevant for the threat model. In the event too much is included, fuzz introspector supports a configuration file that can exclude data from the report. See the following link for more information on how to create a config file: link

Files in report

Source file Reached by Covered by
[] []
/src/simdjson/src/haswell/dom_parser_implementation.cpp [] []
/src/simdjson/include/simdjson/implementation.h ['fuzz_parser', 'fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape', 'fuzz_minify', 'fuzz_implementations', 'fuzz_atpointer', 'fuzz_ndjson', 'fuzz_ondemand'] ['fuzz_parser', 'fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape', 'fuzz_minify', 'fuzz_implementations', 'fuzz_atpointer', 'fuzz_ndjson', 'fuzz_ondemand']
/src/simdjson/include/simdjson/internal/isadetection.h ['fuzz_utf8', 'fuzz_minifyimpl', 'fuzz_implementations'] ['fuzz_utf8', 'fuzz_minifyimpl', 'fuzz_implementations']
/src/simdjson/include/simdjson/padded_string_view-inl.h ['fuzz_ondemand'] ['fuzz_ondemand']
/src/simdjson/include/simdjson/icelake/implementation.h [] []
/src/simdjson/fuzz/fuzz_utf8.cpp ['fuzz_utf8'] ['fuzz_utf8']
/src/simdjson/fuzz/fuzz_parser.cpp ['fuzz_parser'] ['fuzz_parser']
/src/simdjson/include/simdjson/internal/tape_ref-inl.h ['fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_minify', 'fuzz_implementations', 'fuzz_atpointer'] ['fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_minify', 'fuzz_implementations', 'fuzz_atpointer']
/src/simdjson/fuzz/supported_implementations.h ['fuzz_utf8', 'fuzz_minifyimpl', 'fuzz_implementations'] ['fuzz_utf8', 'fuzz_minifyimpl', 'fuzz_implementations']
/src/simdjson/include/simdjson/dom/array-inl.h ['fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_minify', 'fuzz_implementations', 'fuzz_atpointer'] ['fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_minify', 'fuzz_implementations', 'fuzz_atpointer']
/usr/local/bin/../include/c++/v1/stdexcept [] []
/src/simdjson/fuzz/fuzz_padded.cpp ['fuzz_padded'] ['fuzz_padded']
/src/simdjson/fuzz/fuzz_ondemand.cpp ['fuzz_ondemand'] ['fuzz_ondemand']
/src/simdjson/src/to_chars.cpp ['fuzz_print_json', 'fuzz_minify', 'fuzz_implementations'] ['fuzz_print_json', 'fuzz_minify', 'fuzz_implementations']
/src/simdjson/include/simdjson/generic/ondemand/json_iterator-inl.h ['fuzz_ondemand'] []
/src/simdjson/src/generic/stage1/json_scanner.h [] []
/src/simdjson/include/simdjson/dom/element.h ['fuzz_element', 'fuzz_atpointer'] []
/src/simdjson/fuzz/FuzzUtils.h ['fuzz_padded', 'fuzz_element', 'fuzz_minify', 'fuzz_atpointer', 'fuzz_ndjson', 'fuzz_ondemand'] ['fuzz_padded', 'fuzz_element', 'fuzz_minify', 'fuzz_atpointer', 'fuzz_ndjson', 'fuzz_ondemand']
/src/simdjson/include/simdjson/internal/dom_parser_implementation.h ['fuzz_parser', 'fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape', 'fuzz_minify', 'fuzz_implementations', 'fuzz_atpointer', 'fuzz_ndjson'] ['fuzz_parser', 'fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape', 'fuzz_minify', 'fuzz_implementations', 'fuzz_atpointer', 'fuzz_ndjson']
/src/simdjson/src/fallback/dom_parser_implementation.cpp [] []
/src/simdjson/include/simdjson/fallback/implementation.h [] []
/src/simdjson/include/simdjson/haswell/implementation.h [] []
/src/simdjson/include/simdjson/dom/object-inl.h ['fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_minify', 'fuzz_implementations', 'fuzz_atpointer'] ['fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_minify', 'fuzz_implementations', 'fuzz_atpointer']
/src/simdjson/fuzz/fuzz_dump.cpp ['fuzz_dump'] ['fuzz_dump']
/src/simdjson/fuzz/fuzz_dump_raw_tape.cpp ['fuzz_dump_raw_tape'] ['fuzz_dump_raw_tape']
/src/simdjson/fuzz/NullBuffer.h ['fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape'] ['fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape']
/src/simdjson/fuzz/fuzz_print_json.cpp ['fuzz_print_json'] ['fuzz_print_json']
/src/simdjson/include/simdjson/padded_string-inl.h ['fuzz_padded', 'fuzz_parser', 'fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape', 'fuzz_minify', 'fuzz_implementations', 'fuzz_atpointer', 'fuzz_ndjson', 'fuzz_ondemand'] ['fuzz_padded', 'fuzz_parser', 'fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape', 'fuzz_minify', 'fuzz_implementations', 'fuzz_atpointer', 'fuzz_ndjson', 'fuzz_ondemand']
/src/simdjson/fuzz/fuzz_minifyimpl.cpp ['fuzz_minifyimpl'] ['fuzz_minifyimpl']
/src/simdjson/fuzz/fuzz_atpointer.cpp ['fuzz_atpointer'] ['fuzz_atpointer']
/src/simdjson/include/simdjson/dom/element-inl.h ['fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape', 'fuzz_atpointer', 'fuzz_ndjson'] ['fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape', 'fuzz_atpointer', 'fuzz_ndjson']
/src/simdjson/src/from_chars.cpp ['fuzz_ondemand'] ['fuzz_ondemand']
/src/simdjson/src/generic/stage1/json_string_scanner.h [] []
/src/simdjson/include/simdjson/dom/parser.h ['fuzz_parser', 'fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape', 'fuzz_minify', 'fuzz_atpointer', 'fuzz_ndjson'] ['fuzz_parser', 'fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape', 'fuzz_minify', 'fuzz_atpointer', 'fuzz_ndjson']
/src/simdjson/include/simdjson/generic/ondemand/parser.h ['fuzz_ondemand'] ['fuzz_ondemand']
/usr/local/bin/../include/c++/v1/math.h ['fuzz_print_json', 'fuzz_minify', 'fuzz_implementations'] []
/src/simdjson/include/simdjson/error.h ['fuzz_element', 'fuzz_atpointer'] ['fuzz_element']
/usr/local/bin/../include/c++/v1/exception ['fuzz_element'] []
/src/simdjson/src/implementation.cpp ['fuzz_utf8', 'fuzz_parser', 'fuzz_minifyimpl', 'fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape', 'fuzz_minify', 'fuzz_implementations', 'fuzz_atpointer', 'fuzz_ndjson', 'fuzz_ondemand'] ['fuzz_utf8', 'fuzz_parser', 'fuzz_minifyimpl', 'fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape', 'fuzz_minify', 'fuzz_implementations', 'fuzz_atpointer', 'fuzz_ndjson', 'fuzz_ondemand']
/src/simdjson/src/generic/stage1/json_structural_indexer.h [] []
/src/simdjson/include/simdjson/generic/numberparsing.h ['fuzz_ondemand'] ['fuzz_ondemand']
/src/simdjson/src/icelake/implementation.cpp [] []
/src/simdjson/include/simdjson/dom/document_stream.h ['fuzz_ndjson'] ['fuzz_ndjson']
/src/simdjson/fuzz/fuzz_ndjson.cpp ['fuzz_ndjson'] ['fuzz_ndjson']
/src/simdjson/include/simdjson/generic/jsoncharutils.h [] []
/src/simdjson/src/haswell/implementation.cpp [] []
/src/simdjson/include/simdjson/error-inl.h ['fuzz_minifyimpl', 'fuzz_implementations'] ['fuzz_minifyimpl']
/src/simdjson/include/simdjson/dom/serialization-inl.h ['fuzz_print_json', 'fuzz_minify', 'fuzz_implementations'] ['fuzz_print_json', 'fuzz_minify', 'fuzz_implementations']
/src/simdjson/include/simdjson/dom/document_stream-inl.h ['fuzz_ndjson'] ['fuzz_ndjson']
/src/simdjson/include/simdjson/generic/ondemand/logger-inl.h ['fuzz_ondemand'] ['fuzz_ondemand']
/src/simdjson/src/generic/stage1/json_minifier.h [] []
/src/simdjson/include/simdjson/dom/document.h ['fuzz_parser', 'fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape', 'fuzz_minify', 'fuzz_atpointer', 'fuzz_ndjson'] ['fuzz_parser', 'fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape', 'fuzz_minify', 'fuzz_atpointer', 'fuzz_ndjson']
/src/simdjson/src/fallback/implementation.cpp [] []
/src/simdjson/src/generic/stage1/utf8_validator.h [] []
/src/simdjson/include/simdjson/internal/jsonformatutils.h ['fuzz_element', 'fuzz_dump_raw_tape'] ['fuzz_element', 'fuzz_dump_raw_tape']
/src/simdjson/include/simdjson/generic/dom_parser_implementation.h [] []
/src/simdjson/include/simdjson/dom/document-inl.h ['fuzz_parser', 'fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape', 'fuzz_minify', 'fuzz_implementations', 'fuzz_atpointer', 'fuzz_ndjson'] ['fuzz_parser', 'fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape', 'fuzz_minify', 'fuzz_implementations', 'fuzz_atpointer', 'fuzz_ndjson']
/src/simdjson/include/simdjson/dom/parser-inl.h ['fuzz_parser', 'fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape', 'fuzz_minify', 'fuzz_implementations', 'fuzz_atpointer', 'fuzz_ndjson'] ['fuzz_parser', 'fuzz_print_json', 'fuzz_dump', 'fuzz_element', 'fuzz_dump_raw_tape', 'fuzz_minify', 'fuzz_implementations', 'fuzz_atpointer', 'fuzz_ndjson']
/src/simdjson/src/westmere/dom_parser_implementation.cpp [] []
/src/simdjson/src/icelake/dom_parser_implementation.cpp [] []
/src/simdjson/fuzz/fuzz_minify.cpp ['fuzz_minify'] ['fuzz_minify']
/src/simdjson/src/westmere/implementation.cpp [] []
/src/simdjson/include/simdjson/westmere/implementation.h [] []
/src/simdjson/fuzz/fuzz_implementations.cpp ['fuzz_implementations'] ['fuzz_implementations']
/src/simdjson/include/simdjson/generic/ondemand/value_iterator-inl.h ['fuzz_ondemand'] ['fuzz_ondemand']
/src/simdjson/include/simdjson/dom/serialization.h ['fuzz_print_json', 'fuzz_minify', 'fuzz_implementations'] ['fuzz_print_json', 'fuzz_minify', 'fuzz_implementations']
/src/simdjson/fuzz/fuzz_element.cpp ['fuzz_element'] ['fuzz_element']

Directories in report

Directory
/src/simdjson/include/simdjson/dom/
/src/simdjson/include/simdjson/westmere/
/src/simdjson/include/simdjson/generic/
/src/simdjson/include/simdjson/internal/
/src/simdjson/include/simdjson/icelake/
/usr/local/bin/../include/c++/v1/
/src/simdjson/include/simdjson/fallback/
/src/simdjson/include/simdjson/
/src/simdjson/src/fallback/
/src/simdjson/src/
/src/simdjson/src/generic/stage1/
/src/simdjson/include/simdjson/haswell/
/src/simdjson/src/haswell/
/src/simdjson/src/icelake/
/src/simdjson/fuzz/
/src/simdjson/include/simdjson/generic/ondemand/
/src/simdjson/src/westmere/

Metadata section

This sections shows the raw data that is used to produce this report. This is mainly used for further processing and developer debugging.

Fuzzer Calltree file Program data file Coverage file
fuzz_padded fuzzerLogFile-0-vIfZj4NpwH.data fuzzerLogFile-0-vIfZj4NpwH.data.yaml fuzz_padded.covreport
fuzz_utf8 fuzzerLogFile-0-qimd8sdEne.data fuzzerLogFile-0-qimd8sdEne.data.yaml fuzz_utf8.covreport
fuzz_parser fuzzerLogFile-0-f5seWDjLkO.data fuzzerLogFile-0-f5seWDjLkO.data.yaml fuzz_parser.covreport
fuzz_minifyimpl fuzzerLogFile-0-lrpldvMPjt.data fuzzerLogFile-0-lrpldvMPjt.data.yaml fuzz_minifyimpl.covreport
fuzz_print_json fuzzerLogFile-0-ViLFiYamvg.data fuzzerLogFile-0-ViLFiYamvg.data.yaml fuzz_print_json.covreport
fuzz_dump fuzzerLogFile-0-mxbgqLBqK9.data fuzzerLogFile-0-mxbgqLBqK9.data.yaml fuzz_dump.covreport
fuzz_element fuzzerLogFile-0-w9EoH1TSOP.data fuzzerLogFile-0-w9EoH1TSOP.data.yaml fuzz_element.covreport
fuzz_dump_raw_tape fuzzerLogFile-0-nXDAQeGqUJ.data fuzzerLogFile-0-nXDAQeGqUJ.data.yaml fuzz_dump_raw_tape.covreport
fuzz_minify fuzzerLogFile-0-7ckecB76b3.data fuzzerLogFile-0-7ckecB76b3.data.yaml fuzz_minify.covreport
fuzz_implementations fuzzerLogFile-0-3PIBvfQr7J.data fuzzerLogFile-0-3PIBvfQr7J.data.yaml fuzz_implementations.covreport
fuzz_atpointer fuzzerLogFile-0-2WNa1OG4sg.data fuzzerLogFile-0-2WNa1OG4sg.data.yaml fuzz_atpointer.covreport
fuzz_ndjson fuzzerLogFile-0-4wziYPBZRM.data fuzzerLogFile-0-4wziYPBZRM.data.yaml fuzz_ndjson.covreport
fuzz_ondemand fuzzerLogFile-0-Ah8m4WfewT.data fuzzerLogFile-0-Ah8m4WfewT.data.yaml fuzz_ondemand.covreport