Introduction To Computing Systems:: From Bits and Gates To C and Beyond
Introduction To Computing Systems:: From Bits and Gates To C and Beyond
Introduction To Computing Systems:: From Bits and Gates To C and Beyond
Yale N. Patt
Sanjay J. Patel
1-1
Chapter 1
Welcome Aboard
Introduction to the World of Computing
Computer: electronic genius?
• NO! Electronic idiot!
• Does exactly what we tell it to, nothing more.
Approach:
Build understanding from the bottom up.
Bits Gates Processor Instructions C Programming
1-3
Two Recurring Themes
Abstraction
• Productivity enhancer – don’t need to worry about details…
Can drive a car without knowing how
the internal combustion engine works.
• …until something goes wrong!
Where’s the dipstick? What’s a spark plug?
• Important to understand the components and
how they work together.
1-4
Big Idea #1: Universal Computing Device
All computers, given enough time and memory,
are capable of computing exactly the same things.
= =
PDA
Workstation
Supercomputer
1-5
Turing Machine
Mathematical model of a device that can perform
any computation – Alan Turing (1937)
• ability to read/write symbols on an infinite “tape”
• state transitions, based on current state and symbol
Tadd, Tmul
U
a,b,c c(a+b)
U is programmable – so is a computer!
• instructions are part of the input data
• a computer can emulate a Universal Turing Machine
1-8
Big Idea #2: Transformations Between Layers
Problems
Algorithms
Language
Microarchitecture
Circuits
Devices
1-9
How do we solve a problem using a computer?
A systematic sequence of transformations between
layers of abstraction.
Problem
Problem
Software Design:
choose algorithms and data structures
Algorithm
Algorithm
Programming:
use language to express design
Program
Program
Compiling/Interpreting:
convert language to
Instr
Instr Set
Set machine instructions
Architecture
Architecture
1-10
Deeper and Deeper…
Instr
InstrSet
Set
Architecture
Architecture
Processor Design:
choose structures to implement ISA
Microarch
Microarch
Logic/Circuit Design:
gates and low-level circuits to
Circuits implement components
Circuits
Process Engineering & Fabrication:
develop and manufacture
Devices
Devices lowest-level components
1-11
Descriptions of Each Level
Problem Statement
• stated using "natural language"
• may be ambiguous, imprecise
Algorithm
• step-by-step procedure, guaranteed to finish
• definiteness, effective computability, finiteness
Program
• express the algorithm using a computer language
• high-level language, low-level language
Instruction Set Architecture (ISA)
• specifies the set of instructions the computer can perform
• data types, addressing mode
1-12
Descriptions of Each Level (cont.)
Microarchitecture
• detailed organization of a processor implementation
• different implementations of a single ISA
Logic Circuits
• combine basic operations to realize microarchitecture
• many different ways to implement a single function
(e.g., addition)
Devices
• properties of materials, manufacturability
1-13
Many Choices at Each Level
Solve a system of equations
Gaussian Jacobi
Red-black SOR Multigrid
elimination iteration