计算机相关的英文文章

作者&投稿:郟钱 (若有异议请与网页底部的电邮联系)
求一篇3000-5000字的关于计算机的英文文章~

REDUCED INSTRUCTION
SET COMPUTERS Studies of the execution behavior of high-level language programs have provided guidance in designing a new type of processor architecture:the reduced instruction set computer(RISC).Assignment statements predominate,suggesting that the simple movement of data should be optimized.There are also many IF and LOOP instructions,which suggest that the underlying sequence control mechanism needs to be optimized to permit efficient pipelining.Studies of operand reference patterns suggest that it should be possible to enhance performance by keeping a moderate number of operands in registers.
These studies have motivated the key characteristics of RISC machines:(1)a limited instruction set with a fixed format.(2)a large number of registers or the use of a compiler that optimizes register usage,and(3)an emphasis on optimizing the instruction pipeline.
The simple instruction set of a RISC lends itself to efficient pipelining because there are fewer and more predictable operations performed per instruction.[1] A RISC instruction set architecture also lends itself to the delayed branch technique,in which branch instructions are rearranged with other instructions to improve pipeline efficiency.
Although RISC systems have been defined and designed in a variety of ways by different groups,the key elements shared by most designs are these:
.A large number of general-purpose registers,or the use of compiler technology to optimize register usage
.A limited and simple instruction set
.An emphasis on optimizing the instruction pipeline
Table 2-1 compares several RISC and non-RISC systems. 1.Instruction Execution Characteristics To understand the line of reasoning of the RISC advocates,we begin with a brief review of instruction execution characteristics.The aspects of computation of interest are as follows:
• Operations performed:These determine the functions to be performed by the processor and its interaction with memory.
• Operands used:The types of operands and the frequency of their use determine the memory organization for storing them and the addressing modes for accessing them.
• Execution sequencing:This determines the control and pipeline organization. 2.The Use of A Large Register File [2] The reason that register storage is indicated is that it is the fastest available storage device,faster than both main memory and cache.The register file is physically small,generally on the same chip as the ALU and control unit,and employs much shorter addresses than addresses for cache and memory.Thus,a strategy is needed that will allow the most frequently accessed operands to be kept in registers and to minimize register-memory operations.
Two basic approaches are possible,one based on software and the other on hardware.The software approach is to rely on the compiler to maximize register usage.The compiler will attempt to allocate registers to those variables that will be used the most in a given time period.This approach requires the use of sophisticated programanalysis algorithms.The hardware approach is simply to use more registers so that more variables can be held in registers for longer periods of time. 3.Characteristics of Reduced Instruction Set Architectures Although a variety of different approaches to reduced instruction set architecture have been taken,certain characteristics are common to all of them.These characteristics are listed in Table 2.1 and described here.
The first characteristic listed in Table 2.1 is that there is one machine instruction per machine cycle.A machine cycle is defined to be the time it takes to fetch two operands from registers,perform an ALU operation,and store the result in a register.Thus,RISC machine instructions should be no more complicated than,and execute about as fast as,microinxtructions on CISC machines.[3] With simple,one –cycle instructions,there is little or no need for microcode;the machine instructions can be hardwired[4].Such instructions should execute faster than comparable machine instructions on other machines,since it is not necessary to access a microprogram control store during instruction execution.
A second characteristic is that most operations should be register-to-register,with only simple LOAD and STORE operations accessing memory.This design feature simplifies the instruction set and therefore the control unit.For example,a RISC instruction set may include only one or two ADD instructions(e. g. ,integer add,add with carry);the VAX has 25 different ADD instructions.Another benefit is that such an architecture encourages the optimization of register use,so that frequently accessed operands remain in high-speed storage.
Returning to Table 2-1,a third characteristic is the use of simple addressing modes.Almost all instructions use simple register addressing.Several additional modes,such as displacement and PC-relative,may be included.Other,more complex modes can be synthesized in software from the simple ones.Again,this design feature simplifies the instruction set and the control unit.
A final common characteristic is the use of simple instruction formats.Generally,only one or a few formats are used.Instruction length is fixed and aligned on word boundaries.Field locations,especially the opcode,are fixed.This design feature has a number of benefits.With fixed fields,opcode decoding and register operand accessing can occur simultaneously.Simplified formats simplify the control unit.Instruction fetching is optimized since word-length units are fetched.This also means that a single instruction does not cross page boundaries. NOTES
[1] lend itself to适合于…
[2] register file寄存器组,作为数据或指令的临时存放处的一种多位寄存器组,有时称作栈。
[3] 此句为比较结构no more... than…,中间插入并列句将被比较对象隔开了。
[4] hardwired硬连线的,即机器指令是固化在硬件(芯片)上的。 KEYWORDS
instruction set 指令系统,指令集
reduced instruction set computer(RISC) 精简指令系统计算机
pipeline 流水线
operand 操作数
register 寄存器
compiler 编译器,编译程序
branch instruction 转移指令,分支指令
Complex Instruction Set Computer(CISC) 复杂指令系统计算机
superscalar 超级标量
register file 寄存器组,栈
machine cycle 机器周期
microinstruction 微指令
microcode 微代码,微指令
nncroprogram 微程序
addressing 编址,寻址 精简指令系统计算机(RISC) 对高级语言程序执行性能的研究已经为设计新型处理器体系结构-一精简指令系统计算机提供了指南。赋值语句占据的优势表明应对单纯的数据传送进行优化。还有很多IF和LOOP指令存在,需要优化基本的顺序控制机构,以使流水线作业高效率。操作数引用模式的研究表明,在多个寄存器中保存适当数量的操作数,可以提高性能。
这些研究已经形成了RISC机的一些关键特性:(1)有限的固定格式的指令集;(2)使用大量的寄存器或使用编译器优化寄存器应用;(3)重点优化指令流水线。
因为每条指令完成少数的且多为可预测的操作,RISC的简单指令系统适合高效流水线作业。RISC指令系统体系结构也适合于延迟转移技术,在这种技术中,随同其他指令重新安排转移指令以提高流水线效率。
虽然RISC系统已经由不同的(企业)集团以各种方式进行了定义和设计,但大多数设计所提出的关键元素还是共同的。
 用大量的通用寄存器(或使用编译器技术)来优化寄存器的使用;
 有限的简单指令系统;
 重点优化指令流水线作业。
表2-1比较了几种RISC和非RISC系统。
1.指令执行特性
为了解RISC倡导者们的推理思路,首先观察一下指令执行的一些特性。所要关心的计算特性如下所述。
 所完成的操作:这些操作决定了处理器要完成的功能和处理器与存储器的交互
 所用的操作数:操作数的类型和使用频度决定了存储操作数的存储机制和访问这些操作数的编址方式。
 执行顺序:决定了控制和流水线的机制
2.大寄存器组的应用
使用寄存器存储的理由在于它是可用的最快的存储器件,比主存储器和高速缓存都快。寄存器组实际很小,通常与算术逻辑部件和控制器放在同一芯片上,而且使用比高速缓存和内存储器短很多的地址。因而需要一种允许最频繁访问的操作数保存在寄存器中并使寄存器-存储器操作降至最少的策略。
有两种可以采用的基本方法,一种基于软件,一种基于硬件。软件方法靠编译程序最大限度使用寄存器,编译程序力图将给定时间周期内最常用的那些变量分配到这些寄存器中。这一方法要求使用复杂的程序分析算法。硬件方法就是简单地使用更多的寄存器,使更多的变量保存在寄存器中供长时间使用。
3.精简指令系统体系结构的特性
尽管精简指令系统结构的可用方法有多种,但对它们而言有一些特性是共同的。这些特性列在表2-1中,下面进行解释。
表2-1中列出的第一个特性是每个机器周期有一条机器指令。一个机器周期定义为,机器从寄存器组中取出两个操作数,完成一种算术逻辑部件运算并将结果存入一个寄存器中所用的时间。RISC机器指令应该不比CISC机上的微指令复杂,并且执行起来也很快。因为简单,单周期指令仅需少量或不需要微代码;机器指令可以是硬连线的。这样指令执行起来比其他机器的类似机器指令要快,因为在指令执行期间它不必访问微程序控制存储器。
第二个特性是,大多数操作应该是寄存器对寄存器的,仅有简单的取(LOAD)和存(STORE)操作访问存储器。这种设计特点简化了指令系统,因而也简化了控制器。例如,一个RISC指令系统可以只包括一两种加法(ADD)指令〔例如整数加,进位加〕;VAX机则有25种不同的加法指令。另一好处是这种体系结构促进了对寄存器使用的优化,使得频繁访问的操作数保存在高速存储器中。
从表2-1还可看出第三个特性是采用简单的编址方式。几乎所有指令都采用简单的寄存器编址。几种附加的方式,如移位和与PC有关的方式可以包括进去。另外,更为复杂的方式可以用简单的方式在软件中合成。再次强调,这种设计特点简化了指令系统和控制器。
最后一个共同特性是采用简单的指令格式。一般来讲,只使用了一种或少数几种格式。指令长度是固定的并按字的边界调整。字段的位置,特别是操作码的位置是固定的。这种设计有很多优点,使用固定字段,操作码译码和寄存器操作数访问可同时进行。简化的格式简化了控制器;因为是按字长单位来读取的,所以,取指令也得到优化。这也表明一条指令不会跨页。

(⁎⁍̴̛ᴗ⁍̴̛⁎)

The computer (computer) commonly known as the computer, is a kind of computing machines for electronic high speed calculation, numerical calculations can be performed, and can carry out the logic calculation, also has the memory function. Can be run in accordance with the procedures, automatic, high-speed processing of data in modern intelligent electronic devices. The composed of hardware system and software system, not install any software computer called the bare metal. Can be divided into super computer, industrial control computer, network computer, personal computer, the embedded computer five, advanced computer biological computer, photon computer, quantum computer.
The invention of the computer maker John von Neumann. The computer is in twentieth Century the most advanced science and technology inventions, has extremely important influence on the production of human activities and social activities, and with the rapid development of powerful vitality. And its application field is extended from the initial military scientific research applied to each field of the society, has formed a large scale computer industry, promote the technological progress worldwide, which triggered a profound social change, the computer has been in general schools, enterprises and institutions, into the homes of ordinary people, become an indispensable tool in the information society.
The application of the computer more and more popular in Chinese more and, after the reform and open policy, the number of computer users Chinese rising, improve the level of their application, especially the application fields of Internet, communication, multimedia, and achieved good results. From 1996 to 2009, the number of computer users from the original 6300000 increased to 67100000, the number of computers on the network is composed of 29000 original rose to 59400000. Internet users has reached 316000000, with 670000000 mobile users of wireless Internet, the mobile phone Internet users reached 117000000, for the first.Evolution of computing tools experienced from simple to complexIn different stages from low to highAn example ENIAC computer[1]
As fromQuipuIn knots to counting rodsAbacusCalculating ruleMechanicsComputer etc.They play their role in history in different historical periodsIt also inspired the development and design of electronic computer
1889America scientistsHerman, He LeliDeveloped the electric tabulating machine power basedThe calculation data is used to store
1930America scientistsVannevar BushBuild the world's first electronic analog computer
February 14, 1946ByUSAThe customization of the first electronic computer in the worldElectronic numerical integrator and computerENIAC Electronic Numerical And CalculatorIn USAUniversity of PennsylvaniaThe advent ofENIAC[2]Chinese nameErnie AkeIs USA Auberdine weapons test site in order to meet the need of calculating trajectory and developedThis computer uses 17840 electron tubeThe size of 80 x 8FootWeighing 28TTonsPower consumption is 170kWThe operation speed of 5000 times per second the addition operationThe cost is about 487000The dollarThe advent of ENIAC is of epoch-making significanceIndicates that the computer eraIn the next 60 yearsComputer technology is developing at an amazing speedThe performance price without any one technology than to increase by 6 orders of magnitude in 30 years[3]
The first generationElectronic digital machine19461958
HardwareAspectA logic element is used in vacuumElectron tubeThe main memory used mercury delay line Electronic digital computer
Cathode rayOscilloscope tube static memoryDrumMagnetic coreExternal memory is used in tapeThe software is used in machine languageAssembly languageApplication field toMilitaryAnd scientific calculation
Volume is largeHigh power consumptionPoor reliabilitySlow speedGeneral for thousands of times per second to tens of thousands of timesExpensive priceBut laid the foundation for the later development of computer
The second generationTransistor digital computer19581964
HardwareOperating systemThe high-level language andCompileThe programApplication field toScienceCalculation and transaction processingAnd began to enter the field of industrial controlVolume is shrinkingTo reduce energy consumptionTo improve the reliability ofOperationSpeedTo improve theThe general number of 100000 times per secondCan be as high as 3000000 timesPerformance than the first generation of computers has greatly improved
The third generationIntegrated circuit digital machine19641970
In terms of hardwareA logic element in theSmall-scaleIntegrated circuitMSISSIThe main memory is usedMagnetic coreSoftwareIn time-sharing operating system and structureLarge scale programming methodCharacteristic is fasterGeneral for millions to tens of millions of times per secondAnd reliability are improved obviouslyFurther price declinesProducts to the generalSeriation and standardizationApplication field into word processing andGraphicalThe field of image processing
The fourth generationLarge-scaleIntegrated circuitMachineSince 1970
HardwareAspectA logic element with large-scale and ultra large scale integrated circuitLSI and VLSIThe database management system softwareNetwork management system and object oriented languageIs characteristic of 1971 the world's first microprocessor in AmericaSilicon ValleyBe bornStartMicro computerIn the new eraFrom the scientific computing applicationsTransaction managementTooProgram controlBusiness graduallyFamily
Due to the development of integrated technologyThe semiconductor chipA higher degree of integrationEach chip can accommodate tens of thousands or even millions of transistorsAnd the arithmetic unit and controller are concentrated in one chipThus appeared the microprocessorAnd can use the microprocessor and large-scaleVery large scale integrated circuit assembly of micro computerIs a microcomputer or PC we often sayA microcomputer small volumeCheap priceEasy to useBut even more than the mainframe computers of the past has reached its functions and speedOn the other handThe use of massThe various logic chip manufacture of ultra large scale integrated circuitHas made the volume is not largeBut computing supercomputer speeds of up to one hundred million or even billions of timesOur country after the 1983 development of galactic Ⅰ one hundred million successful operations per second this giant machineAlso in 1993 to develop the galaxy II successful operations per second one billion general-purpose parallel computerThis period also produced a new generation of programming language and database management system and network software
The physical elementThe device changesNot onlyComputerThe host through the renewalOutside itEquipmentAlso in constantly changingFor exampleExternal memoryThe cathode ray initially display tube developmentMagnetic coreDrumAfter the development for the generalDiskAt present there are smallerLarger capacityRead fasterOptical discCDROM


关于机算机操作的英语作文七年级的
We build computer to solve problems.Early computer solved mathematical and engineering problems,and later computers emphasized information processing for business applications.T- oday,computers also control machines as diverse as automobile engines,robots,and microwave ovens. A computer system ...

英语高考满分作文(带翻译)
阅读下面的短文,然后按照要求写一篇150词左右的英语短文。Dear Ari, As you sleep in my arms, I'm amazed at how light you feel. I stare at your tiny body, so fragile that a sudden wind could lift you up into the air. I love this feeling of protecting you and dreaming of all I have ...

求机械专业的英文的文章翻译 《翻译软件的闪》
审议该议案涉及大会已导致发展一种更简单的手臂几何用于大会的申请,称为SCARA (选择地遵守自动机械臂)几何。虽然所有SCARA机器人具有相同的几何形状的名称SCARA没有几何基础。最大会行动涉及建设大会,把部分顶部的部分完成大会。阿SCARA手臂有两个转动关节水平面,使之能够达到的任何一点横向平面内的工作所...

求助 把下面一段话翻译成英文 急用 谢谢啦
Network attacks have become increasingly wide spread of the network security issues become increasingly serious. Network security issues from a wide range for various reasons. This article will effectively prevent the occurrence of network failures and the discovery of faults and maintenance o...

电子计算机与多媒体是个什么课文
英文名为“Loud speaker”,通过音频线连接到功率放大器,再通过晶体管把声音放大,输出到喇叭上,从而使喇叭发出电脑的声音。一般的电脑音箱可分为2、2.1 、3 .1、4、4.1、5.1、7.1这几种,音质也各有差异。打印机打印机英文名为“Printer”,通过它可以把电脑中的文件打印到纸上,它是重要的输出设备之一。在打印机...

电话,汽车,电视机,计算器,电脑的发明者(用英文回答)
Graham 美国 电视发明者The inventor of television:贝尔德,J.L. John Logie Baird (1888~1946) 英国工程师 计算器发明者The inventor of calculator :法国数学家帕斯卡B.Pascal,1642年发明了第一部机械计算器“Pascaline”电脑发明者The inventor of computer:冯·诺依曼 Von.Neumann 美国 ...

算机中的字符编码方式简述
32 - 126:为可见字符部分。但是 32 特殊一些,它是空格键的 ASCII 码(不可见)。127:Delete(删除键),作用与 08 相同。总而言之,从 0 - 127(7F:01111111) 的字符可以看作是最高位为 0 的英文 ASCII 字符。从 128(80:10000000) - 255(FF:11111111):这些字符的最高位为 1,...

一个英文文章的翻译,需要手译,比较专业
ANALYSISP ROCEDURE 。答: Basecase 。目的是介绍一个通用的程序来控制短路电流的电力系统,大型 首都圈用作为例。研究视野跨越十年2001至2010年。在需求高峰期预计在2005年是7500兆瓦。额定电压在传输和subtransmission各级这个电力系统四十零点○二三万, 85千伏。该模型用于数字模拟包括首都圈正在研究及...

求一篇英文文章,关于个人所得税方面的,要求8000字符(非8000单词)_百度...
求一篇英文文章,关于个人所得税方面的,要求8000字符(非8000单词) 其中外文是外国文章,并附上中文翻译。谢谢。重分酬谢。(最好百度很难搜到的)... 其中外文是外国文章,并附上中文翻译。谢谢。重分酬谢。(最好百度很难搜到的) 展开  我来答

机算机英文翻译!难
营救和恢复的计划来支持你的系统。你可以调整这个计划利用搜救选择从thingvantage开始menu.你要备份了吗?

屯昌县17029331913: 求一篇有关计算机专业的英文文章2000词左右即可 -
万翟马来: The computer is a wonderful machine. They are already widely used in industries and in universities. They are used in many ways. Computers can do many kinds of work. For example, computers can helps us do maths problems quickly. Some ...

屯昌县17029331913: 关于计算机的英语短文求一篇关于计算机的英语作文.100个单词左右.关于计算机方面的. -
万翟马来:[答案] 上面的是从哩搜的吧 小白 来看看哥给你写的 Computers are changing our life day by day. We can do many things on computers. For example, we can write articles, do office work and play games. But the most important usage of computers is ...

屯昌县17029331913: 有关电脑的英语作文 -
万翟马来:[答案] 电脑在20世纪60年代开始流行起来.omputers started to become popular with big companies in the 1960s.ComputerYou've probably known about computers your whole life. But computers have not really been around for very long. Computers started ...

屯昌县17029331913: 急求一篇关于计算机的英语文章,最好有翻译,谢谢
万翟马来: Her 10 years old birthday that day, her dad never came from underground. Under the pressure of the life, the niang took her got remarried. إShe first saw him, he was living -- he how so old so ugly? And her father than, like his old more than 10 years...

屯昌县17029331913: 关于计算机的英语作文计算机在我们的工作、生活中的作用越来越大,你知道计算机的起源与发展吗?请就计算机的发明时间(1946年)、大小、用途等方... -
万翟马来:[答案] With the development of the computer technology and the internet,we have got a new media to know the outside world.And our life is greatly changed with it.On the internet,you can get both the domestic...

屯昌县17029331913: 有关电脑的英语作文 -
万翟马来: My computer My father bought a computer as a birthday present for me last year. It becomes my best friend in my room. I'd like to play on the computer as soon as I get home. At weekends, I often play games on line with my friends. I've made a lot...

屯昌县17029331913: 急求关于对计算机的认识的英语文章 -
万翟马来: New technique of the computer networkAbstractThe 21 century is an ages of the information economy, being the computer network technique of representative techniques this ages, will be at very fast speed develop soon in continuously creatively...

屯昌县17029331913: 关于电脑的英语作文带翻译 -
万翟马来: 计算机发明者约翰·冯·诺依曼.计算机是20世纪最先进的科学技术发明之一,对人类的生产活动和社会活动产生了极其重要的影响,并以强大的生命力飞速发展.它的应用领域从最初的军事科研应用扩展到社会的各个领域,已形成了规模巨大...

屯昌县17029331913: 给几篇计算机英语相关文章
万翟马来: The java language The java language is a remarkable example of programming language evolution.Java builds on the familiar and useful features of C++ while removing its complex,dangerous,and sperfluous elements.The result is a language that is ...

本站内容来自于网友发表,不代表本站立场,仅表示其个人看法,不对其真实性、正确性、有效性作任何的担保
相关事宜请发邮件给我们
© 星空见康网