~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/translations/zh_CN/dev-tools/gcov.rst

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /Documentation/translations/zh_CN/dev-tools/gcov.rst (Version linux-6.12-rc7) and /Documentation/translations/zh_CN/dev-tools/gcov.rst (Version linux-5.0.21)


  1 .. include:: ../disclaimer-zh_CN.rst              
  2                                                   
  3 :Original: Documentation/dev-tools/gcov.rst       
  4 :Translator: 赵军奎 Bernard Zhao <bernard@vi    
  5                                                   
  6 在Linux内核里使用gcov做代码覆盖率    
  7 =====================================             
  8                                                   
  9 gcov分析核心支持在Linux内核中启用G    
 10 运行时的代码覆盖率数据会以gcov兼    
 11 以通过gcov的 ``-o`` 选项(如下示例    
 12 (需要跳转到内核编译路径下并且    
 13                                                   
 14     # cd /tmp/linux-out                           
 15     # gcov -o /sys/kernel/debug/gcov/tmp/linux    
 16                                                   
 17 这将在当前目录中创建带有执行计    
 18 在获得这些统计文件后,可以使用    
 19 自动化处理Linux内核的覆盖率运行    
 20                                                   
 21 可能的用途:                                  
 22                                                   
 23 * 调试(用来判断每一行的代码是    
 24 * 测试改进(如何修改测试代码,    
 25 * 内核最小化配置(对于某一个选    
 26   是否还需要这个配置)                  
 27                                                   
 28 .. _gcov: https://gcc.gnu.org/onlinedocs/gcc/G    
 29 .. _lcov: http://ltp.sourceforge.net/coverage/    
 30                                                   
 31                                                   
 32 准备                                            
 33 ----                                              
 34                                                   
 35 内核打开如下配置::                        
 36                                                   
 37         CONFIG_DEBUG_FS=y                         
 38         CONFIG_GCOV_KERNEL=y                      
 39                                                   
 40 获取整个内核的覆盖率数据,还需    
 41                                                   
 42         CONFIG_GCOV_PROFILE_ALL=y                 
 43                                                   
 44 需要注意的是,整个内核开启覆盖    
 45 同时内核运行也会变慢一些。           
 46 另外,并不是所有的架构都支持整    
 47                                                   
 48 代码运行覆盖率数据只在debugfs挂载    
 49                                                   
 50         mount -t debugfs none /sys/kernel/debu    
 51                                                   
 52                                                   
 53 定制化                                         
 54 ------                                            
 55                                                   
 56 如果要单独针对某一个路径或者文    
 57 径的Makefile中增加如下的配置:           
 58                                                   
 59 - 单独统计单个文件(例如main.o)::    
 60                                                   
 61     GCOV_PROFILE_main.o := y                      
 62                                                   
 63 - 单独统计某一个路径::                   
 64                                                   
 65     GCOV_PROFILE := y                             
 66                                                   
 67 如果要在整个内核的覆盖率统计(    
 68 某一个文件或者路径,可以使用如    
 69                                                   
 70     GCOV_PROFILE_main.o := n                      
 71                                                   
 72 和::                                             
 73                                                   
 74     GCOV_PROFILE := n                             
 75                                                   
 76 此机制仅支持链接到内核镜像或编    
 77                                                   
 78                                                   
 79 相关文件                                      
 80 --------                                          
 81                                                   
 82 gcov功能需要在debugfs中创建如下文    
 83                                                   
 84 ``/sys/kernel/debug/gcov``                        
 85     gcov相关功能的根路径                  
 86                                                   
 87 ``/sys/kernel/debug/gcov/reset``                  
 88     全局复位文件:向该文件写入数    
 89                                                   
 90 ``/sys/kernel/debug/gcov/path/to/compile/dir/f    
 91     gcov工具可以识别的覆盖率统计    
 92           会将本文件的gcov统计数据    
 93                                                   
 94 ``/sys/kernel/debug/gcov/path/to/compile/dir/f    
 95     gcov工具需要的软连接文件(指    
 96     在gcc编译时如果配置了选项 ``-ft    
 97                                                   
 98                                                   
 99 针对模块的统计                             
100 --------------                                    
101                                                   
102 内核中的模块会动态的加载和卸载    
103 gcov提供了一种机制,通过保留相关    
104 模块卸载后这些备份数据在debugfs中    
105 一旦这个模块重新加载,模块关联    
106                                                   
107 可以通过对内核参数gcov_persist的修    
108                                                   
109         gcov_persist = 0                          
110                                                   
111 在运行时,用户还可以通过写入模    
112 载模块的数据。                             
113                                                   
114                                                   
115 编译机和测试机分离                       
116 ------------------                                
117                                                   
118 gcov的内核分析插桩支持内核的编译    
119 行是在不同的机器上。                    
120 如果内核编译和运行是不同的机器    
121 是在哪里使用的:                            
122                                                   
123 .. _gcov-test_zh:                                 
124                                                   
125 a) 若gcov运行在测试机上                   
126                                                   
127     测试机上面gcov工具的版本必须    
128     同时下面的文件要从编译机拷贝    
129                                                   
130     从源代码中:                              
131       - 所有的C文件和头文件              
132                                                   
133     从编译目录中:                           
134       - 所有的C文件和头文件              
135       - 所有的.gcda文件和.gcno文件        
136       - 所有目录的链接                     
137                                                   
138     特别需要注意,测试机器上面的    
139     完全一致。                               
140     如果文件是软链接,需要替换成    
141     目录变量CURDIR引起的)。             
142                                                   
143 .. _gcov-build_zh:                                
144                                                   
145 b) 若gcov运行在编译机上                   
146                                                   
147     测试用例运行结束后,如下的文    
148                                                   
149     从sysfs中的gcov目录中:                  
150       - 所有的.gcda文件                      
151       - 所有的.gcno文件软链接             
152                                                   
153     这些文件可以拷贝到编译机的任    
154     目录。                                     
155                                                   
156     比如一个是示例的目录结构如下    
157                                                   
158       /tmp/linux:    内核源码目录           
159       /tmp/out:      内核编译文件路径    
160       /tmp/coverage: 从测试机器上面拷    
161                                                   
162       [user@build] cd /tmp/out                    
163       [user@build] gcov -o /tmp/coverage/tmp/o    
164                                                   
165                                                   
166 关于编译器的注意事项                    
167 --------------------                              
168                                                   
169 GCC和LLVM gcov工具不一定兼容。           
170 如果编译器是GCC,使用 gcov_ 来处理    
171 则使用 llvm-cov_ 。                           
172                                                   
173 .. _gcov: https://gcc.gnu.org/onlinedocs/gcc/G    
174 .. _llvm-cov: https://llvm.org/docs/CommandGui    
175                                                   
176 GCC和Clang gcov之间的版本差异由Kconfi    
177 kconfig会根据编译工具链的检查自动    
178                                                   
179 问题定位                                      
180 --------                                          
181                                                   
182 可能出现的问题1                            
183     编译到链接阶段报错终止             
184                                                   
185 问题原因                                      
186     分析标志指定在了源文件但是没    
187                                                   
188 解决方法                                      
189     通过在相应的Makefile中使用 ``GCOV    
190     或者 ``GCOV_PROFILE_basename.o := n``     
191                                                   
192 可能出现的问题2                            
193     从sysfs复制的文件显示为空或不    
194                                                   
195 问题原因                                      
196     由于seq_file的工作方式,某些工    
197     sysfs复制文件。                          
198                                                   
199 解决方法                                      
200     使用 ``cat`` 读取 ``.gcda`` 文件,    
201     中所示的机制。                         
202                                                   
203                                                   
204 附录A:collect_on_build.sh                     
205 --------------------------                        
206                                                   
207 用于在编译机上收集覆盖率元文件    
208 (见 :ref:`编译机和测试机分离 a. <g    
209                                                   
210 .. code-block:: sh                                
211                                                   
212     #!/bin/bash                                   
213                                                   
214     KSRC=$1                                       
215     KOBJ=$2                                       
216     DEST=$3                                       
217                                                   
218     if [ -z "$KSRC" ] || [ -z "$KOBJ" ] || [ -    
219       echo "Usage: $0 <ksrc directory> <kobj d    
220       exit 1                                      
221     fi                                            
222                                                   
223     KSRC=$(cd $KSRC; printf "all:\n\t@echo \${    
224     KOBJ=$(cd $KOBJ; printf "all:\n\t@echo \${    
225                                                   
226     find $KSRC $KOBJ \( -name '*.gcno' -o -nam    
227                      -perm /u+r,g+r | tar cfz     
228                                                   
229     if [ $? -eq 0 ] ; then                        
230       echo "$DEST successfully created, copy t    
231       echo "  tar xfz $DEST -P"                   
232     else                                          
233       echo "Could not create file $DEST"          
234     fi                                            
235                                                   
236                                                   
237 附录B:collect_on_test.sh                      
238 -------------------------                         
239                                                   
240 用于在测试机上收集覆盖率数据文    
241 (见 :ref:`编译机和测试机分离 b. <g    
242                                                   
243 .. code-block:: sh                                
244                                                   
245     #!/bin/bash -e                                
246                                                   
247     DEST=$1                                       
248     GCDA=/sys/kernel/debug/gcov                   
249                                                   
250     if [ -z "$DEST" ] ; then                      
251       echo "Usage: $0 <output.tar.gz>" >&2        
252       exit 1                                      
253     fi                                            
254                                                   
255     TEMPDIR=$(mktemp -d)                          
256     echo Collecting data..                        
257     find $GCDA -type d -exec mkdir -p $TEMPDIR    
258     find $GCDA -name '*.gcda' -exec sh -c 'cat    
259     find $GCDA -name '*.gcno' -exec sh -c 'cp     
260     tar czf $DEST -C $TEMPDIR sys                 
261     rm -rf $TEMPDIR                               
262                                                   
263     echo "$DEST successfully created, copy to     
264     echo "  tar xfz $DEST"                        
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php