Home
last modified time | relevance | path

Searched full:gcov (Results 1 – 25 of 25) sorted by relevance

/Zephyr-Core-3.4.0/doc/develop/test/
Dcoverage.rst11 * In a real embedded target or QEMU, using Zephyr's gcov integration
20 `GCC GCOV <gcov_>`_ is a test coverage program
25 In Zephyr, gcov collects coverage profiling data in RAM (and not to a file
26 system) while your application is running. Support for gcov collection and
34 code coverage with gcov is a function of RAM available. Therefore ensure that the
71 #. Generate the gcov ``.gcda`` and ``.gcno`` files from the log file that was
76 #. Find the gcov binary placed in the SDK. You will need to pass the path to
77 the gcov binary for the appropriate architecture when you later invoke
80 $ find $ZEPHYR_SDK_INSTALL_DIR -iregex ".*gcov"
88 …$ gcovr -r $ZEPHYR_BASE . --html -o gcov_report/coverage.html --html-details --gcov-executable <gc…
[all …]
/Zephyr-Core-3.4.0/scripts/pylib/twister/twisterlib/
Dcoverage.py96 logger.debug("Gcov data captured: {}".format(filename))
98 logger.error("Gcov data capture incomplete: {}".format(filename))
130 cmd = ["lcov", "--gcov-tool", str(self.gcov_tool),
138 subprocess.call(["lcov", "--gcov-tool", self.gcov_tool, "--extract",
145 subprocess.call(["lcov", "--gcov-tool", self.gcov_tool, "--remove",
157 ["lcov", "--gcov-tool", self.gcov_tool, "--remove",
199 cmd = ["gcovr", "-r", self.base_dir, "--gcov-executable",
208 subprocess.call(["gcovr", "-r", self.base_dir, "--gcov-executable",
249 "x86_64-zephyr-elf/bin/x86_64-zephyr-elf-gcov")
256 gcov_lnk = os.path.join(options.outdir, f"gcov{llvm_cov_ext}")
[all …]
Denvironment.py342 help="Enable code coverage using gcov.")
379 parser.add_argument("--gcov-tool", type=Path, default=None,
380 help="Path to the gcov tool to use for code coverage "
Dsize_calc.py68 "gcov",
Dhandlers.py292 "gcov", self.sourcedir, "-b", "-s", self.build_dir], shell=True)
/Zephyr-Core-3.4.0/subsys/testsuite/coverage/
Dcoverage.h25 * This file has excerpts from gcc libgcc/libgcov.h and gcc/gcov-io.h.
41 /* The GCOV 12 gcno/gcda format has slight change,
42 * Please refer to gcov-io.h in the GCC 12 for
106 unsigned int version; /* Gcov version (same as GCC version) */
Dcoverage.c107 * populate_buffer - convert from gcov data set (info) to
182 /* GCOV 12 counts the length by bytes */ in populate_buffer()
226 * Retrieves gcov coverage data and sends it over the given interface.
269 /* Initialize the gcov by calling the required constructors */
/Zephyr-Core-3.4.0/subsys/testsuite/
DKconfig49 This option will select the custom gcov library. The reports will
52 can be read by gcov utility. For more details see gcovr.com .
55 int "Size of heap allocated for gcov coverage data dump"
59 This option configures the heap size allocated for gcov coverage
/Zephyr-Core-3.4.0/cmake/compiler/host-gcc/
Dgeneric.cmake6 find_program(CMAKE_GCOV gcov)
/Zephyr-Core-3.4.0/cmake/compiler/clang/
Dgeneric.cmake10 set(CMAKE_GCOV "${CMAKE_LLVM_COV} gcov")
/Zephyr-Core-3.4.0/
D.codecov.yml21 gcov:
/Zephyr-Core-3.4.0/cmake/compiler/gcc/
Dgeneric.cmake6 find_program(CMAKE_GCOV ${CROSS_COMPILE}gcov PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
/Zephyr-Core-3.4.0/cmake/compiler/xcc/
Dgeneric.cmake6 find_program(CMAKE_GCOV ${CROSS_COMPILE}gcov PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
/Zephyr-Core-3.4.0/cmake/linker/ld/
Dlinker_flags.cmake16 # --gcov for gcc
/Zephyr-Core-3.4.0/arch/x86/core/
Dmemmap.c24 { "gcov", __gcov_bss_start, __gcov_bss_end },
/Zephyr-Core-3.4.0/cmake/compiler/arcmwdt/
Dgeneric.cmake23 set(CMAKE_GCOV "${CMAKE_LLVM_COV} gcov")
/Zephyr-Core-3.4.0/include/zephyr/arch/x86/intel64/
Dlinker.ld151 * be put in BSS section. That causes gcov not work properly */
/Zephyr-Core-3.4.0/tests/arch/arc/arc_dsp_sharing/src/
Dload_store.c26 #include <zephyr/debug/gcov.h>
/Zephyr-Core-3.4.0/kernel/
Dinit.c33 #include <zephyr/debug/gcov.h>
527 /* gcov hook needed to get the coverage report.*/ in z_cstart()
/Zephyr-Core-3.4.0/tests/kernel/fpu_sharing/generic/src/
Dload_store.c39 #include <zephyr/debug/gcov.h>
/Zephyr-Core-3.4.0/arch/arm/core/aarch32/mpu/
Darm_core_mpu.c68 /* GCOV code coverage accounting area. Needs User permissions
/Zephyr-Core-3.4.0/doc/kernel/usermode/
Dmemory_domain.rst40 extra features like GCOV, HEP, etc.
/Zephyr-Core-3.4.0/arch/x86/
Dgen_mmu.py890 # If GCOV is enabled, user mode must be able to write to its
/Zephyr-Core-3.4.0/doc/hardware/arch/
Darm_cortex_m.rst492 * a possibly unprivileged RW region for GCOV code coverage accounting area, when :kconfig:option:`C…
/Zephyr-Core-3.4.0/doc/releases/
Drelease-notes-2.4.rst296 * gcov coverage support for ARC QEMU