<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://lms.onnocenter.or.id/wiki/index.php?action=history&amp;feed=atom&amp;title=Reduced_Instruction_Set_Computer</id>
	<title>Reduced Instruction Set Computer - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://lms.onnocenter.or.id/wiki/index.php?action=history&amp;feed=atom&amp;title=Reduced_Instruction_Set_Computer"/>
	<link rel="alternate" type="text/html" href="https://lms.onnocenter.or.id/wiki/index.php?title=Reduced_Instruction_Set_Computer&amp;action=history"/>
	<updated>2026-04-19T19:12:58Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://lms.onnocenter.or.id/wiki/index.php?title=Reduced_Instruction_Set_Computer&amp;diff=13722&amp;oldid=prev</id>
		<title>Onnowpurbo: New page: The acronym &#039;&#039;&#039;RISC&#039;&#039;&#039; (pronounced as &#039;&#039;risk&#039;&#039;), for &#039;&#039;&#039;reduced instruction set computer&#039;&#039;&#039;, represents a CPU design strategy emphasizing the insight that simplifie...</title>
		<link rel="alternate" type="text/html" href="https://lms.onnocenter.or.id/wiki/index.php?title=Reduced_Instruction_Set_Computer&amp;diff=13722&amp;oldid=prev"/>
		<updated>2010-01-14T22:35:03Z</updated>

		<summary type="html">&lt;p&gt;New page: The acronym &amp;#039;&amp;#039;&amp;#039;RISC&amp;#039;&amp;#039;&amp;#039; (pronounced as &amp;#039;&amp;#039;&lt;a href=&quot;http://en.wiktionary.org/wiki/risk&quot; class=&quot;extiw&quot; title=&quot;wiktionary:risk&quot;&gt;risk&lt;/a&gt;&amp;#039;&amp;#039;), for &amp;#039;&amp;#039;&amp;#039;reduced instruction set computer&amp;#039;&amp;#039;&amp;#039;, represents a &lt;a href=&quot;/wiki/index.php?title=CPU_design&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;CPU design (page does not exist)&quot;&gt;CPU design&lt;/a&gt; strategy emphasizing the insight that simplifie...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;The acronym &amp;#039;&amp;#039;&amp;#039;RISC&amp;#039;&amp;#039;&amp;#039; (pronounced as &amp;#039;&amp;#039;[[wiktionary:risk|risk]]&amp;#039;&amp;#039;), for &amp;#039;&amp;#039;&amp;#039;reduced instruction set computer&amp;#039;&amp;#039;&amp;#039;, represents a [[CPU design]] strategy emphasizing the insight that simplified instructions that &amp;quot;do less&amp;quot; may still provide for higher performance if this simplicity can be utilized to make instructions execute very quickly. Many proposals for a &amp;quot;precise&amp;quot; definition have been attempted, and the term is being slowly replaced by the more descriptive &amp;#039;&amp;#039;&amp;#039;load-store architecture&amp;#039;&amp;#039;&amp;#039;. Well known RISC families include [[DEC Alpha|Alpha]], [[AMD 29k|Am29k]], [[ARC International|ARC]], [[ARM architecture|ARM]], [[Atmel AVR|AVR]], [[MIPS architecture|MIPS]], [[PA-RISC]], [[Power Architecture]] (including [[PowerPC]]), [[SuperH]], and [[SPARC]].&lt;br /&gt;
&lt;br /&gt;
Being an old idea, some aspects attributed to the first RISC-&amp;#039;&amp;#039;labeled&amp;#039;&amp;#039; designs (around 1975) include the observations that the memory restricted [[compiler]]s of the time were often unable to take advantage of features intended to facilitate manual assembly coding, and that complex [[addressing mode|addressing]] &amp;#039;&amp;#039;inherently&amp;#039;&amp;#039; takes many cycles to perform, due to the implied additional memory accesses. It was argued that such functions would better be performed by sequences of simpler instructions, if this could yield implementations simple enough to cope with really high [[clock frequency|frequencies]], and small enough to leave room for many registers, factoring out slow memory accesses. Uniform, fixed length instructions with arithmetics restricted to registers were chosen to ease [[instruction pipeline|instruction pipelining]] in these simple designs, with special &amp;#039;&amp;#039;load-store&amp;#039;&amp;#039; instructions accessing memory.&lt;br /&gt;
&lt;br /&gt;
==Non-RISC design philosophy==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Should we move this entire section to [[CPU design]] ? --&amp;gt;&lt;br /&gt;
In the early days of the computer industry, programming was done in [[assembly language]] or [[machine code]], which encouraged powerful and easy to use instructions. CPU designers therefore tried to make instructions that would do as much work as possible. With the advent of [[high level language|higher level language]]s, computer architects also started to create dedicated instructions to directly implement certain central mechanisms of such languages. Another general goal was to provide every possible [[addressing mode]] for every instruction, known as [[Orthogonality#Computer_science|orthogonality]], to ease compiler implementation. Arithmetic operations could therefore often have results as well as operands directly in memory (in addition to register or immediate).&lt;br /&gt;
&lt;br /&gt;
The attitude at the time was that hardware design was more mature than [[compiler design]] so this was in itself also a reason to implement parts of the functionality in hardware and/or [[microcode]] rather than in a memory constrained compiler (or its generated code) alone.  This design philosophy became retroactively termed [[Complex Instruction Set Computer]] (CISC) after the RISC philosophy came onto the scene.&lt;br /&gt;
&lt;br /&gt;
CPUs also had relatively few registers, for several reasons:&lt;br /&gt;
* More registers also implies more time-consuming saving and restoring of register contents on the machine stack.&lt;br /&gt;
* A large number of registers requires a large number of instruction bits as register specifiers, meaning less dense code (see below).&lt;br /&gt;
* CPU registers are more expensive than external memory locations; large register sets were cumbersome with limited [[Printed circuit board|circuit boards]] or chip integration.&lt;br /&gt;
&lt;br /&gt;
An important force encouraging complexity was very limited main memories (on the order of kilobytes). It was therefore advantageous for the density of information held in computer programs to be high, leading to features such as highly encoded, variable length instructions, doing data loading as well as calculation (as mentioned above). These issues were of higher priority than the ease of decoding such instructions.&lt;br /&gt;
&lt;br /&gt;
An equally important reason was that main memories were quite slow (a common type was ferrite [[core memory]]); by using dense information packing, one could reduce the frequency with which the CPU had to access this slow resource. Modern computers face similar limiting factors: main memories are slow compared to the CPU and the fast cache memories employed to overcome this are instead limited in size. This may partly explain why highly encoded instruction sets have proven to be as useful as RISC designs in modern computers.&lt;br /&gt;
&lt;br /&gt;
==RISC design philosophy==&lt;br /&gt;
In the mid 1970s researchers (particularly [[John Cocke]]) at [[IBM]] (and similar projects elsewhere) demonstrated that the majority of combinations of these orthogonal [[addressing mode]]s and instructions were not used by most programs generated by [[compiler]]s available at the time. It proved difficult in many cases to write a compiler with more than limited ability to take advantage of the features provided by conventional CPUs.&lt;br /&gt;
&lt;br /&gt;
It was also discovered that, on microcoded implementations of certain architectures, complex operations tended to be &amp;#039;&amp;#039;slower&amp;#039;&amp;#039; than a sequence of simpler operations doing the same thing. This was in part an effect of the fact that many designs were rushed, with little time to optimize or tune every instruction, but only those used most often. One infamous example was the [[VAX]]&amp;#039;s &amp;lt;code&amp;gt;INDEX&amp;lt;/code&amp;gt; instruction, which ran slower than an equivalent implementation using simpler operations.&lt;br /&gt;
&lt;br /&gt;
As mentioned elsewhere, core memory had long since been slower than many CPU designs. The advent of semiconductor memory reduced this difference, but it was still apparent that more [[processor register|registers]] (and later [[cache]]s) would allow higher CPU operating frequencies. Additional registers would require sizeable chip or board areas which, at the time (1975), could be made available if the complexity of the CPU logic was reduced.&lt;br /&gt;
&lt;br /&gt;
Yet another impetus of both RISC and other designs came from practical measurements on real-world programs. [[Andrew S. Tanenbaum|Andrew Tanenbaum]] summed up many of these, demonstrating that processors often had oversized immediates. For instance, he showed that 98% of all the constants in a program would fit in 13 [[bit]]s, yet many CPU designs dedicated 16 or 32 bits to store them. This suggests that, to reduce the number of memory accesses, a fixed length machine could store constants in unused bits of the instruction word itself, so that they would be immediately ready when the CPU needs them (much like immediate addressing in a conventional design). This required small [[opcode]]s in order to leave room for a reasonably sized constant in a 32-bit instruction word.&lt;br /&gt;
&lt;br /&gt;
Since many real-world programs spend most of their time executing simple operations, some researchers decided to focus on making those operations as fast as possible. The [[clock rate]] of a CPU is limited by the time it takes to execute the slowest &amp;#039;&amp;#039;sub-operation&amp;#039;&amp;#039; of any instruction; decreasing that cycle-time often accelerates the execution of other instructions.&lt;br /&gt;
&lt;br /&gt;
The focus on &amp;quot;reduced instructions&amp;quot; led to the resulting machine being called a &amp;quot;reduced instruction set computer&amp;quot; (RISC). The goal was to make instructions so simple that they could &amp;#039;&amp;#039;easily&amp;#039;&amp;#039; be [[pipeline (computing)|pipelined]], in order to achieve a &amp;#039;&amp;#039;single clock&amp;#039;&amp;#039; throughput at &amp;#039;&amp;#039;high frequencies&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
Later it was noted that one of the most significant characteristics of&lt;br /&gt;
RISC processors was that external memory was only accessible by a&lt;br /&gt;
&amp;#039;&amp;#039;load&amp;#039;&amp;#039; or &amp;#039;&amp;#039;store&amp;#039;&amp;#039; instruction. All other instructions were limited&lt;br /&gt;
to internal registers. This simplified many aspects of processor&lt;br /&gt;
design: allowing instructions to be fixed-length, simplifying pipelines,&lt;br /&gt;
and isolating the logic for dealing with the delay in completing a memory&lt;br /&gt;
access (cache miss, etc) to only two instructions. This led to RISC designs being referred to as &amp;#039;&amp;#039;load/store&amp;#039;&amp;#039; &lt;br /&gt;
architectures.&lt;br /&gt;
&lt;br /&gt;
== Instruction set size and alternative terminology ==&lt;br /&gt;
&lt;br /&gt;
A common misunderstanding of the phrase &amp;quot;reduced instruction set computer&amp;quot; is the mistaken idea that instructions are simply eliminated, resulting in a smaller set of instructions. In fact, over the years, RISC instruction sets have grown in size, and today many of them have a larger set of instructions than many CISC CPUs. Some RISC processors such as the [[INMOS]] [[Transputer]] have instruction sets as large as, say, the CISC [[IBM]] [[System/370]]; and conversely, the DEC [[PDP-8]] &amp;amp;ndash; clearly a CISC CPU because many of its instructions involve multiple memory accesses &amp;amp;ndash; has only 8 basic instructions, plus a few extended instructions.&lt;br /&gt;
&lt;br /&gt;
The term &amp;quot;reduced&amp;quot; in that phrase was intended to describe the fact that the amount of work any single instruction accomplishes is reduced &amp;amp;ndash; at most a single data memory cycle &amp;amp;ndash; compared to the &amp;quot;complex instructions&amp;quot; of CISC CPUs that may require dozens of data memory cycles in order to execute a single instruction. In particular, RISC processors typically have separate instructions for I/O and data processing; as a consequence, industry observers have started using the terms &amp;quot;register-register&amp;quot; or &amp;quot;load-store&amp;quot; to describe RISC processors.&lt;br /&gt;
&lt;br /&gt;
Some CPUs have been retroactively dubbed RISC — a Byte magazine article once referred to the [[6502]] as &amp;quot;the original RISC processor&amp;quot; due to its simplistic and nearly orthogonal instruction set (most instructions work with most addressing modes) as well as its 256 zero-page &amp;quot;registers&amp;quot;. The 6502 is no load/store design however: arithmetic operations may read memory and instructions like INC and ROL even modify memory. Furthermore, orthogonality is equally often associated with &amp;quot;CISC&amp;quot;. However, the 6502 may be regarded as similar to RISC (and early machines) in the fact that it uses no [[microcode]] sequencing. However, the well known fact that it employed longer but fewer clock cycles compared to many contemporary microprocessors was due to a more [[asynchronous]] design with less subdivision of internal machine cycles. This is similar to early machines, but not to RISC.&lt;br /&gt;
&lt;br /&gt;
Some CPUs have been specifically designed to have a very small set of instructions &amp;amp;ndash; but these designs are very different from classic RISC designs, so they have been given other names such as [[minimal instruction set computer]] (MISC), [[Zero Instruction Set Computer]] (ZISC), [[one instruction set computer]] (OISC), [[transport triggered architecture]] (TTA), etc.&lt;br /&gt;
&lt;br /&gt;
==Alternatives==&lt;br /&gt;
RISC was developed as an alternative to what is now known as [[Complex instruction set computer|CISC]].&lt;br /&gt;
Over the years, other strategies have been implemented as alternatives to RISC and CISC. Some examples are [[VLIW]], [[Minimal instruction set computer|MISC]], [[OISC]], [[massive parallel processing]], [[systolic array]], [[reconfigurable computing]], and [[dataflow architecture]].&lt;br /&gt;
&lt;br /&gt;
==Typical characteristics of RISC==&lt;br /&gt;
For any given level of general performance, a RISC chip will typically have far fewer [[transistor]]s dedicated to the core logic which originally allowed designers to increase the size of the register set and increase internal parallelism.&lt;br /&gt;
&lt;br /&gt;
Other features, which are typically found in RISC architectures are:&lt;br /&gt;
&lt;br /&gt;
* Uniform instruction format, using a single word with the opcode in the same bit positions in every instruction, demanding less decoding;&lt;br /&gt;
* Identical [[general purpose registers]], allowing any register to be used in any context, simplifying compiler design (although normally there are separate [[floating point]] registers);&lt;br /&gt;
* Simple [[addressing mode]]s. Complex addressing performed via sequences of arithmetic and/or load-store operations;&lt;br /&gt;
* Few data types in hardware, some CISCs have [[byte]] [[string (computer science)|string]] instructions, or support [[complex number]]s; this is so far unlikely to be found on a RISC.&lt;br /&gt;
&lt;br /&gt;
Exceptions abound, of course, within both CISC and RISC.&lt;br /&gt;
&lt;br /&gt;
RISC designs are also more likely to feature a [[Harvard architecture|Harvard memory model]], where the instruction stream and the data stream are conceptually separated; this means that modifying the memory where code is held might not have any effect on the instructions executed by the processor (because the CPU has a separate instruction and data [[cache]]), at least until a special synchronization instruction is issued. On the upside, this allows both caches to be accessed simultaneously, which can often improve performance.&lt;br /&gt;
&lt;br /&gt;
Many early RISC designs also shared the characteristic of having a [[branch delay slot]]. A branch delay slot is an instruction space immediately following a jump or branch. The instruction in this space is executed, whether or not the branch is taken (in other words the effect of the branch is delayed). This instruction keeps the [[arithmetic and logical unit|ALU]] of the CPU busy for the extra time normally needed to perform a branch. Nowadays the branch delay slot is considered an unfortunate side effect of a particular strategy for implementing some RISC designs, and modern RISC designs generally do away with it (such as [[PowerPC]], more recent versions of SPARC, and MIPS).&lt;br /&gt;
&lt;br /&gt;
==Early RISC==&lt;br /&gt;
&lt;br /&gt;
The first system that would today be known as RISC was the [[CDC 6600]] [[supercomputer]], designed in 1964, a decade before the term was invented. The CDC 6600 had a load-store architecture with only two [[addressing mode]]s (register+register, and register+immediate constant) and 74 opcodes (whereas an [[Intel 8086]] has 400). The 6600 had eleven pipelined functional units for arithmetic and logic, plus five load units and two store units; the memory had multiple banks so all load-store units could operate at the same time. The basic clock cycle/instruction issue rate was 10 times faster than the memory access time. Jim Thornton and [[Seymour Cray]] designed it as a number-crunching CPU supported by 10 simple computers called &amp;quot;peripheral processors&amp;quot; to handle I/O and other operating system functions. Thus the joking comment later that the acronym RISC actually stood for &amp;quot;&amp;#039;&amp;#039;&amp;#039;R&amp;#039;&amp;#039;&amp;#039;eally &amp;#039;&amp;#039;&amp;#039;I&amp;#039;&amp;#039;&amp;#039;nvented by &amp;#039;&amp;#039;&amp;#039;S&amp;#039;&amp;#039;&amp;#039;eymour &amp;#039;&amp;#039;&amp;#039;C&amp;#039;&amp;#039;&amp;#039;ray&amp;quot;.&lt;br /&gt;
&amp;lt;!--Another early load-store machine was the [[Data General Nova]] minicomputer, designed in 1968.--&amp;gt;&lt;br /&gt;
The earliest attempt to make a chip-based RISC CPU was a project at [[International Business Machines|IBM]] which started in 1975. Named after the building where the project ran, the work led to the [[IBM 801]] CPU family which was used widely inside IBM hardware. The 801 was eventually produced in a single-chip form as the [[ROMP]] in 1981, which stood for &amp;#039;Research OPD [Office Products Division] Micro Processor&amp;#039;. As the name implies, this CPU was designed for &amp;quot;mini&amp;quot; tasks, and when IBM released the [[IBM RT-PC]] based on the design in 1986, the performance was not acceptable. Nevertheless the 801 inspired several research projects, including new ones at IBM that would eventually lead to their [[IBM POWER|POWER]] system.&lt;br /&gt;
&lt;br /&gt;
The most public RISC designs, however, were the results of university research programs run with funding from the [[DARPA]] [[VLSI Project|VLSI Program]]. The VLSI Program, practically unknown today, led to a huge number of advances in chip design, fabrication, and even computer graphics.&lt;br /&gt;
&lt;br /&gt;
[[University of California, Berkeley|UC Berkeley]]&amp;#039;s [[Berkeley RISC|RISC project]] started in 1980 under the direction of [[David A. Patterson (scientist)|David Patterson]] and [[Carlo H. Sequin]], based on gaining performance through the use of pipelining and an aggressive use of a technique known as [[register window]]ing. In a normal CPU one has a small number of registers, and a program can use any register at any time. In a CPU with [[register window]]s, there are a huge number of registers, e.g. 128, but programs can only use a small number of them, e.g. 8, at any one time.&lt;br /&gt;
A program that limits itself to 8 registers per procedure can make very fast procedure calls: The call simply moves the window &amp;quot;down&amp;quot; by 8, to the set of 8 registers used by that procedure, and the return moves the window back. (On a normal CPU, most calls must save at least a few registers&amp;#039; values to the stack in order to use those registers as working space, and restore their values on return.)&lt;br /&gt;
&lt;br /&gt;
The RISC project delivered the RISC-I processor in 1982. Consisting of only 44,420 transistors (compared with averages of about 100,000 in newer CISC designs of the era) RISC-I had only 32 instructions, and yet completely outperformed any other single-chip design. They followed this up with the 40,760 transistor, 39 instruction RISC-II in 1983, which ran over three times as fast as RISC-I.&lt;br /&gt;
&lt;br /&gt;
At about the same time, [[John L. Hennessy]] started a similar project called [[MIPS architecture|MIPS]] at [[Stanford University]] in 1981. MIPS focused almost entirely on the pipeline, making sure it could be run as &amp;quot;full&amp;quot; as possible. Although pipelining was already in use in other designs, several features of the MIPS chip made its pipeline far faster. The most important, and perhaps annoying, of these features was the demand that all instructions be able to complete in one cycle. This demand allowed the pipeline to be run at much higher data rates (there was no need for induced delays) and is responsible for much of the processor&amp;#039;s performance. However, it also had the negative side effect of eliminating many potentially useful instructions, like a multiply or a divide. &lt;br /&gt;
&lt;br /&gt;
In the early years, the RISC efforts were well known, but largely confined to the university labs that had created them. The Berkeley effort became so well known that it eventually became the name for the entire concept. Many in the computer industry criticized that the performance benefits were unlikely to translate into real-world settings due to the decreased memory efficiency of multiple instructions, and that that was the reason no one was using them. But starting in 1986, all of the RISC research projects started delivering products.&lt;br /&gt;
&lt;br /&gt;
==Later RISC==&lt;br /&gt;
&lt;br /&gt;
Berkeley&amp;#039;s research was not directly commercialized, but the RISC-II design was used by [[Sun Microsystems]] to develop the [[SPARC]], by [[Pyramid Technology]] to develop their line of mid-range multi-processor machines, and by almost every other company a few years later. It was Sun&amp;#039;s use of a RISC chip in their new machines that demonstrated that RISC&amp;#039;s benefits were real, and their machines quickly outpaced the competition and essentially took over the entire [[workstation]] market.&lt;br /&gt;
&lt;br /&gt;
John Hennessy left Stanford (temporarily) to commercialize the MIPS design, starting the company known as [[MIPS Computer Systems]]. Their first design was a second-generation MIPS chip known as the &amp;#039;&amp;#039;&amp;#039;[[R2000 (microprocessor)|R2000]]&amp;#039;&amp;#039;&amp;#039;. MIPS designs went on to become one of the most used RISC chips when they were included in the [[PlayStation]] and [[Nintendo 64]] [[game console]]s. Today they are one of the most common [[embedded processor]]s in use for high-end applications.&lt;br /&gt;
&lt;br /&gt;
IBM learned from the RT-PC failure and went on to design the RS/6000 based on their new POWER architecture. They then moved their existing [[AS/400]] systems to POWER chips, and found much to their surprise that even the very complex instruction set ran considerably faster. POWER would also find itself moving &amp;quot;down&amp;quot; in scale to produce the [[PowerPC]] design, which eliminated many of the &amp;quot;IBM only&amp;quot; instructions and created a single-chip implementation. Today the [[PowerPC]] is one of the most commonly used CPUs for automotive applications (some cars have more than 10 of them inside). It was also the CPU used in most [[Apple Macintosh]] machines from 1994 to 2006.   (Starting in February 2006, Apple [[Apple Intel transition|switched]] their main production line to [[Intel]] [[x86]] processors.)&lt;br /&gt;
&lt;br /&gt;
Almost all other vendors quickly joined. From the [[United Kingdom|UK]] similar research efforts resulted in the [[INMOS transputer]], the [[Acorn Archimedes]] and the [[ARM Ltd|Advanced RISC Machine]] line, which is a huge success today. Companies with existing CISC designs also quickly joined the revolution. [[Intel]] released the [[Intel i860|i860]] and [[Intel i960|i960]] by the late 1980s, although they were not very successful. [[Motorola]] built a new design called the [[Motorola 88000|88000]] in homage to their famed CISC [[Motorola 68000|68000]], but it saw almost no use and they eventually abandoned it and joined IBM to produce the PowerPC. [[Advanced Micro Devices|AMD]] released their [[AMD 29000|29000]] which would go on to become the most popular RISC design of the early 1990s.&lt;br /&gt;
&lt;br /&gt;
Today the vast majority of all 32-bit CPUs in use are RISC CPUs, and [[microcontroller]]s. RISC design techniques offers power in even small sizes, and thus has become dominant for low-power 32-bit CPUs. Embedded systems are by far the largest market for processors: while a family may own one or two PCs, their car(s), cell phones, and other devices may contain a total of dozens of embedded processors. RISC had also completely taken over the market for larger workstations for much of the 90s (until taken back by inexpensive PC-based solutions). After the release of the Sun SPARCstation the other vendors rushed to compete with RISC based solutions of their own. The high-end server market today is almost completely RISC based, and the #1 spot among [[supercomputer]]s  is held by [[IBM]]&amp;#039;s [[Roadrunner (supercomputer)|Roadrunner]] system, which uses [[Power Architecture]]-based [[Cell (microprocessor)|Cell processors]]to provide most of its computing power, although many other supercomputers use [[x86]] [[Complex instruction set computer|CISC]] processors instead.&lt;br /&gt;
&lt;br /&gt;
===RISC and x86===&lt;br /&gt;
However, despite many successes, RISC has made few inroads into the desktop PC and commodity server markets, where [[Intel]]&amp;#039;s [[x86]] platform remains the dominant processor architecture ([[Intel]] is facing increased competition from [[Advanced Micro Devices|AMD]], but even AMD&amp;#039;s processors implement the [[x86]] platform, or a 64-bit superset known as [[x86-64]]). There are three main reasons for this. &lt;br /&gt;
# The very large base of [[proprietary software|proprietary]] PC applications are written for x86, whereas no RISC platform has a similar installed base, and this meant PC users were [[vendor lock-in|locked into]] the x86. &lt;br /&gt;
# Although RISC was indeed able to scale up in performance quite quickly and cheaply, Intel took advantage of its large market by spending vast amounts of money on processor development. Intel could spend many times as much as any RISC manufacturer on improving low level design and manufacturing. The same could not be said about smaller firms like [[Cyrix]] and [[NexGen]], but they realized that they could apply pipelined design philosophies and practices to the x86-architecture &amp;amp;mdash; either &amp;#039;&amp;#039;directly&amp;#039;&amp;#039; as in the 6x86 and MII series, or &amp;#039;&amp;#039;indirectly&amp;#039;&amp;#039; (via extra decoding stages) as in [[Nx586]] and [[AMD K5]].&lt;br /&gt;
# Later, more powerful processors such as [[Intel P6]] and [[AMD K6]] had similar RISC-like units that executed a stream of [[micro-operation]]s generated from decoding stages that split most x86 instructions into several pieces. Today, these principles have been further refined and are used by modern x86 processors such as [[Intel Core 2]] and [[AMD K8]]. The first &amp;#039;&amp;#039;available&amp;#039;&amp;#039; chip deploying such techniques was the NexGen Nx586, released in 1994 (while the AMD K5 was severely delayed and released in 1995).&lt;br /&gt;
&lt;br /&gt;
While early RISC designs were significantly different than contemporary CISC designs, by 2000 the highest performing CPUs in the RISC line were almost indistinguishable from the highest performing CPUs in the CISC line.&lt;br /&gt;
&lt;br /&gt;
A number of vendors, including [[Qualcomm]], are attempting to enter the PC market with [[ARM architecture|ARM-based]] devices dubbed [[smartbook]]s, riding off the [[netbook]] trend and rising acceptance of [[Linux distribution]]s, a number of which already have ARM builds. &lt;br /&gt;
Other companies are choosing to use [[Windows CE]].&lt;br /&gt;
&lt;br /&gt;
===Diminishing benefits===&lt;br /&gt;
Over time, improvements in chip fabrication techniques have improved performance exponentially, according to [[Moore&amp;#039;s law]], whereas architectural improvements have been comparatively small. Modern CISC implementations have implemented many of the performance improvements introduced by RISC, such as single-clock throughput of simple instructions. Compilers have also become more sophisticated, and are better able to exploit complex as well as simple instructions on CISC architectures, often carefully optimizing both instruction selection and instruction and data ordering in pipelines and caches. The RISC-CISC distinction has blurred significantly in practice.&lt;br /&gt;
&lt;br /&gt;
===RISC success stories===&lt;br /&gt;
&lt;br /&gt;
RISC designs have led to a number of successful platforms and architectures, some of the larger ones being:&lt;br /&gt;
&lt;br /&gt;
*[[ARM architecture|ARM]] — The ARM architecture dominates the market for low power and low cost embedded systems (typically 100&amp;amp;ndash;500 MHz in 2008). ARM Ltd., which licenses intellectual property rather than manufacturing chips, reported that 10 billion licensed chips had been shipped as of early 2008. The various generations, variants and implementations of the ARM core are deployed in over 90% of mobile electronics devices, including almost all modern mobile phones, mp3 players and portable video players. Some high profile examples are&lt;br /&gt;
**Apple [[iPod]]s (custom [[ARM7TDMI]] SoC)&lt;br /&gt;
**Apple [[iPhone]] and [[iPod Touch]] (Samsung [[ARM11|ARM1176JZF]], [[ARM Cortex-A8]])&lt;br /&gt;
**Palm and PocketPC PDAs and smartphones (Marvell [[XScale]] family, Samsung SC32442 - ARM9)&lt;br /&gt;
**[[RIM]] [[Blackberry]] smartphone/email devices.&lt;br /&gt;
**Microsoft [[Windows Mobile]]&lt;br /&gt;
**Nintendo [[Game Boy Advance]] (ARM7TDMI)&lt;br /&gt;
**[[Nintendo DS]] (ARM7TDMI, ARM946E-S)&lt;br /&gt;
**Sony Network Walkman (Sony in-house ARM based chip)&lt;br /&gt;
**T-Mobile G1 (HTC Dream Android, Qualcomm MSM7201A [[ARM11]] @ 528MHz)&lt;br /&gt;
*[[PowerPC]] Architecture - The PowerPC architecture is a popular RISC based architecture that dominates the performance and power constraint embedded device markets such as communication equipments (Routers, Switches), storage equipments etc.&lt;br /&gt;
*MIPS&amp;#039;s [[MIPS architecture|MIPS]] line, found in most [[Silicon Graphics|SGI]] computers and the [[PlayStation]], [[PlayStation 2]], [[Nintendo 64]] (discontinued), [[PlayStation Portable]] game consoles, and [[residential gateway]]s like [[Linksys WRT54G series]].&lt;br /&gt;
*[[IBM]]&amp;#039;s and [[Freescale]]&amp;#039;s (formerly [[Motorola]] SPS) [[Power Architecture]], used in all of IBM&amp;#039;s supercomputers, midrange servers and workstations, in [[Apple Inc.|Apple]]&amp;#039;s [[PowerPC]]-based [[Macintosh]] computers (discontinued), in [[Nintendo]]&amp;#039;s [[Nintendo Gamecube|Gamecube]] and [[Wii]], [[Microsoft]]&amp;#039;s [[Xbox 360]] and [[Sony]]&amp;#039;s [[PlayStation 3]] game consoles, [[EMC Corporation|EMC]]&amp;#039;s DMX range of the [[Symmetrix]] [[Storage area network|SAN]], and in many embedded applications like printers and cars.&lt;br /&gt;
*[[Sun Microsystems|Sun]]&amp;#039;s [[SPARC]] line, found in most of their later machines&lt;br /&gt;
*[[Hewlett-Packard]]&amp;#039;s [[PA-RISC]], also known as HP-PA, discontinued December 31, 2008.&lt;br /&gt;
*[[DEC Alpha|Alpha]], used in single-board computers, workstations, servers and supercomputers from [[Digital Equipment Corporation]], [[Compaq]] and [[HP]], discontinued as of 2007.&lt;br /&gt;
*[[XAP processor]] used in many low-power wireless ([[Bluetooth]], [[wifi]]) chips from [[CSR plc|CSR]].&lt;br /&gt;
*[[Hitachi, Ltd.|Hitachi]]&amp;#039;s [[SuperH]], originally in wide use in the [[Sega]] [[Sega 32X|Super 32X]], [[Sega Saturn|Saturn]] and [[Dreamcast]], now at the heart of many consumer electronics devices. The SuperH is the base platform for the [[Mitsubishi]] - [[Hitachi, Ltd.|Hitachi]] joint semiconductor group. The two groups merged in 2002, dropping Mitsubishi&amp;#039;s own RISC architecture, the [[M32R]].&lt;br /&gt;
*[[Atmel AVR]] used in a variety of products including ranging from Xbox handheld controllers to BMW cars.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Addressing mode]]&lt;br /&gt;
*[[Complex instruction set computer]]&lt;br /&gt;
*[[Very long instruction word]]&lt;br /&gt;
*[[Minimal instruction set computer]]&lt;br /&gt;
*[[Zero Instruction Set Computer]]&lt;br /&gt;
*[[One instruction set computer]]&lt;br /&gt;
*[[NISC]] (No-instruction-set-computer)&lt;br /&gt;
*[[Ultimate RISC]]&lt;br /&gt;
*[[Microprocessor]]&lt;br /&gt;
*[[Instruction set]]&lt;br /&gt;
*[[Computer architecture]]&lt;br /&gt;
*[[Classic RISC pipeline]]&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://cse.stanford.edu/class/sophomore-college/projects-00/risc/risccisc/ RISC vs. CISC]&lt;br /&gt;
*[http://cse.stanford.edu/class/sophomore-college/projects-00/risc/whatis/index.html What is RISC]&lt;br /&gt;
*[http://www.cpushack.net/CPU/cpuAppendA.html RISC vs. CISC from historical perspective]&lt;/div&gt;</summary>
		<author><name>Onnowpurbo</name></author>
	</entry>
</feed>