Lines Matching +full:apt +full:- +full:get

17 with features available through the compiler, we can also generate worst-case
23 by name, the following top-level containers are used to group such symbols:
25 * Hidden - The RAM and ROM reports list all processing symbols with no matching
29 was empty, or was undefined. The tool was unable to get the name
32 * No paths - The RAM and ROM reports list all processing symbols with relative paths
37 to get the name of the function, but it was unable to identify where it comes from.
55 .. zephyr-app-commands::
57 :zephyr-app: samples/hello_world
65 Root 4637 100.00% -
66 ├── (hidden) 4 0.09% -
67 ├── (no paths) 2748 59.26% -
77 ├── WORKSPACE 184 3.97% -
78 │ └── modules 184 3.97% -
79 │ └── hal 184 3.97% -
80 │ └── nordic 184 3.97% -
81 │ └── nrfx 184 3.97% -
82 │ └── drivers 184 3.97% -
83 │ └── src 184 3.97% -
84 │ ├── nrfx_clock.c 8 0.17% -
86 │ ├── nrfx_gpiote.c 132 2.85% -
88 │ ├── nrfx_ppi.c 4 0.09% -
90 │ └── nrfx_twim.c 40 0.86% -
92 └── ZEPHYR_BASE 1701 36.68% -
93 ├── arch 5 0.11% -
94 │ └── arm 5 0.11% -
95 │ └── core 5 0.11% -
96 │ ├── mpu 1 0.02% -
97 │ │ └── arm_mpu.c 1 0.02% -
99 │ └── tls.c 4 0.09% -
101 ├── drivers 258 5.56% -
117 .. zephyr-app-commands::
119 :zephyr-app: samples/hello_world
127 Root 27828 100.00% -
129 └── ZEPHYR_BASE 13558 48.72% -
130 ├── arch 1766 6.35% -
131 │ └── arm 1766 6.35% -
132 │ └── core 1766 6.35% -
133 │ ├── cortex_m 1020 3.67% -
134 │ │ ├── fault.c 620 2.23% -
141 ├── boards 32 0.11% -
142 │ └── arm 32 0.11% -
143 │ └── reel_board 32 0.11% -
144 │ └── board.c 32 0.11% -
147 ├── build 194 0.70% -
148 │ └── zephyr 194 0.70% -
149 │ ├── isr_tables.c 192 0.69% -
151 │ └── misc 2 0.01% -
152 │ └── generated 2 0.01% -
153 │ └── configs.c 2 0.01% -
155 ├── drivers 6282 22.57% -
163 This target uses a third-party tool called puncover which can be found at
171 pip3 install git+https://github.com/HBehrens/puncover --user
175 This is a third-party tool that might or might not be working at any given
183 .. zephyr-app-commands::
185 :zephyr-app: samples/hello_world
190 To view worst-case stack usage analysis, build this with the
193 .. zephyr-app-commands::
195 :zephyr-app: samples/hello_world
198 :gen-args: -DCONFIG_STACK_USAGE=y
210 Poke-a-hole (pahole) is an object-file analysis tool to find the size of
212 elements to the word-size of the CPU by the compiler.
214 Poke-a-hole (pahole) must be installed prior to using this target. It can be
218 sudo apt-get install dwarves
220 Alternatively, you can get it from fedora::
228 .. zephyr-app-commands::
230 :zephyr-app: samples/hello_world