计算机中央处理器cpu_中央处理器(CPU)| 计算机科学组织

计算机中央处理器cpu

中央处理器(CPU) (Central Processing Unit (CPU))

  • The CPU is the brain of the computer system. It works as an administrator of a system.

    CPU是计算机系统的大脑。 它以系统管理员的身份工作。

  • All the operations within the system are supervised and controlled by the CPU. It interprets and coordinates the instructions.

    系统内的所有操作均由CPU监控。 它解释和协调指令。

  • The data and the instructions are temporarily stored in its memory unit. After performing operations, the result of operations can be stored in this memory unit.

    数据和指令临时存储在其存储单元中。 执行操作后,操作结果可以存储在此存储单元中。

  • CPU




  • The results of the operations are sent towards the output unit for the user.

    操作结果将发送给用户的输出单元。

  • Thus, the CPU controls all internal and external devices, perform arithmetic and logical operations, controls memory usage and control the sequence of operations.

    因此,CPU控制所有内部和外部设备,执行算术和逻辑运算,控制内存使用并控制运算顺序。

  • For performing all these operations, the CPU has three subunits:

    为了执行所有这些操作,CPU具有三个子单元:

    • Arithmetic and logic unit (ALU)
    • Control unit
    • Memory unit (CPU registers)

算术和逻辑单元(ALU) (Arithmetic and Logic Unit (ALU))

  • Arithmetic and logic unit is the subunit of the central processing unit as it is given above.

    如上所述,算术和逻辑单元是中央处理单元的子单元。

  • It performs arithmetic operations like addition, subtraction, and logic operations like OR, AND, invert, exclusive – OR on binary words. The data stored in the memory unit is transferred to ALU. The ALU performs the operations that are the data is processed and the result is stored in an internal memory unit of the CPU. The result of a final operation is transferred from the memory unit to an output unit.

    它对二进制字执行算术运算(例如加法,减法)和逻辑运算(例如OR,AND,取反,异或)。 存储在存储单元中的数据将传输到ALU。 ALU执行以下操作:处理数据并将结果存储在CPU的内部存储单元中。 最终操作的结果从存储单元传输到输出单元。

  • Arithmetic and logic operations performed by ALU sets flags to represent certain conditions such as equal to condition, zero condition, greater than the condition and so on. These conditions are checked by program instructions to change the sequence of program executions.

    ALU执行的算术和逻辑运算设置标志来表示某些条件,例如等于条件,零条件,大于条件等。 这些条件由程序指令检查以更改程序执行的顺序。

控制单元 (Control Unit)

  • The control unit controls all the operations which internally take place within the CPU and also the operations of CPU related to input / output devices. The control unit directs the overall functioning of a computer system.

    控制单元控制在CPU内部进行的所有操作,以及与输入/输出设备有关的CPU的操作。 控制单元指导计算机系统的整体功能。

  • This unit also checks the correctness of sequence of operations. It fetches instructions in a program from the primary storage unit, interprets them and generates control signals to ensure correct execution of the program. The control signals generated by the control unit direct the overall functioning of the other units of the computer.

    本机还检查操作顺序的正确性。 它从主存储单元中获取程序中的指令,对其进行解释并生成控制信号以确保程序正确执行。 由控制单元产生的控制信号指导计算机其他单元的整体功能。

CPU寄存器 (CPU Registers)

  • A register is a group of flip-flops which can be used to store a word. It is a high-speed temporary storage space for holding data, addresses, and instructions during processing the instructions. Registers are not referenced by their addresses, however, they are directly accessed.

    寄存器是一组触发器,可用于存储一个字。 它是一个高速临时存储空间,用于在处理指令期间保存数据,地址和指令。 寄存器不由其地址引用,但是可以直接访问它们。

  • To perform execution of the instructions, the processor contains a number of registers used for temporary storage of data and some special function registers.

    为了执行指令,处理器包含许多用于临时存储数据的寄存器和一些特殊功能寄存器。

  • The special function registers include Program Counter (PC), Instruction Register (IR), Memory Address Register (MAR), and Memory Data Register (MDR).

    特殊功能寄存器包括程序计数器(PC),指令寄存器(IR),存储器地址寄存器(MAR)和存储器数据寄存器(MDR)。

CPU Registers in CSO

程序计数器(PC) (Program Counter (PC))

  • A program is a series of instruction stored in the memory. These instructions tell the CPU exactly how to get the desired result.

    程序是存储在存储器中的一系列指令。 这些指令准确地告诉CPU如何获得所需的结果。

  • It is important that these instructions must be executed in a proper order to get the correct result.

    必须按照正确的顺序执行这些指令,以获得正确的结果,这一点很重要。

  • The sequence of instructions executions is monitored by the program counter.

    指令执行的顺序由程序计数器监视。

  • It keeps track of which instruction is being executed and what the next instruction will be.

    它跟踪正在执行的指令以及下一条指令。

指令寄存器(IR) (Instruction Register (IR))

  • It is used to hold the instruction that is currently being executed.

    它用于保存当前正在执行的指令。

  • The contents of IR are available to the control unit, which generate the timing signals that control the various processing elements involved in executing the instruction.

    IR的内容可供控制单元使用,控制单元生成控制执行指令所涉及的各种处理元件的定时信号。

内存地址寄存器(MAR)和内存数据寄存器(MDR) (Memory Address Register (MAR) and Memory Data Register (MDR))

  • These registers are used to handle the data transfer between the main memory and the processor.

    这些寄存器用于处理主存储器和处理器之间的数据传输。

  • The MAR holds the address of the main memory to or from which the data is to be transferred.

    MAR保留要向其传输数据的主存储器的地址。

  • The MDR sometimes also called MBR (Memory Buffer Register) contains the data to be written into or read from the addressed word of the main memory.

    MDR有时也称为MBR(内存缓冲寄存器),包含要写入主存储器的寻址字中或从中读取的数据。

References:

参考文献:

  • Basic Operational Concepts

    基本操作概念

  • Instruction cycle

    指令周期

  • Basic Operational Concepts

    基本操作概念

翻译自: https://www.includehelp.com/cso/central-processing-unit.aspx

计算机中央处理器cpu

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

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

相关文章

计算机应用基础专2020春,计算机应用基础(专)(专,2020春)(20200831130023).pdf

计算机应用基础(专)(专, 2020 春)使用 " 格式刷”按钮,可以进行 ___________操作。选择一项:a. 复制文本的格式b. 删除文本c. 复制文本d. 保持文本你的回答正确正确答案是:复制文本的格式在 Word 的文档中插入复杂的数学公式…

computed set 自定义参数_深入理解vmodel之自定义组件用法

根据上一篇《深入理解 v-model 之表单用法》基本对 v-model 有了比较深的理解&#xff0c;接下来我们看看它如何在自定义组件中使用。首先&#xff0c;我们知道下面两个用法等价的&#xff1a;<input v-model"msg" /><input :value"msg" input&qu…

01json转字符串

/** * json转字符串声明 */ (NSString *)jsonToString:(NSDictionary *)dic; /** * json转字符串实现 */ (NSString *)jsonToString:(NSDictionary *)dic { if(!dic){ return nil; } NSData *jsonData [NSJSONSerialization dataWithJSONObject:dic options:NSJSONWriting…

AYUSH的完整形式是什么?

AYUSH&#xff1a;阿育吠陀&#xff0c;瑜伽和自然疗法&#xff0c;乌纳尼&#xff0c;悉达多和顺势疗法 (AYUSH: Ayurvedic, Yoga and Naturopathy, Unani, Siddha and Homeopathy) AYUSH is an abbreviation of Ayurvedic, Yoga and Naturopathy, Unani, Siddha, and Homeopa…

大班科学电子计算机,计算器教案

计算器的认识和简单应用教学内容&#xff1a;义务教育六年制小学第九册第二单元第42页。教学目标&#xff1a;1、通过学生自主探究&#xff0c;掌握计算器的使用方法&#xff0c;并能够用计算器进行简单的计算。2、借助计算器解决生活中的数学问题、探索数学规律&#xff0c;体…

arraylist能否接收强转类型_ArrayList 源码解析

点击上方"IT牧场"&#xff0c;选择"设为星标"技术干货每日送达&#xff01;前言 JDK源码解析系列文章&#xff0c;都是基于JDK8分析的&#xff0c;虽然JDK14已经出来&#xff0c;但是JDK8我还不会&#xff0c;我…类图 实现了RandomAccess接口&#xff0c;…

exit c+_C / C ++中的exit(0)vs exit(1)与示例

exit cexit() is a library function in C/C programming language, it is used to terminate the calling process (function) immediately i.e. we can say it is used for the normal program termination and also perform the several cleanup steps. exit()是C / C 编程语…

校园计算机网络系统,校园计算机网络系统

一、校园网的基本概念基本功能&#xff1a;数据交换、资源共享&#xff0c;这里所指的数据包括各种信息&#xff0c;基本组成和结构&#xff1a;基本网络由网络网络的分类&#xff1a;有多种分类方法&#xff0c;按规模可分为局域网、区域网、&127;广域网。局域网服务范围一…

mc有什么红石机器人_我的世界10月考试!来测测你的MC成绩吧~

考试规则&#xff1a;本次考试为闭卷考试&#xff0c;考生需要在30分钟内完成试卷。试卷总分为100分&#xff0c;其中包括单项选择题50分&#xff0c;多项选择题20分&#xff0c;判断题30分。考试内容包括《我的世界》手游1.11.0及以上版本在不添加任何模组的情况下的所有游戏内…

130、 Android OkHttp完全解析(转载)

完全解析&#xff1a;http://blog.csdn.net/lmj623565791/article/details/47911083 从原理角度解析http文件上传 http://blog.csdn.net/lmj623565791/article/details/23781773 https://github.com/hongyangAndroid/okhttputils

json转string示例_C.示例中的String.Copy()方法

json转string示例C&#xff03;String.Copy()方法 (C# String.Copy() Method) String.Copy() method is used to copy a string to new string object, it returns a new instance of String with the same value as given string. String.Copy()方法用于将字符串复制到新的字符…

自定义分页 html,MVC 自定义HtmlHelper帮助类型之分页

方法一&#xff1a;在项目中增加App_Code文件夹&#xff0c;新增一个MyHtmlper.cshtml视图文件写入代码&#xff1a;helper Pagger(int pageIndex, int pageCount){for (int i 1; i < pageCount; i){if (i ! pageIndex){(i)}else{i}}}新增一个HomeControllerpublic class H…

vue 对象继承_Vue2.0中组件的继承与扩展是什么

Vue2.0中组件的继承与扩展是什么发布时间&#xff1a;2020-12-07 14:04:09来源&#xff1a;亿速云阅读&#xff1a;100作者&#xff1a;小新小编给大家分享一下Vue2.0中组件的继承与扩展是什么&#xff0c;相信大部分人都还不怎么了解&#xff0c;因此分享这篇文章给大家参考一…

stack示例_C.示例中的Stack.Clone()方法

stack示例C&#xff03;Stack.Clone()方法 (C# Stack.Clone() method) Stack.Clone() method is used to create a shallow copy of the stack. Stack.Clone()方法用于创建堆栈的浅表副本。 Syntax: 句法&#xff1a; Object Stack.Clone();Parameters: None 参数&#xff1a…

简述计算机图形的图形应用主要有哪些,5计算机图形学考试简答题复习.doc

5计算机图形学考试简答题复习计算机图形学考试简答题复习1、简述计算机动画的概念&#xff0c;它经历了哪几个阶段的发展&#xff1f;(2分)计算机动画是指采用图形与图像的处理技术&#xff0c;借助于编程或动画制作软件生成一系列的景物画面&#xff0c;其中当前帧是前一帧的部…

在图片中选定任意凸多边形制作掩膜程序MATLAB

function S get_convex_S(C,vx,vy) %该函数实现的功能为指定图像中多边形的顶点&#xff0c;返回属于该凸多边形中的所有像素点 %xv&#xff0c;yv为顶点坐标按照顺时针或者逆时针。vx(1) xv(end); yv(1) yv(end) %输入的C是结构&#xff0c;vx vy是数组存的是顶点坐标。 %输…

js console 输出到文件_Node.js核心入门

正文核心模块是Node.js的心脏&#xff0c;主要是有一些精简高效的库组成(这方面和Python有很大的相似之处)&#xff0c;为Node.js提供了基础的API。主要内容包括&#xff1a;Node.js核心入门(一)全局对象常用工具事件机制Node.js核心入门(二)文件系统访问HTTP服务器与客户端全局…

scala 当前日期_如何在Scala中检查当前日期和时间?

scala 当前日期Scala is a general-purpose programming language, which is majorly used for data manipulation. It has libraries and support for almost all different utilities that are important. One of the important things that are required while programming …

计算机科学考试大纲,计算机科学与技术考试大纲.doc

计算机科学与技术考试大纲计算机科学与技术专业本专业的专业课程考试为“计算机软件基础”和“计算机硬件基础”两门课程的组合试卷&#xff0c;卷面总分200分&#xff0c;时间150分钟&#xff0c;考试方式为笔试。考试可携带计数器&#xff0c;但禁止携带文曲星、商务通等带有…

eclipse中项目内存溢出问题

2019独角兽企业重金招聘Python工程师标准>>> SpringBoot项目热启动Perm区内存溢出。 Failed to instantiate [org.springframework.orm.jpa.JpaVendorAdapter]: Factory method jpaVendorAdapter threw exception; nested exception is java.lang.OutOfMemoryErro…