Presentation is loading. Please wait.

Presentation is loading. Please wait.

x86 Processor Architecture

Similar presentations


Presentation on theme: "x86 Processor Architecture"— Presentation transcript:

1 x86 Processor Architecture

2 Microcomputer Motherboard contains the main components
Microprocessor (the computational core) Memory (DRAM) Support chips (memory controller, audio, IO …) Slots for peripheral components (video, …) Input/output ports

3 Intel D850MD Motherboard mouse, keyboard, parallel, serial, and USB connectors Video Audio chip PCI slots memory controller hub Pentium 4 socket AGP slot dynamic RAM Firmware hub I/O Controller Speaker Power connector Battery Diskette connector Source: Intel® Desktop Board D850MD/D850MV Technical Product Specification IDE drive connectors Irvine, Kip R. Assembly Language for x86 Processors 7/e, 2015.

4 Microprocessor Central Processing Unit (CPU)
Arithmetic Logic Unit (ALU) Performs the actual computations Control Unit (CU) Controls the sequence of instruction execution Clock Manages the timing of instruction execution Cache Memory Helps speed program execution Registers Localized storage of operands and data Speeds execution by avoiding (much slower) memory access

5 Basic Microcomputer Design
clock synchronizes CPU operations control unit (CU) coordinates sequence of execution steps ALU performs arithmetic and bitwise processing buses carry multi-bit words representing memory addresses, data, or control information typically 64 bits wide, 32 bits in older machines Irvine, Kip R. Assembly Language for x86 Processors 7/e, 2015. Modified, John Carelli

6 Clock Synchronizes all CPU and BUS operations
Machine cycle (or clock cycle) measures time of a single operation Clock is used to trigger events Continuously running (normally) Generated with a motherboard-mounted quartz crystal Typically over 1Ghz (1 billion cycles per second) Irvine, Kip R. Assembly Language for x86 Processors 7/e, 2015. Modified, John Carelli

7 Instruction Execution Cycle
Fetch Load the next program instruction from the code cache Code Cache: section of memory storing the program Location of the next instruction is stored in the “instruction pointer” Decode Interpret the instruction bit pattern (opcode) to determine the operation to perform (this is “machine Language”) Fetch operands (if any) Retrieve any needed data from registers or memory Execute Store the output (if necessary) Update the “instruction pointer” to the next instruction and go to step 1.

8 Execution Cycle vs. Machine Cycles
Some instructions take multiple clock cycles (or machine cycles) to execute Actual number depends on source and destination of the data (register or memory), computer components and architecture … Register based operations are faster than operations requiring memory access Because registers are located right in the CPU No need to go to external memory to get data

9 x86 Family of Processors Register Memory Machines
CISC architecture Complex Instruction Set Computer Supports both 32 and 64 bit operation* Register Memory Machines Operands can be in either registers or memory But operations using registers are faster *This course will concentrate on 32 Bit Operation

10 x86 Overview Supports multiple modes of operation: Protected mode*
native mode (Windows, Linux) Others: Real-address mode (native MS-DOS) System management mode (power management, system security, diagnostics) Virtual-8086 mode (variant of Protected) *This course will concentrate on Protected Mode

11 32 Bit Operation The basic (default) sizes of the following are all 32 bits: CPU registers Data Memory addresses 32 bit memory addresses implies up to 4GB of addressable memory (232 is approximately 4x109)

12 Registers, an overview Located in the CPU
Registers provide rapid, direct access to operands in an instruction (like adding, comparing, …) Avoid accessing system bus and memory Some registers are general purpose … but others are dedicated to particular tasks Assembly language programs make extensive use of registers Registers are accessed by name in assembly language programs

13 General-Purpose Registers
Named storage locations inside the CPU, optimized for speed. Irvine, Kip R. Assembly Language for x86 Processors 7/e, 2015.

14 Accessing Parts of Registers
Use 8-bit name, 16-bit name, or 32-bit name Applies to EAX, EBX, ECX, and EDX Irvine, Kip R. Assembly Language for x86 Processors 7/e, 2015.

15 Index and Base Registers
Some registers have only a 16-bit name for their lower half*: * can’t access at the byte level Irvine, Kip R. Assembly Language for x86 Processors 7/e, 2015 Modified John Carelli

16 Some Specialized Register Uses (1 of 2)
General-Purpose Registers EAX – accumulator (multiplication/division) ECX – loop counter ESP – stack pointer ESI, EDI – index registers (high speed memory transfer) EBP – extended frame pointer (stack) Segment Registers (used for pointers) CS – code segment DS – data segment SS – stack segment ES, FS, GS - additional segments Irvine, Kip R. Assembly Language for x86 Processors 7/e, 2015. Modified, John Carelli

17 Some Specialized Register Uses (2 of 2)
EIP – instruction pointer Contains the address of the next instruction to be executed EFLAGS status and control flags each flag is a single binary bit Irvine, Kip R. Assembly Language for x86 Processors 7/e, 2015.

18 Status Flags Carry Overflow Sign Zero Auxiliary Carry Parity
unsigned arithmetic out of range Overflow signed arithmetic out of range Sign result is negative Zero result is zero Auxiliary Carry carry from bit 3 to bit 4 Parity sum of 1 bits is an even number Irvine, Kip R. Assembly Language for x86 Processors 7/e, 2015.

19 Floating-Point, MMX, XMM Registers
Eight 80-bit floating-point data registers ST(0), ST(1), , ST(7) arranged in a stack used for all floating-point arithmetic Eight 64-bit MMX registers Eight 128-bit XMM registers for single-instruction multiple-data (SIMD) operations Irvine, Kip R. Assembly Language for x86 Processors 7/e, 2015.

20 Levels of Input-Output
Level 3: High-level language function examples: C++, Java portable, convenient, not always the fastest Level 2: Operating system Application Programming Interface (API) extended capabilities, lots of details to master Level 1: BIOS drivers that communicate directly with devices OS security may prevent application-level code from working at this level Programs in this course will use Level-3 I/O functions provided in a library that come with the textbook Irvine, Kip R. Assembly Language for x86 Processors 7/e, 2015. Modified, John Carelli

21 Displaying a String of Characters
When a HLL program displays a string of characters, the following steps take place: Irvine, Kip R. Assembly Language for x86 Processors 7/e, 2015.

22 Programming levels Assembly language programs can perform input-output at each of the following levels: Irvine, Kip R. Assembly Language for x86 Processors 7/e, 2015.


Download ppt "x86 Processor Architecture"

Similar presentations


Ads by Google