Reduced Instruction Set Computer

From Computer History Wiki
Revision as of 22:46, 18 August 2017 by Jnc (talk | contribs) (Jnc moved page RISC to Reduced Instruction Set Computer: Put article at full name)
Jump to: navigation, search

Reduced Instruction Set Computer (usually abbreviated to RISC) is a school of CPU architecture in which the goal is to produce a design whose object code is optimized toward producing the fastest possible instruction execution time, as part of a overall system architecture which maximizes the performance at minimum cost.

The original RISC machine, the IBM 801, was designed together with its compiler, the concept being that functionality would be divided between the two in such a way as to achieve the cost/performance goals, with the compiler doing things to make the hardware as simple (and thus fast) as possible. While the compiler would be more complex, as it had to include extra mechanism to do things that the hardware did not do, the engineering costs of that would be amortized over all the units, whereas extra hardware is a cost in every unit.

To achieve this goal, the instructions are made as simple as possible; the machines were generally load-store architectures, and most instructions only performed a single reference to main memory.

Another way of looking at RISC is that it does not try and maximize the instruction density - i.e. the number of memory bits needed to hold a given set of programming functionality. This means that it did not maximize the efficiency of the main memory's bandwidth - the latter having been the principle bottleneck in older computers (particularly those using core memory.