ValGrind的使用分享

合集下载

valgrind的使用及错误信息分析

valgrind的使用及错误信息分析

valgrind的使⽤及错误信息分析这⾥记录⼀下使⽤valgrind查找你的应⽤程序中的各种潜在的错误信息,并举例说明。

经常使⽤valgrind查找⼀下你的代码的内存有关错误,对移植到嵌⼊系统后的系统稳定性来说有着重要的意义。

usagex86 平台先编译你⾃⼰的应⽤程序命令⾏:valgrind --log-file=1 --tool=memcheck ./a.outerror specification⼀、有malloc,但未freecode#include <stdio.h>#include <stdlib.h>void main(){char *p = malloc(20);sprintf(p, "%s", "test");fprintf(stderr, "p:%s/n", p);}分析:⽂件后部,总体来看,有确定⽆疑的lost 20字节。

如下:==26512== LEAK SUMMARY:==26512== definitely lost: 20 bytes in 1 blocks.在⽂件之前描述的内容,细节可以看出,有1个malloc,但未去free。

如下:==26512== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 11 from 1)==26512== malloc/free: in use at exit: 20 bytes in 1 blocks.==26512== malloc/free: 1 allocs, 0 frees, 20 bytes allocated.⼆、free⼀个未malloc的指针codevoid main(){char p[] = "hello";fprintf(stderr, "p:%s/n", p);free(p);}分析:⽂件后部,总体来看,有1个错误,0个malloc,1个free。

valgrind使用方法

valgrind使用方法

一.Valgrind是什么?Valgrind是一个提供程序调试及性能分析的工具集。

其包含的工具主要有Memcheck,Cachegrind,Callgrind,Massif等。

其中,最为常用的是Memcheck,其主要用来检查程序heap上的内存使用情况。

本文档主要介绍Memcheck的用法和一些使用技巧。

其官方网站是:/二.Valgrind能干什么不能干什么?Valgrind主要用来检查程序中可能出现的以下问题:e of uninitialised memory2.Reading/writing memory after it has been free’d3.Reading/writing off the end of malloc’d block4.Memory leaks -- where pointers to malloc’d blocks are lost foreve5.Mismatched use of malloc/new/new [] vs free/delete/delete []6.Overlapping src and dst pointers in memcpy() and related functions其功能约束如下:1.只能检查heap上的错误,不能检查出static和stack内存的使用,如数组越界等。

2.不能指出为什么泄漏,也不能指出在哪内存泄漏3.指出的错误并非100%正确,但建议在编译时至少以warning的心态对待它们。

三.Valgrind的安装与部署若有root权限,其安装方式如下:1.从官网上下载valgrind 安装包:/downloads/valgrind-3.3.0.tar.bz22.用bzip2及tar命令解压压缩包。

3.进入解压目录,运行./configure4.运行“make”命令5.运行“make install”命令6.运行“valgrind ls- l”测试valgrind是否已经正确安装到计算机上。

linux下的调试工具valgrind

linux下的调试工具valgrind

用C/C++开发其中最令人头疼的一个问题就是内存管理,有时候为了查找一个内存泄漏或者一个内存访问越界,需要要花上好几天时间,如果有一款工具能够帮助我们做这件事情就好了,valgrind正好就是这样的一款工具。

Valgrind是一款基于模拟linux下的程序调试器和剖析器的软件套件,可以运行于x86, amd64和ppc32架构上。

valgrind包含一个核心,它提供一个虚拟的CPU运行程序,还有一系列的工具,它们完成调试,剖析和一些类似的任务。

valgrind是高度模块化的,所以开发人员或者用户可以给它添加新的工具而不会损坏己有的结构。

valgrind的官方网址是:你可以在它的网站上下载到最新的valgrind,它是开放源码和免费的。

一、介绍valgrind包含几个标准的工具,它们是:1、memcheckmemcheck探测程序中内存管理存在的问题。

它检查所有对内存的读/写操作,并截取所有的malloc/new/free/delete调用。

因此memcheck工具能够探测到以下问题:1)使用未初始化的内存2)读/写已经被释放的内存3)读/写内存越界4)读/写不恰当的内存栈空间5)内存泄漏6)使用malloc/new/new[]和free/delete/delete[]不匹配。

2、cachegrindcachegrind是一个cache剖析器。

它模拟执行CPU中的L1, D1和L2 cache,因此它能很精确的指出代码中的cache未命中。

如果你需要,它可以打印出cache未命中的次数,内存引用和发生cache未命中的每一行代码,每一个函数,每一个模块和整个程序的摘要。

如果你要求更细致的信息,它可以打印出每一行机器码的未命中次数。

在x86和amd64上,cachegrind通过CPUID自动探测机器的cache配置,所以在多数情况下它不再需要更多的配置信息了。

3、helgrindhelgrind查找多线程程序中的竞争数据。

内存调试工具 valgrind

内存调试工具 valgrind

内存调试工具valgrind来源::linux下面用c++写代码,在所难免会遇到segmentation fault(段错误)。

个人在编写ns扩展模块时候,遇到过很多段错误,虽然运行时刻经常由程序抛出段错误,但是段错误的发生的程序级别的原因多种多样,不过归结到系统级别上,段错误都是由于内存原因引起的(个人总结)。

会造成内存错误的程序级别的原因,也就是我们程序员所经常犯的错误大致可以分为以下几个方面:1,使用未初始化的指针-这是必然的,指针指空的东西,必然出错。

2,重复删除一个指针-必然,再次删除就会删除一个已经分配给别的程序的数据或者其他。

3,内存冲突-由于程序声明的两块数据区域重叠,造成混乱。

4,混杂的指针错误-只能具体问题具体分析,情况比较复杂。

对于一位刚开始用c++在linux编程的人来说,最常遇到的应该的就是1与2了。

当工程规模比较大,程序由小组完成而后整合等的情况下,很容易出现2,3,4的情况。

这时候的调试比较麻烦,也需要很多耐心。

我在做的wimax mesh的项目就是这样。

对于一个timer的使用,没有初始化,造成的段错误,一目了然。

工程进展非常顺利。

当工程做到50%时候(11.08号),遇到了一个段错误,结果调试到12.02号才调出来!我就来说一下我的调试历程吧!真是一波三折阿!开始的时候以为是1或者2的情况,反复检查,不是这样。

然后怀疑3或者4,结果由于没有使用任何工具,只是在代码中加打印信息,这时候只能把错误定位到transmit(p)这个函数上。

但是这个函数我只写了一行,就是transmit(p){downtarget_-recv(p,(Handle*)NULL);}程序在这个地方出错实在让人摸不到头绪,因为再往下执行就不是我代码的问题了,而是下层已有代码甚至是系统代码的问题阿!非常困扰!然后开始用gdb调试,gdb是一个很好的很强大的调试工具,我用的命令行的,所能完成的功能和vc下的调试工具差不多,只是需要看什么变量就是要用print×来看罢了,不过功能决不比它差。

Linux 内存调试工具- Valgrind 使用初探

Linux 内存调试工具- Valgrind 使用初探

Linux 内存调试工具- Valgrind 使用初探Valgrind 是在linux系统下开发应用程序时用于调试内存问题的工具。

它尤其擅长发现内存管理的问题,它可以检查程序运行时的内存泄漏问题。

它的官方网址是/ 下载最新版本的Valgrind,目前是3.2.0。

wget/downloads/valValgrind 是在linux系统下开发应用程序时用于调试内存问题的工具。

它尤其擅长发现内存管理的问题,它可以检查程序运行时的内存泄漏问题。

它的官方网址是/下载最新版本的Valgrind,目前是3.2.0。

wget/downloads/valkyrie-1.2.0.tar.bz2执行常规的安装步骤:./confgure && make && make install。

注意:系统必须安装QT的开发包。

即便这样在make 时还是出现qplatformdefs.h这个文件找不到的情况,导致make失败。

查找系统中的qplatformdefs.h 之后,发现没有存在于qt的标准头文件目录/usr/lib/qt-3.3/include。

如是将/usr/lib/qt-3.3/mkspecs /linux-g++/ 目录下该头文件复制标准头文件目录,重新make ,后面一切OK。

初次使用编译如下代码: gcc -Wall example.c -g -o example#include <stdlib.h>void f(void){int* x = malloc(10 * sizeof(int));x[10] = 0; // problem 1: heap block overrun} // problem 2: memory leak -- x not freedint main(void){f();return 0;}注意:gcc 的-g 选项让Valgrind调试输出时指出相应信息的代码所在的行号。

Linux下Valgrind的使用方法

Linux下Valgrind的使用方法

Valgrind是运行在Linux上一套基于仿真技术的程序调试和分析工具,它包含一个内核──一个软件合成的CPU,和一系列的小工具,每个工具都可以完成一项任务──调试,分析,或测试等。

Valgrind可以检测内存泄漏和内存违例,还可以分析cache的使用等,灵活轻巧而又强大,能直穿程序错误的心脏,真可谓是程序员的瑞士军刀。

一、Valgrind的主要功能Valgrind工具包包含多个工具,如Memcheck,Cachegrind,Helgrind,Callgrind,Massif。

下面分别介绍个工具的作用:Memcheck 工具主要检查下面的程序错误:1.使用未初始化的内存(Use of uninitialised memory)2.使用已经释放了的内存(Reading/writingmemory after it has been free’d)3.使用超过malloc分配的内存空间(Reading/writing off the end of malloc’d blocks)4.对堆栈的非法访问(Reading/writinginappropriate areas on the stack)5.申请的空间是否有释放(Memory leaks –where pointers to malloc’d blocks are lost forever)6.malloc/free/new/delete申请和释放内存的匹配(Mismatched use of malloc/new/new [] vs free/delete/delete [])7.src和dst的重叠(Overlapping src and dst pointers in memcpy() and related functions) CallgrindCallgrind收集程序运行时的一些数据,函数调用关系等信息,还可以有选择地进行cache模拟。

valgrind的使用方法-详细手册

valgrind的使用方法-详细手册

valgrind的使用Valgrind是一个GPL的软件,用于Linux(For x86, amd64 and ppc32)程序的内存调试和代码剖析。

你可以在它的环境中运行你的程序来监视内存的使用情况,比如C 语言中的malloc和free或者 C++中的new和 delete。

使用Valgrind的工具包,你可以自动的检测许多内存管理和线程的bug,避免花费太多的时间在bug寻找上,使得你的程序更加稳固。

Valgrind的主要功能Valgrind工具包包含多个工具,如Memcheck,Cachegrind,Helgrind, Callgrind,Massif。

下面分别介绍个工具的作用:Memcheck 工具主要检查下面的程序错误:∙使用未初始化的内存 (Use of uninitialised memory)∙使用已经释放了的内存(Reading/writing memory after it has been free’d) ∙使用超过 malloc分配的内存空间(Reading/writing off the end of malloc’d blocks)∙对堆栈的非法访问 (Reading/writing inappropriate areas on the stack) ∙申请的空间是否有释放 (Memory leaks –where pointers to malloc’d blocks are lost forever)∙malloc/free/new/delete申请和释放内存的匹配(Mismatched use of malloc/new/new [] vs free/delete/delete [])∙src和dst的重叠(Overlapping src and dst pointers in memcpy() and related functions)CallgrindCallgrind收集程序运行时的一些数据,函数调用关系等信息,还可以有选择地进行cache 模拟。

valgrind 使用手册之一

valgrind 使用手册之一

valgrind 使用手册之一2011-07-28 17:37valgrindValgrind is an instrumentation framework for building dynamic analysis tools. There are Valgrind tools that can automatically detect many memory management andthreading bugs, and profile your programs in detail. You can also use Valgrind to build new tools.下载:svn co svn:///valgrind/trunk valgrind安装:cd valgrind./autogen.sh./configure --prefix=...makesudo make install使用方法:要检测的程序必须加-g选项,推荐使用-O0,不优化内存检测:如果你运行程序时命令是这样的:myprog arg1 arg2检测时改成这样:valgrind --leak-check=yes myprog arg1 arg2 ,默认是memcheckvalgrind --tool=cachegrind myprog arg1 arg2 ,这个调用的则是cachegrind,输出结果在当前目录下的cachegrind.out.<pid> pid为程序的pid Valgrind工具包包含多个工具,如Memcheck,Cachegrind,Helgrind, Callgrind,Massif,你可以用上面的--tool=来指定,指定时没有大写exp-ptrcheck, a heap, stack and global array overrun detectorvalgrind --tool=exp-ptrcheck --log-file=val.log ./fbv -g/windows/F/photos/102_4085.JPG输出如下:==17627== exp-ptrcheck, a heap, stack and global array overrun detector ==17627== NOTE: This is an Experimental-Class Valgrind Tool==17627== Copyright (C) 2003-2010, and GNU GPL'd, by OpenWorks Ltd et al. ==17627== Using Valgrind-3.7.0.SVN and LibVEX; rerun with -h for copyright info==17627== Command: ./fbv -g /windows/F/photos/102_4085.JPG==17627== Parent PID: 2448==17627====17627====17627== For counts of detected and suppressed errors, rerun with: -v ==17627== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)valgrind --tool=callgrind ./fbv -g /windows/F/photos/102_4085.JPG 同时另一个命令行下运行:callgrind_control -b输出如下:PID 17678: ./fbv -g /windows/F/photos/102_4085.JPG [requesting'Status'...]Frame: Backtrace for Thread 1[ 0] rotate (1 x)[ 1] show_image (1 x)[ 2] main (1 x)[ 3] (below main) (1 x)[ 4] 0x080495a0 (1 x)[ 5] 0x00000850程序结束后,产生文件callgrind.out.<pid>callgrind_annotate [options] callgrind.out.<pid> 产生较精简的函数summaryMassif is a heap profiler. It measures how much heap memory your program uses. This includes both the useful space,and the extra bytes allocated for book-keeping and alignment purposes. It can also measure the size of yourprogram's stack(s), although it does not do so by default.valgrind --tool=massif ./fbv -g /windows/F/photos/102_4085.JPG 生成堆使用情况的logms_print massif.out.19747 对log做些处理产生可易理解的信息--------------------------------------------------------------------------------n time(i) total(B) useful-heap(B)extra-heap(B) stacks(B)--------------------------------------------------------------------------------46 444,727,063 12,190,488 12,190,464 24 047 444,727,955 12,715,808 12,715,776 32 048 446,465,375 12,190,488 12,190,464 24 049 446,466,273 15,336,224 15,336,192 32 050 456,720,045 15,336,224 15,336,192 32 0100.00% (15,336,192B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.->61.54% (9,437,184B) 0x8049820: show_image (in/home/zengming/workspace/fbv/fbv)| ->61.54% (9,437,184B) 0x804A87D: main (in/home/zengming/workspace/fbv/fbv)............DHAT is a tool for examining how programs use their heap allocations. valgrind --tool=exp-dhat ./fbv -g /windows/F/photos/102_4085.JPG==19813====19813== ======== SUMMARY STATISTICS ==========19813====19813== guest_insns: 456,751,347==19813====19813== max_live: 15,336,192 in 4 blocks==19813====19813== tot_alloc: 16,539,148 in 25 blocks==19813====19813== insns per allocated byte: 27==19813====19813====19813== ======== ORDERED BY decreasing "max-bytes-live": top 10 allocators ==========19813====19813== -------------------- 1 of 10 --------------------==19813== max-live: 9,437,184 in 1 blocks==19813== tot-alloc: 9,437,184 in 1 blocks (avg size 9437184.00)==19813== deaths: 1, at avg age 456,008,575 (99.83% of prog lifetime)==19813== acc-ratios: 0.25 rd, 1.00 wr (2,359,296 b-read, 9,437,184 b-written)==19813== at 0x4026BB4: malloc (vg_replace_malloc.c:236)==19813== by 0x8049821: show_image (in/home/zengming/workspace/fbv/fbv)==19813== by 0x804A87E: main (in /home/zengming/workspace/fbv/fbv) ...............英文说明:/docs/manual/manual.html=============================使用valgrind进行后台服务器的性能优化2008-04-30一. Valgrind安装说明:先从/上将安装包down下来(使用3.2.0及以上版本),然后进行安装:./configuremakemake install (as "root" if needed)二.使用valgrind进行性能瓶颈定位:1.先将服务器运行环境搭建好,确定服务器程序能正常运行及响应请求。

介绍一种常用的内存泄漏检测工具

介绍一种常用的内存泄漏检测工具

介绍一种常用的内存泄漏检测工具内存泄漏是软件开发中常见的问题之一,会导致程序运行变慢、崩溃或不可预料的行为。

为了及时发现和解决内存泄漏问题,开发人员通常会使用各种内存泄漏检测工具。

本文将介绍一种常用的内存泄漏检测工具——Valgrind。

Valgrind是一款强大的内存调试和性能分析工具,适用于Linux和其他类UNIX系统。

它支持多种编程语言,例如C、C++、Java等,而且提供了丰富的功能来帮助开发人员检测和调试内存泄漏问题。

Valgrind提供了Memcheck工具,是它最重要的组成部分之一。

Memcheck可以检测程序中的内存错误,包括内存泄漏、访问已释放内存、使用未初始化的内存等。

它通过在程序的每一个内存分配和释放操作上插入代码来监控内存的使用情况,并在发现错误时提供详细的报告。

这使得开发人员能够快速定位和修复内存泄漏问题。

Valgrind还提供了Cachegrind工具,可用于程序性能分析。

Cachegrind通过模拟CPU高速缓存的访问,帮助开发人员发现程序中的缓存未命中情况,以及其他与缓存相关的性能问题。

它可以提供关于指令执行次数、缓存命中率等统计信息,帮助开发人员进行性能的优化和调整。

除了Memcheck和Cachegrind,Valgrind还提供了其他一些有用的工具,例如Helgrind和DRD。

Helgrind主要用于检测并发程序中的竞争条件和死锁,能够在程序执行过程中动态地检测并发访问共享资源的错误。

DRD是一种用于检测C/C++多线程程序中的竞争条件的工具,可以帮助开发人员发现潜在的并发错误。

Valgrind还支持插件的扩展机制,允许开发人员创建自定义的工具。

这为开发人员提供了最大的灵活性,可以根据自己的需求设计和实现特定的内存检测工具。

使用Valgrind的步骤相对简单。

安装Valgrind并确保系统满足运行要求。

接下来,编译需要检测的程序,并使用Valgrind运行它。

valgrind memcheck用法

valgrind memcheck用法

valgrind memcheck用法Valgrind是一个开源的内存调试工具,可以帮助你检测程序中的内存错误。

Memcheck是Valgrind的一个重要组件,专门用于检测程序中的内存错误,包括使用未初始化的内存、使用已经释放的内存、越过内存边界等。

以下是使用Valgrind Memcheck的一般步骤:1.安装Valgrind:首先,你需要在你的系统上安装Valgrind。

对于大多数Linux发行版,你可以通过包管理器来安装。

例如,在Ubuntu上,你可以使用以下命令来安装Valgrind:arduinosudo apt-get install valgrind2.编译程序:在使用Valgrind运行程序之前,你需要先编译程序,以便生成可执行文件。

确保在编译时开启调试信息,以便Valgrind能够获取更多的信息。

例如,使用gcc编译器时,你可以使用以下命令编译程序:gcc -g -o myprogram myprogram.c3.使用Valgrind运行程序:一旦你有了可执行文件,就可以使用Valgrind来运行程序了。

使用以下命令来运行程序:bashvalgrind --tool=memcheck myprogram这将启动Memcheck工具来检测程序中的内存错误。

如果你的程序需要接受命令行参数,你可以将它们作为Valgrind命令的参数,例如:bashvalgrind --tool=memcheck myprogram arg1 arg2 ...4.查看结果:Valgrind会输出一个详细的报告,显示程序中潜在的内存错误。

报告将列出各种类型的错误,包括使用未初始化的内存、使用已经释放的内存、越过内存边界等。

你可以根据报告中的信息来修复程序中的错误。

以上就是使用Valgrind Memcheck的一般步骤。

请注意,Memcheck可能会使程序的运行速度变慢,因此在进行性能敏感的程序时需要谨慎使用。

valgrind基本用法

valgrind基本用法

valgrind基本用法英文回答:Valgrind is a powerful tool for debugging and profiling programs. It is mainly used for memory debugging, memory leak detection, and performance profiling. Valgrind runs your program in a virtual environment and monitors all memory accesses, allowing it to detect errors and provide detailed information about memory usage.To use Valgrind, you need to first install it on your system. Once installed, you can run your program with Valgrind by using the following command:valgrind <options> <program>。

Here, `<options>` are the various options you can pass to Valgrind, such as `--leak-check` for memory leak detection or `--tool=callgrind` for performance profiling. `<program>` is the path to your program's executable.Valgrind provides a number of tools that can be usedfor different purposes. One of the most commonly used tools is Memcheck, which is the default tool and is used for memory debugging and leak detection. Memcheck can detect a wide range of memory errors, such as reading from uninitialized variables, accessing memory after it has been freed, or writing to memory that has already been freed.Here is an example of how to use Valgrind with Memcheck:valgrind --leak-check=yes ./my_program.This command will run `my_program` with Memcheckenabled and will perform memory leak checking. After the program finishes running, Valgrind will provide a detailed report of any memory errors or leaks that were detected.Another useful tool provided by Valgrind is Callgrind, which is used for performance profiling. Callgrind collects information about the program's execution, such as the number of instructions executed, cache misses, and functioncall counts. This information can be used to identify performance bottlenecks and optimize the program.Here is an example of how to use Valgrind with Callgrind:valgrind --tool=callgrind ./my_program.This command will run `my_program` with Callgrind enabled and will collect performance profiling data. After the program finishes running, Valgrind will generate a file called `callgrind.out.<pid>`, where `<pid>` is the process ID of the program. This file can be analyzed using the`kcachegrind` tool, which provides a graphical interfacefor visualizing the performance data.Valgrind is a versatile tool that can greatly aid in the debugging and profiling of programs. It is widely used in the software development industry and is considered an essential tool for any serious programmer.中文回答:Valgrind是一个强大的用于调试和性能分析程序的工具。

Valgrind的安装与简单使用

Valgrind的安装与简单使用

Valgrind的安装与简单使用展开全文获取源码wget /downloads/valgrind-3.14.0.tar.bz2 解压缩tar -jxvf valgrind-3.14.0.tar.bz2安装,其中/home/vmuser/valgrind是要安装的目录cd valgrind-3.14.0./configure --prefix=/home/vmuser/valgrindmake &amp;&amp; make install配置环境变量1)首先打开文件/etc/profile2)将下面内容追加到文件尾export PATH=$PATH:/home/vmuser/valgrind/bin/3)使配置生效source /etc/profile使用建立文件vi val假设想要检测的执行文件是main,并且想把结果输入到valgrind_report.log中,就在文件中写入下面的内容:valgrind --tool=memcheck --leak-check=yes --show-reachable=yes --run-libc-freeres=yes --log-file=./valgrind_report.log ./main $@如果只想把结果打印到屏幕上,就在文件中写入下面的内容:valgrind --tool=memcheck --leak-check=yes --show-reachable=yes --run-libc-freeres=yes ./main最后给文件val添加执行权限:sudo chmod 777 val./val执行如果有内存泄漏等问题,就会有相应的打印在日志文件中或屏幕上。

Linux命令高级技巧使用gdb和valgrind进行内存调试和分析

Linux命令高级技巧使用gdb和valgrind进行内存调试和分析

Linux命令高级技巧使用gdb和valgrind进行内存调试和分析在Linux系统中,gdb和valgrind是两个常用的工具,用于进行程序的内存调试和分析。

本文将介绍如何使用gdb和valgrind进行高级技巧的相关操作和使用方法。

一、gdb内存调试技巧1. 编译程序时加入调试信息在进行程序编译时,可以添加-g参数,以便在调试时获取符号表信息。

例如:```gcc -g myprogram.c -o myprogram```2. 启动gdb调试程序在终端中输入下列命令启动gdb,并加载待调试的程序:```gdb myprogram```3. 设置断点使用break命令设置断点,指定程序执行到特定位置时停下来。

例如,在第10行设置断点:```break 10```4. 运行程序输入run命令以运行程序。

程序将会在设置的断点处停下来。

可以通过step或next命令逐行执行程序。

5. 输出变量值在断点停下来时,可以使用print命令打印出变量的值。

例如:```print variable```6. 监测内存错误使用GNU debugger的功能来检查内存错误和泄漏。

使用valgrind 可以检测到许多内存相关的问题。

二、valgrind内存分析技巧1. 安装valgrind在Linux系统中,可以使用包管理工具安装valgrind。

例如,在Ubuntu系统中,可以使用以下命令安装valgrind:```sudo apt-get install valgrind```2. 运行valgrind在终端中输入以下命令来运行valgrind:```valgrind --tool=memcheck ./myprogram```其中,myprogram为待分析的程序。

3. 查找内存错误valgrind将会分析程序的内存使用情况,并输出相关的错误信息。

特别是当程序存在内存泄漏时,valgrind将会给出相应的提示。

用valgrind定位程序问题

用valgrind定位程序问题

一,用valgrind定位程序问题在排查程序问题时候,我们会经常用到gdb。

gdb确实是定位程序问题的很有用的工具。

但是很多时候我们用gdb来定位问题,会发现不好定位,花了很多时候把发生core的地方找到了,可是还是不知道为何会发生该错误-----因为常常产生core的地方是由于在core之前的错误导致的。

这时候别忘了另一个工具,那就是valgrind,根据我定位程序问题的经验,valgrind经常能给我惊喜。

所以我觉得很有必要重视该工具,因为它确实能带给我们很多便利。

我这里不具体说valgrind的原理和使用,网上有一大堆相关文档,大家感兴趣的话可以在网上找相关资料。

我这里只是具体针对我们QQ秀的情况做介绍:1:使用valgrind定位cgi、fastcgi:1)使用valgrind来定位cgi问题:有两个前提条件:A)cgi必须是可执行程序,这意味着定位fastcgi(动态库)时,需要把它编译成cgi(可执行文件)形式;B)运行cgi时,需要配置环境变量(cgi的获取客户端请求是通过环境变量来读取请求包信息的),在qzthhp 里面,对于cgi的环境变量,由qzhhtp来设置,现在我们需要单独跑cgi时,就需要我们自己配置环境变量了:设置方法:首先我们通过httpwatch获取请求包:根据请求包配置环境变量:export REQUEST_METHOD=POSTexport QUERY_STRING="parm1=1&parm2=2&…"exportHTTP_COOKIE="vid=1011255824;flv=9.0;pt2gguin=o024*******;airkey=c14101efd8 7eb……"export CONTENT_TYPE=""export CONTENT_LENGTH=""把cgi编译成可执行文件,运行:(譬如:qqshow_user_info)valgrind --log-file-exactly=allen.log --tool=memcheck --leak-check=yes ./qqshow_user_infoPS: 如果是post方式,那run后会等待输入,直接把参数拷贝过来输入就ok了,如“parm1=1&parm2=2&…”,输入完按Ctrl+D或回车键表示输入完成,程序继续run分析allen.log,定位程序问题。

C语言技术中的调试工具推荐与使用技巧

C语言技术中的调试工具推荐与使用技巧

C语言技术中的调试工具推荐与使用技巧在C语言的开发过程中,调试是一个非常重要的环节。

通过调试,我们可以发现代码中的错误并进行修复,提高程序的稳定性和性能。

而为了更高效地进行调试工作,我们需要使用一些专门的调试工具。

本文将推荐几款常用的C语言调试工具,并分享一些使用技巧。

一、GDB调试工具GDB是GNU开源项目中的调试工具,被广泛应用于C语言的调试中。

它提供了一系列强大的功能,如断点设置、变量查看、堆栈追踪等。

使用GDB进行调试时,我们可以通过命令行界面与其进行交互,也可以使用GUI界面进行操作。

以下是几个常用的GDB命令:1. 设置断点:可以使用“break”命令在代码的某一行设置断点,当程序执行到该断点时会暂停。

例如,“break main”可以在main函数的入口处设置断点。

2. 查看变量:使用“print”命令可以查看变量的值。

例如,“print x”可以查看变量x的值。

3. 单步执行:使用“step”命令可以逐行执行代码,并进入函数内部。

例如,“step”可以进入函数的第一行。

除了这些基本命令外,GDB还提供了许多其他功能,如条件断点、内存查看等。

通过熟练掌握GDB的使用技巧,我们可以更快速地定位和解决问题。

二、Valgrind内存调试工具在C语言开发中,内存泄漏是一个常见的问题。

为了解决这个问题,我们可以使用Valgrind这个强大的内存调试工具。

Valgrind可以检测程序中的内存错误、访问越界、使用未初始化的变量等问题,并给出相应的报告。

使用Valgrind进行内存调试时,我们可以使用以下命令:1. 检测内存错误:使用“valgrind --leak-check=full ./program”命令可以检测程序中的内存错误,并给出详细的报告。

2. 检测访问越界:使用“valgrind --tool=memcheck --track-origins=yes ./program”命令可以检测程序中的访问越界问题,并追踪到具体的源头。

valgrind使用技巧

valgrind使用技巧

valgrind使用技巧1Valgrind简介Valgrind基本原理是让待检查的程序运行在它模拟的cpu上,所以能得到非常详尽的信息,但是会影响到程序的性能,速度有可能下降20倍以上,不过作为开发环境下检查和统计内存使用情况还是不错的。

它主要包含有以下几个工具:memcheck内存检查cachegrind能对cache的使用情况进行统计callgrind据说能对函数的时间花销进行统计maif测量程序使用了多少堆空间helgrind对于多线程编程时,能检测到datarace编译被检测程序的时候,最好用-g选项加上调试信息,这样Memcheck给出的错误信息将包含精确的行号。

1.1memcheckmemcheck是它所有工具中最强大最经常被使用到的工具它带的memcheck工具至少能检查出如下几种情况:1.使用没有初始化的内存2.读或者写已经被释放掉的内存3.malloc分配的内存的越界访问4.读写tack中不恰当的区域5.内存泄露,检测没有释放的通过malloc分配的内存块6.malloc/new/new[]与free/delete/delete[]不匹配的情况(咱们是单纯的C编程,这一点用不上)7.memcpy时源地址与目的地址有重叠的情形8.不正确的内存释放,如两次释放heap内的内存。

注意:memcheck并不能检查到栈内数组上下越界的情况,array[-1]也不会报错的。

2Valgrind的安装Valgrind最简单的的编译和安装方法1.先运行bzip2–dvalgrind-3.4.1.tar.bz2或bunzip2valgrind-3.4.1.tar.bz2命令解压bz2包,得到tar包,然后再运行tarz某fvalgrind-3.4.1.tar命令对tar包进行解压2.进入源码目录,运行./configure命令进行配置3.运行make进行编译4.makecheck检查编译是否成功(本步骤是可选步骤)5.makeintall安装,默认目录是/ur/local/bin(需要root权限)更详细的安装信息参考INSTALL文件3Valgrind的使用3.1被测试程序的编译编译程序的时候最好用-g选项加上调试信息,这样Memcheck给出的错误信息将包含精确的行号。

  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
ValGrind的使用分享
淘宝搜索中心
yewang
1
目录
•Valgrind 介绍 •Valgrind 安装 •Valgrind 使用方法 •Memcheck 工具 •Cachegrind 工具 •Callgrind 工具 •Helgrind & Massif 工具简介
2
Valgrind介绍
• Valgrind是一个Linux下灵活的调试和剖析 工具。收集各种有用的运行时信息,可以 帮助找到程序中潜在的bug和性能瓶颈 • Valgrind提供多个工具,其中最重要的是:
使用方法
• 命令格式:
Valgrind [options] [your-program] [[program-options]]
• 样例:
valgrind ./txt2db
memcheck内存错误检查
• 命令:
Valgrind -v --leak-check=full --tool=memcheck ./txt2db -f 11.txt -d 22
统计信息查看
• 指令:
• • • • • • • • • • • • • I refs: 总操作数 I1 misses: 一级缓存指令未命中次数 L2i misses: 二级缓存指令未命中数 I1 miss rate: 一级缓存指令未命中率 L2i miss rate: 二级缓存指令未命中率 D refs: 总数据操作数(读+写) D1 misses :一级缓存数据未命中次数 L2d misses:二级缓存数据未命中数 D1 miss rate: 一级缓存数据未命中率 L2d miss rate:二级缓存数据未命中率 L2 refs : I1 misses + D1 misses L2 misses : L2i misses + L2d misses L2 miss rate: L2 misses / I refs+D refs
Cachegrind:
提供详尽的profiling信息。它不光对指令、内存访问进行计数,更能 针对每条指令、每行源代码、每个函数和每个程序统计cache的不命 中次数。cache对目前系统的性能有决定性的影响。这些信息可以指 导我们优化程序性能
产生2个输出:
1. 统计信息 2. 详细信息文件,文件名为cachegrind.out.PID
Memcheck Cachegrind Callgrind Helgrind Massif
安装
• 官方网站:/ • 下载链接:/downloads/valgrind3.6.0.tar.bz2
• 安装步骤:
bzip2 -d valgrind-3.6.0.tar.bz2 tar -xvf valgrind-3.6.0.tar cd valgrind-3.6.0 修改配置请参考备注 ./configure & make & make install,
192.168.133.131 -p 20001 &
• 2. 执行正常的服务请求
• 3. 打开新的终端,执行 pkill memcheck
• 4. 返回原有终端,查看daemon.log
Cachegrind缓存检查
• 命令:
valgrind --tool=cachegrind ./memcheckTest
Massif堆栈分析
• 命令: valgrind --tool=massif ./txt2db -f 11.txt -d aa.db • 堆栈分析器,它能测量程序在堆栈中使用了多少内存,告 诉我们堆块,堆管理块和栈的大小。Massif能帮助我们减 少内存的使用 • 输出文件:massif.<pid>.ps massif. <pid>.txt
• 数据:
• 二级缓存:
cachegrind.out 查看
• 命令:
cg_annotate --sort=Dr --threshold=100 cachegrind.out.6393
• • • • • • • • • • • • • • • • -------------------------------------------------------------------------------I1 cache: 32768 B, 64 B, 8-way associative 总缓存大小,行的大小,每组包含的行数 D1 cache: 32768 B, 64 B, 8-way associative L2 cache: 2097152 B, 64 B, 8-way associative ………………….. -------------------------------------------------------------------------------- I : 指令 r:读 1:一级缓存 m:未命中 Ir I1mr I2mr Dr D1mr D2mr Dw D1mw D2mw D : 数据 w:写 2:二级缓存 -------------------------------------------------------------------------------1,835,635 1,390 1,349 566,433 13,039 4,502 171,223 966 581 PROGRAM TOTALS -------------------------------------------------------------------------------Ir I1mr I2mr Dr D1mr D2mr Dw D1mw D2mw file:function -------------------------------------------------------------------------------596,785 9 9 94,112 1,143 589 31,455 3 2 ???:_dl_lookup_symbol_x 540,656 12 12 218,986 5,600 1,282 69,968 13 3 ???:do_lookup_x 235,653 2 2 85,261 2,457 1,128 0 0 0 ???:strcmp 227,933 55 54 86,496 2,292 903 32,893 520 240 ???:_dl_relocate_object
循环优化前
循环优化后
ห้องสมุดไป่ตู้allgrind 函数调用分析
• 命令:
valgrind --tool=callgrind ./txt2db -f 11.txt -d aa.db
• 和gprof类似的分析工具,它对程序的运行观察细 致入微,能帮我们建立函数调用关系图,发现很 多隐藏的函数调用及消耗,对我们优化程序有非 常好的指导作用 • 输出文件 callgrind.out.<pid> • 被分析的程序编译时要 加-g ,建议-o2
Memcheck:
可以用来寻找c/c++程序中内存管理的错误。 很多隐藏很深的bug是内存操作问题。在Memcheck面前都无处遁形 它可以检查出下列几种错误: 1. 使用已经释放的内存 2. 内存块越界 3. 使用未初始化的变量 4. 内存泄漏(申请了未释放) 5. 同一个内存块释放多次 6. 栈内错误无法检查
callgrind.out查看
• 命令:
callgrind_annotate --threshold=100 --auto=yes --tree=both callgrind.out.7009
Helgrind多线程分析器
• 命令: valgrind --tool=helgrind ./pthreadTest • 主要用来检查多线程程序中出现的竞争问题。Helgrind寻 找内存中被多个线程访问,而又没有一贯加锁的区域,这 些区域往往是线程之间失去同步的地方,而且会导致难以 发掘的错误。Helgrind实现了名为“Eraser”的竞争检测算 法,并做了进一步改进,减少了报告错误的次数。
检查daemon进程
• 1. valgrind -q --log-file=daemon.log --trace-children=yes --leak-check=full --tool=memcheck /home/liminch/ll2/DSserver/DSserver -c 5 -h
相关文档
最新文档