Characteristics of Some CISCs, RISCs, and Superscalar Processors

One of the most visible forms of evolution associated with computers is that of pro-
gramming languages. As the cost of hardware has dropped, the relative cost of soft-
ware has risen. Along with that, a chronic shortage of programmers has driven up
software costs in absolute terms. Thus, the major cost in the life cycle of a system is
software, not hardware. Adding to the cost, and to the inconvenience, is the element
of unreliability: it is common for programs, both system and application, to continue
to exhibit new bugs after years of operation.
The  response  from  researchers  and  industry  has  been  to  develop  ever  more
powerful  and  complex  high-level  programming  languages.  These  high-level  lan-
guages  (HLLs):  (1)  allow  the  programmer  to  express  algorithms  more  concisely,
(2) allow the compiler to take care of details that are not important in the program-
mer’s expression of algorithms, and (3) often support naturally the use of structured
programming and/or object-oriented design.
Alas,  this  solution  gave  rise  to  a  perceived  problem,  known  as  the  semantic
gap,  the  difference  between  the  operations  provided  in  HLLs  and  those  provided
in  computer  architecture.  Symptoms  of  this  gap  are  alleged  to  include  execution
inefficiency,  excessive  machine  program  size,  and  compiler  complexity.  Designers
responded with architectures intended to close this gap. Key features include large
instruction  sets,  dozens  of  addressing  modes,  and  various  HLL  statements  imple-
mented in hardware. An example of the latter is the CASE machine instruction on
the VAX. Such complex instruction sets are intended to

•  Ease the task of the compiler writer.
  •  Improve  execution  efficiency,  because  complex  sequences  of  operations  can
be implemented in microcode.
  •  Provide support for even more complex and sophisticated HLLs.
Meanwhile, a number of studies have been done over the years to determine
the  characteristics  and  patterns  of  execution  of  machine  instructions  generated
from HLL programs. The results of these studies inspired some researchers to look
for  a  different  approach:  namely,  to  make  the  architecture  that  supports  the  HLL
simpler, rather than more complex.

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  deter-
mine the memory organization for storing them and the addressing modes for
accessing them.
  •  Execution sequencing: This determines the control and pipeline organization.
In  the  remainder  of  this  section,  we  summarize  the  results  of  a  number  of
studies  of  high-level-language  programs.  All  of  the  results  are  based  on  dynamic
measurements. That is, measurements are collected by executing the program and
counting  the  number  of  times  some  feature  has  appeared  or  a  particular  property
has held true. In contrast, static measurements merely perform these counts on the
source text of a program. They give no useful information on performance, because
they are not weighted relative to the number of times each statement is executed.

INSTRUCTION EXECUTION CHARACTERISTICS的更多相关文章

  1. Next Instruction Access Intent Instruction

    Executing a Next Instruction Access Intent instruction by a computer. The processor obtains an acces ...

  2. Adaptively handling remote atomic execution based upon contention prediction

    In one embodiment, a method includes receiving an instruction for decoding in a processor core and d ...

  3. Method and apparatus for transitioning between instruction sets in a processor

    A data processor (104) is described. The data processor (104) is capable of decoding and executing a ...

  4. smaller programs should improve performance

    COMPUTER ORGANIZATION AND ARCHITECTURE DESIGNING FOR PERFORMANCE NINTH EDITION In this section, we l ...

  5. Notes of Principles of Parallel Programming - TODO

    0.1 TopicNotes of Lin C., Snyder L.. Principles of Parallel Programming. Beijing: China Machine Pres ...

  6. Low-overhead enhancement of reliability of journaled file system using solid state storage and de-duplication

    A mechanism is provided in a data processing system for reliable asynchronous solid-state device bas ...

  7. Optimizing subroutine calls based on architecture level of called subroutine

    A technique is provided for generating stubs. A processing circuit receives a call to a called funct ...

  8. Speculative store buffer

    A speculative store buffer is speculatively updated in response to speculative store memory operatio ...

  9. A multiprocessing system including an apparatus for optimizing spin-lock operations

    A multiprocessing system having a plurality of processing nodes interconnected by an interconnect ne ...

随机推荐

  1. 线段树(区间操作) POJ 3325 Help with Intervals

    题目传送门 题意:四种集合的操作,对应区间的01,问最后存在集合存在的区间. 分析:U T [l, r]填充1; I T [0, l), (r, N]填充0; D T [l, r]填充0; C T[0 ...

  2. 模拟 Codeforces Round #288 (Div. 2) A. Pasha and Pixels

    题目传送门 /* 模拟水题:给定n*m的空白方格,k次涂色,将(x,y)处的涂成黑色,判断第几次能形成2*2的黑色方格,若不能,输出0 很挫的判断四个方向是否OK */ #include <cs ...

  3. Android service介绍和启动方式

    1.Android service的作用: service通常是用来处理一些耗时操作,或后台执行不提供用户交互界面的操作,例如:下载.播放音乐. 2.Android service的生命周期: ser ...

  4. HDU3820 Golden Eggs(最小割)

    题目大概说给一个n*m的格子,每个格子放金蛋或银蛋都会得到不同的价值,当然也可以不放,不过如果存在相邻的两个格子都是金蛋会损失价值g,都是银则损失s.问能得到的最大价值. 有点像二者选一的最小割模型, ...

  5. BZOJ3425 : Poi2013 Polarization

    最小值肯定是把树看作二分图,此时答案为$n-1$. 最大值一定是选取重心为根,任意一个子树要么全部指向根,要么全部背离根,这样可以制造最大的星型图. 统计出每个子树的大小后做01背包,如果小于$\sq ...

  6. 【SGU】495. Kids and Prizes

    http://acm.sgu.ru/problem.php?contest=0&problem=495 题意:N个箱子M个人,初始N个箱子都有一个礼物,M个人依次等概率取一个箱子,如果有礼物则 ...

  7. Delphi中对BCD码的直接支持 (转)

    最近在Delphi下写软件,需要将数据转换为BCD码和将BCD码转换为其它数据类型,从网上搜索了一下,没有发现好的函数,于是就想自定义函数来完成BCD与其它格式的数据转换功能.但最终没有动手写,先查查 ...

  8. jQuery学习笔记(一):入门【转】

    由于工作的需要,发现JQuery是一个绕不开的东西,现在开始学习. 一.JQuery是什么 JQuery是什么?始终是萦绕在我心中的一个问题: 借鉴网上同学们的总结,可以从以下几个方面观察. 不使用J ...

  9. linux top 参数详解

    top命令是Linux下常用的性能分析工具,能够实时显示系统中各个进程的资源占用状况,类似于Windows的任务管理器.下面详细介绍它的使用方法. top - 01:06:48 up  1:22,   ...

  10. (转载)zeromq使用注意点滴

    zeromq使用注意点滴 1.关于介绍zeromq的就不说了,可以自己去看官方guide很详细 2.主要说下在使用过程中需要注意的地方 1)使用如果使用c++的接口的时候,在你自己的类中或者apach ...