求5000字英语作文

作者&投稿:芷洋 (若有异议请与网页底部的电邮联系)
求一篇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有关的方式可以包括进去。另外,更为复杂的方式可以用简单的方式在软件中合成。再次强调,这种设计特点简化了指令系统和控制器。
最后一个共同特性是采用简单的指令格式。一般来讲,只使用了一种或少数几种格式。指令长度是固定的并按字的边界调整。字段的位置,特别是操作码的位置是固定的。这种设计有很多优点,使用固定字段,操作码译码和寄存器操作数访问可同时进行。简化的格式简化了控制器;因为是按字长单位来读取的,所以,取指令也得到优化。这也表明一条指令不会跨页。

March 30,2010 morning,the coastal city in an office building on fire,firefighters immediately rushed to,but because of the strong wind,the fire lasted more than two hours,before it was put out at 4:20.This three storey building was burned,the nearby post office and theatre also damaged.Two women died,many people were injured.So far,the cause of the fire is not yet clear.

《功夫熊猫》(《Kung Fu Panda》)的:
<1>
Funny!
I see this movie lastweek,

So terrfic,this film make me loving Kung Fu!

My liitle sister love the panda very much ,She ask me which kind annimal of Panda?

I told her its one of the cutiest animal in the world ,it only lives in China.

In this movie, Panda learns how to improve his level of Kung fu,many scence show that this cartoon is so funny,

You can see how things goes on with laugh,

I recommend this film to you.!
<2>

The film stars a panda named Po (voice of Jack Black), who is so fat he can barely get out of bed. He works for his father, Mr. Ping (James Hong) in a noodle shop, which features Ping's legendary Secret Ingredient. How Ping, apparently a stork or other billed member of the avian family, fathered a panda is a mystery, not least to Po, but then the movie is filled with a wide variety of creatures who don't much seem to notice their differences.

They live in the beautiful Valley of Peace with an ancient temple towering overhead, up zillions of steps, which the pudgy Po can barely climb. But climb them he does, dragging a noodle wagon, because all the people of the valley have gathered up there to witness the choosing of the Dragon Warrior, who will engage the dreaded Tai Lung (Ian McShane) in kung-fu combat. Five contenders have been selected, the "Furious Five": Monkey (Jackie Chan), Tigress (Angelina Jolie), Mantis (Seth Rogen), Viper (Lucy Liu) and Crane (David Cross). Tigress looks like she might be able to do some serious damage, but the others are less than impressive. Mantis in particular seems to weigh about an ounce, tops. All five have been trained (for nearly forever, I gather) by the wise Shifu, who with Dustin Hoffman's voice is one of the more dimensional characters in a story that doesn't give the others a lot of depth. Anyway, it's up to the temple master Oogway (Randall Duk Kim), an ancient turtle, to make the final selection, and he chooses -- yes, he chooses the hapless and pudgy Po.

The story then becomes essentially a series of action sequences, somewhat undermined by the fact that the combatants seem unable to be hurt, even if they fall from dizzying heights and crack stones open with their heads. There's an extended combat with Tai Lung on a disintegrating suspension bridge (haven't we seen that before?), hand-to-hand-to-tail combat with Po and Tai Lung, and upstaging everything, an energetic competition over a single dumpling.

"Kung Fu Panda" is not one of the great recent animated films. The story is way too predictable, and truth to tell, Po himself didn't overwhelm me with his charisma. But it's elegantly drawn, the action sequences are packed with energy, and it's short enough that older viewers will be forgiving. For the kids, of course, all this stuff is much of a muchness, and here they go again.

电影《卢旺达饭店》
Hotel Rwanda ---- a story of an African Schinderler
Hotel Rwanda is a film about a man. It was based on a real story of a man who saved 1268 people’s lives in a madness genocidal, which happened in Rwanda, 1994. The film was directed by Terry George, 2004. The main actor Don Cheadle is not handsome but just an ordinary man. You probably will even not recognize him when you happen to meet him on the street. He acted a hero based on a true story, a man who was as simple as he is, Paul Rusesabagina. Paul is a hero, a real man, while a hero and a real man doesn’t always need to be handsome or attractive in the appearance. There are two nations in Rwanda, hutu and tutsi. Paul is a hutu manager working for a 4 stars hotel on town. The hutu army planed a genocidal to clear out all the tutsi people in ruwanda. The tutsi people were suffering a madness blood bath. Over 800,000 people had been killed within 100 days. Paul has a tutsi wife, in order to protect his wife, children and other tutsis; he took them to hide in the hotel Rwanda. There are many white people from all over the world lived in this hotel so the hotel is the safest place in Rwanda to hide. There are 80 UN soldiers in Rwanda but only 4 guarded in the hotel and all of them are not allowed to shot. If we say that Paul just wanted to save his wife at the beginning, after recognized that there is no one would come to help the tutsis, Paul throw himself into the breach. He bribed the hutu general by wine and gold, used out every coin of his to purchase the refugees’ lives, ten, a hundred, 2 hundreds, 3 hundreds… more and more tutsi refugees flee to the hotel wishing to survive. To them, Paul is an angel who keeps a hope for those hopeless people in the calamity. His goodness his mercy is the key to be alive.
The hotel Rwanda is a dramatically and war film, ingeniously, there was almost no lens for slaughtering; however, the threatener of death was full filling with the whole movie. One of the tutsi asked Paul,
“Why they are so truculence?”
“ Hatred? Insanity? … I don’t know.”
The event is a humanitarianism disaster and Paul needs no reason to save the lives. When the world closed its eyes, he opened his arms. Facing a madness calamity and crazy crowds, the individual’s power is far from enough. However, Paul saved more than 1000 people’s lives. Paul Rusesabagina is a hero, a real man, an African Schinderler.


怎样学好英语?
大三的时候,我翘课回家一个月,每天6个小时背托福词汇,把所有不会的词抄一遍,然后一个一个的过,如果2秒钟反应不出来单词的意思,就视为fail,然后重来。这样的时间表持续了1个月,托福分数上涨25%。在港大念书的时候,教授每天要留将近5000字的阅读作业。我读得慢,所以只能一个个查,一遍遍分析...

文科生看过来,自主招生到底认可哪些含金量高的文科
比赛分初赛、复赛。初赛沿用一般文学刊物征文的形式,不命题、不限定题材、体裁,字数5000字以下,不曾在公开刊物发表。初赛优胜者参加复赛;复赛设立考场举行。初赛决出入围奖,入围者来上海参加复赛,由两项分数综合得出最后一二等奖及入围奖名单。2.创新作文 1、竞赛时间:每年11月—次年3月为初赛,...

中山市高中课本问题
英语 词汇量非常重要 !!要多读多记,经常复习。英语作文一开始学会难,建议背范文。一开始背会好辛苦,不过每日坚持背一篇,背15篇不同类的之后(要背到好似初中古诗背诵甘,隔长时间还可以随意记起程度),大概就可以非常强了,前提是词汇量至少3000.当词汇量超过5000时就算高中高手了。词汇量不是...

中国校园文学获奖作品自主招生有用吗?
(这三类文学比赛奖项是参加自主招生认可的)十.新概念作文大赛 1.竞赛时间:每年4月开始启动。2.竞赛方式:个人参赛,投稿评定,设一二三等奖;3.竞赛内容:以征文形式征稿,不限内容、题材、体裁,字数5000字以下。4.竞赛特点:分A\/B\/C三组,A组为高二、高三学生。B组为高一和初中生;C组为学生...

乱扔垃圾不文明的作文?
【乱扔垃圾不文明的作文(精选18篇)】相关文章:乱扔垃圾07-13不要乱扔垃圾08-19乱扔垃圾学生检讨书11-25关于不要乱扔垃圾的初一英语作文09-14乱扔垃圾学生检讨书18篇03-02乱扔垃圾实可恨,莫为捡起而害羞作文11-16乱扔垃圾学生检讨书范文六篇02-04乱扔垃圾学生检讨书范文6篇01-21不文明行为作文(精选15篇)12-21...

数独比赛对大学自主招生有用吗
2016年单招认可的各类竞赛奖项挺多的,不过各个高校要求也会稍有不同。一般像数学奥林匹克CMO、新概念作文大赛等省级以上的竞赛都是可以的。毕业证国家是承认的,单招逐渐成为了大学招录人的的一种主流方式。所以你不必担心这个问题~~

《走出自我小天地》作文700字,急!
求写一篇英语作文作参考!急! Saint plaza (Saint Square) is a good place for recreation. Here the day is halcyon, evening but is busy, many people...急5000字检讨 关于带违禁物品 检查人 XXX 200X年XX月XX日 二、(开头可乱遍一下事情的经过之类的语言)然后你抄吧,只要不嫌累,或者加工一下也好 下...

MBA应该怎样复习
一、英语:注重阅读理解 在MBA联考的冲刺阶段,记忆单词需要同时学习和记忆。以3000字为基础,力争突破5000字。同时需要加强完形填空、写作、翻译,多做真题,提高做题的技巧和水平。提高阅读能力是这个阶段的重点。每周精读两到三篇文章,或者每天泛读一到两篇文章。在最后半个月,最好每天做4篇阅读理解,...

5000字革命红书读后感
想起自己以前写英语作文,花了不少时间却只得低分,便泄气了;工作中遇到不顺心的事或小挫折,便想到放弃。没有对学习、工作完全充满热情的我易被摧垮,总找借口说自己是个女孩。可如今,在红岩英雄的光辉形象前,我明白了:越是在铺满荆棘的路上,就越需要我们去开拓;越是困难的时候,就越需要坚定...

高中生活的时候做过的最疯狂的事情是什么?
三年高中中我做过最疯狂的事就是带手机去学校玩。因为在那时候,我们学校是明文禁止学生带手机来学校的,要是带手机来了,一定要交给班主任保管,周日下午才能还给学生。如果被抓到玩手机,第一次记大过处分,然后扣留手机放回家反省七天,毕业才能归还手机或者父母签字保证不会再有下次,如果下次再被抓玩...

上高县18050537130: 求一篇5000字左右的英文文章“与单片机和开关电源有关的”有中文对照更好 -
仉茜逸林:[答案] 告诉你一个网站吧!人人英语网,里面有...把分给我吧...我在文库下资料没分,..

上高县18050537130: 求5000字英语作文 -
仉茜逸林: 《功夫熊猫》(《Kung Fu Panda》)的: <1> Funny! I see this movie lastweek, So terrfic,this film make me loving Kung Fu! My liitle sister love the panda very much ,She ask me which kind annimal of Panda? I told her its one of the cutiest animal ...

上高县18050537130: 求一篇英语作文,写对这个世界的看法,要求500字 -
仉茜逸林:[答案] The hypocrisy of the world,the hypocrisy of the people,this is my view of the world! What time do not know from,feel good in this world of hypocrisy,I sincerely treat each person,each person as his friend,to help me when I have to do everything in one's ...

上高县18050537130: 求一篇听音乐会感受的英文作文需要5000多个字 -
仉茜逸林: 上理想的翅膀,让心随音乐一起飞翔 ——听音乐写作文 高原 一、高山流水觅知音(导入)(播放课件一《高山流水》音画)同学们,大家现在听到的是中国十大古典名曲之一《高山流水》,这首古筝曲还演绎了一段非常感人的故事.相传在战...

上高县18050537130: 我想找一篇大约5000个字左右的英语文章做翻译,要求是没有被翻译过的,有什么好的推荐. -
仉茜逸林: Snow Flower and the Secret Fan 你可以试试这本

上高县18050537130: 求一篇自传英语作文 字越多越好 -
仉茜逸林:[答案] Autobiographer-自传 My name is Cheng Gong. I was born in Chongqing on Feb. 14, 1980. My father is a worker in a facto, ... I owe my knowledge to my teacher Miss Lin who made me study hard, especially in English. During the summer vacation, she ...

上高县18050537130: 我的理想生活(英文作文)求一篇英文作文 我的理想生活 My ideal life 150字左右, -
仉茜逸林:[答案] My Ideal Life I have ever dreamed of my ideal life many times,in the night or day time.They are so perfect that I even doubt if they could come true one day. In the ideal life,I am going to have a nice job,passionate and challenging.I would meet customers ...

上高县18050537130: 求一个文章,英语的,5000单词以上的,故事性强的 -
仉茜逸林: after a long of work,i will sure go outside for a trip with my friends during the ten-day holiday.Then the point is----where to visit? considering the cold weather and the beautiful scenery,the first-line choice is of course Korea,which locates near ...

上高县18050537130: 急求一篇5000字左右机械方面的英文文章 带汉语翻译的! -
仉茜逸林: 众所周知,在今天英语是非常重要的,在世界上任何地方都有使用,已经在因特网上和为国际贸易中成为最普通的语言.如果我们能说好英语,我们将有机会成功,因为越来越多的人去注意它,去了解英语的人物在一个高度上增加的速度 但是为...

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