程序崩溃 分析工具_程序分析工具| 软件工程

程序崩溃 分析工具

A program analysis tool implies an automatic tool that takes the source code or the executable code of a program as information and produces reports with respect to a few significant attributes of the program, for example, its size, multifaceted nature, sufficiency of remarking, adherence to programming gauges, and so on.

程序分析工具表示一种自动工具,该工具将程序的源代码或可执行代码作为信息,并生成有关程序的一些重要属性的报告,例如,程序的大小,多方面的性质,备注的充分性,遵循性编程仪表,等等。

We can order these into two general classes of program investigation devices,

我们可以将它们分为两大类程序调查设备,

  1. Static program analysis tools

    静态程序分析工具

  2. Dynamic program analysis tools

    动态程序分析工具

1)静态程序分析工具 (1) Static program analysis tools)

It is a program analysis tool as it surveys and registers different attributes of a software product without executing it. Normally, static analysis tools break down a few basic portrayals of a program to land at certain diagnostic ends, for example that some structural properties hold.

它是一种程序分析工具,它可以在不执行软件产品的情况下勘测和注册软件产品的不同属性。 通常,静态分析工具会分解程序的一些基本描述,以便在某些诊断端着陆,例如,保留某些结构属性。

The basic properties that are normally categorized are,

通常分类的基本属性是

  • The coding standards are met or not?

    是否符合编码标准?

  • Certain programming mistakes, for example, uninitialized factors and unmatched among actual and formal parameters, variables that are announced however never utilized are likewise checked.

    同样会检查某些编程错误,例如未初始化的因子以及实际参数和形式参数之间不匹配,已声明但从未使用的变量。

Code walkthrough and Code inspection may be considered as static analysis methods. In any case, the term static program analysis is utilized to signify automatic examination tools. In this way, a compiler can be viewed as a static program analysis tool.

代码演练和代码检查可以视为静态分析方法。 在任何情况下,术语静态程序分析都用于表示自动检查工具。 这样,可以将编译器视为静态程序分析工具。

2)动态程序分析工具 (2) Dynamic program analysis tools)

Dynamic program analysis strategies require the program to be executed and its genuine conduct recorded. A powerful analyzer for the most part instruments the code (for example includes extra proclamations in the source code to gather program execution follows). The instrumented code when executed enables us to record the conduct of the product for various experiments.

动态程序分析策略要求执行程序并记录其真实行为。 功能强大的分析器大部分用于检测代码(例如,在源代码中包括额外的声明,以收集随后的程序执行信息)。 被执行的检测代码使我们能够记录产品在各种实验中的行为。

As soon as the software is tested the conduct is recorded, the dynamic analysis tool carries out a dynamic analysis and produces reports which portray the basic inclusion that has been accomplished by the total test suite for the program. For instance, the post execution dynamic examination report may give information on degree explanation, branch and way inclusion accomplished.

一旦对软件进行了测试,就记录了行为,动态分析工具就会进行动态分析并生成报告,这些报告描绘了该程序的总测试套件所完成的基本内容。 例如,执行后动态检查报告可以提供有关程度说明,分支机构和完成方式的信息。

Ordinarily the dynamic analysis results are accounted for as a histogram or a pie outline to portray the structural inclusion accomplished for various modules of the program. The yield of a dynamic analysis tool can be put away and printed effectively and gives proof that exhaustive testing has been done. The dynamic analysis results the degree of testing performed in white-box mode. On the off chance that the testing inclusion isn't palatable more testing can be planned and added to the test suite. Further, dynamic analysis results can kill excess experiments from the test suite.

通常,动态分析结果以直方图或圆形轮廓表示,以描绘针对程序的各个模块完成的结构包含。 动态分析工具的产量可以有效地存放和打印,并证明已经进行了详尽的测试。 动态分析得出在白盒模式下执行的测试程度。 如果测试包含的内容不是很好,则可以计划更多测试并将其添加到测试套件中。 此外,动态分析结果可能会杀死测试套件中的多余实验。

翻译自: https://www.includehelp.com/basics/program-analysis-tools-software-engineering.aspx

程序崩溃 分析工具

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/379073.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

28335接两个spi设备_IIC和SPI如此流行,谁才是嵌入式工程师的必备工具?

IICvs SPI现今,在低端数字通信应用领域,我们随处可见 IIC (Inter-Integrated Circuit) 和 SPI (Serial Peripheral Interface)的身影。原因是这两种通信协议非常适合近距离低速芯片间通信。Philips(for IIC)和 Motorola(for SPI) 出于不同背景和市场需求…

线性表15|魔术师发牌问题和拉丁方阵 - 数据结构和算法20

线性表15 : 魔术师发牌问题和拉丁方阵 让编程改变世界 Change the world by program 题外话 今天小甲鱼看到到微博有朋友在问,这个《数据结构和算法》系列课程有木有JAVA版本的? 因为这个问题之前也有一些朋友问过,所以咱在这里统一说下哈…

[ZT]Three ways to tell if a .NET Assembly is Strongly Named (or has Strong Name)

Here are several convenient ways to tell whether a .NET assembly is strongly named. (English language note: I assume the form “strongly named” is preferred over “strong named” since that’s the form used in the output of the sn.exe tool shown immediat…

最佳页面置换算法

在一个请求分页系统中,采用最佳页面置换算法时,假如一个作业的页面走向为4、3、2、1、4、3、5、4、3、2、1、5,当分配给该作业的物理块数M分别为3和4时,试计算在访问过程中所发生的缺页次数和缺页率。请给出分析过程。 解析&…

网络名称 转换 网络地址_网络地址转换| 计算机网络

网络名称 转换 网络地址At the time of classful addressing, the number of household users and small businesses that want to use the Internet kept increasing. In the beginning, a user was connected to the Internet with a dial-up line, for a specific period of…

rstudio 修改代码间距_第一章 R和RStudio

R与RStudioR是一种统计学编程语言,在科学计算领域非常流行。它是由Ross Ihaka和Robert Gentleman开发的,是 "S "编程语言的开源实现。R也是使用这种语言进行统计计算的软件的名字。它有一个庞大的在线支持社区和专门的软件包,可以为…

ubuntu下最稳定的QQ

一、安装好 Wine 1.2(1.2 版安装好就支持中文界面的了) 当然得有WINE 了 当然我的有 如果没有可以如下方法得到: 第一种方法:如果你已经安装过 Wine 的老版本,那么只要添加 Wine 1.2 的软件源,然后去新立得…

字体Times New Roman

Windows系统中的字体是Monotype公司为微软公司制作的Times New Roman PS(TrueType字体),视窗系统从3.1版本开始就一直附带这个字体。而在苹果电脑公司的麦金塔系统中使用的是Linotype公司的 Times Roman (在Macintosh系统中直接简称为‘Times…

最近最久未使用页面置换算法

在一个请求分页系统中,采用最近最久未使用页面置换算法时,假如一个作业的页面走向为4、3、2、1、4、3、5、4、3、2、1、5,当分配给该作业的物理块数M分别为3和4时,试计算在访问过程中所发生的缺页次数和缺页率。请给出分析过程。 …

ffplay的数据结构分析

《ffplay分析(从启动到读取线程的操作)》 《ffplay分析(视频解码线程的操作)》 《ffplay分析(音频解码线程的操作)》 《ffplay 分析(音频从Frame(解码后)队列取数据到SDL输出)》 《f…

tolowercase_Java String toLowerCase()方法与示例

tolowercase字符串toLowerCase()方法 (String toLowerCase() Method) toLowerCase() method is a String class method, it is used to convert given string into the lowercase. toLowerCase()方法是String类方法,用于将给定的字符串转换为小写。 Syntax: 句法&a…

python web 服务器实时监控 websocket_python websocket网页实时显示远程服务器日志信息...

功能:用websocket技术,在运维工具的浏览器上实时显示远程服务器上的日志信息一般我们在运维工具部署环境的时候,需要实时展现部署过程中的信息,或者在浏览器中实时显示程序日志给开发人员看。你还在用ajax每隔段时间去获取服务器日…

磁盘调度算法

1,假设磁头当前位于第105道,正在向磁道序号增加的方向移动,现有一个磁道访问请求序列为:35,45,12,68,100,180,170,195,试用先来先服务…

C# Using用法三则

(1)引用命名空间 using作为引入命名空间指令的用法准则为: using Namespace; 在.NET程序中,最多见的代码莫过于在程序文件的开头引入System命名空间,其原由在于System命名空间中封装了许多最基本最常用的操作&#xff…

iOS开发 工程

一直没正儿八经的写过技术文章。今日开个小窗,准备写点东西。。。完了 1、传统的MVC结构需要至少M、V、C三个模块,在实际开发中往往需要添加额外的模块,添加的模块当然也大体上属于这三个模块之内。以下为较为常用的子模块。 (1&a…

C++11 std::shared_ptr的std::move()移动语义底层分析

std::shared_ptr的std::move()移动语义底层分析 执行std::move()之前: 执行std::move()之后: 结论:一个浅拷贝 sizeof(std::shared_ptr) 8字节 pss1 : 0x0028fea8 pss2 : 0x0028fea0 (栈是逆增长的) 观察执行std::m…

一个使用numpy.ones()的矩阵| 使用Python的线性代数

Ones Matrix - When all the entries of a matrix are one, then it is called as ones matrix. It may be of any dimension (MxN). 一个矩阵 -当矩阵的所有条目均为1时,则称为一个矩阵。 它可以是任何尺寸( MxN )。 Properties: 特性: The determina…

python去掉字符串最外侧的引号_疯狂Python讲义第二章读书笔记

本章讲解变量和简单类型2.1 从注释讲起单行注释使用#,#后面的代码被注释掉不会运行,如:# print(123) 注释掉后123不会输出。多行注释使用""" """,三个双引号,双引号中的内容注释掉&…

Xpath[转]

Xpath[转] XPath 是一门在 XML 文档中查找信息的语言。XPath 可用来在 XML 文档中对元素和属性进行遍历。 XPath 是 W3C XSLT 标准的主要元素,并且 XQuery 和 XPointer 同时被构建于 XPath 表达之上。 因此,对 XPath 的理解是很多高级 XML 应用的基础。 …