The x86 Architecture

Similar documents
Lecture 15 Intel Manual, Vol. 1, Chapter 3. Fri, Mar 6, Hampden-Sydney College. The x86 Architecture. Robb T. Koether. Overview of the x86

EXPERIMENT WRITE UP. LEARNING OBJECTIVES: 1. Get hands on experience with Assembly Language Programming 2. Write and debug programs in TASM/MASM

UMBC. A register, an immediate or a memory address holding the values on. Stores a symbolic name for the memory location that it represents.

Introduction to IA-32. Jo, Heeseung

INTRODUCTION TO IA-32. Jo, Heeseung

The x86 Instruction Set

Code segment Stack segment

Complex Instruction Set Computer (CISC)

MODE (mod) FIELD CODES. mod MEMORY MODE: 8-BIT DISPLACEMENT MEMORY MODE: 16- OR 32- BIT DISPLACEMENT REGISTER MODE

X86 Addressing Modes Chapter 3" Review: Instructions to Recognize"

Assembler Programming. Lecture 2

Module 3 Instruction Set Architecture (ISA)

Access. Young W. Lim Fri. Young W. Lim Access Fri 1 / 18

Assembly Language Lab # 9

CS 31: Intro to Systems ISAs and Assembly. Martin Gagné Swarthmore College February 7, 2017

Registers. Ray Seyfarth. September 8, Bit Intel Assembly Language c 2011 Ray Seyfarth

Access. Young W. Lim Sat. Young W. Lim Access Sat 1 / 19

Basic Execution Environment

Hardware and Software Architecture. Chapter 2

Addressing Modes on the x86

The Microprocessor and its Architecture

Credits and Disclaimers

CS241 Computer Organization Spring 2015 IA

6/20/2011. Introduction. Chapter Objectives Upon completion of this chapter, you will be able to:

Assembly Language Each statement in an assembly language program consists of four parts or fields.

We can study computer architectures by starting with the basic building blocks. Adders, decoders, multiplexors, flip-flops, registers,...

Lab 2: Introduction to Assembly Language Programming

Microprocessors ( ) Fall 2010/2011 Lecture Notes # 15. Stack Operations. 10 top

CSC 2400: Computer Systems. Towards the Hardware: Machine-Level Representation of Programs

x86 Assembly Tutorial COS 318: Fall 2017

CSC 8400: Computer Systems. Machine-Level Representation of Programs

Reverse Engineering II: The Basics

Instruction Set Architectures

Reverse Engineering II: Basics. Gergely Erdélyi Senior Antivirus Researcher

Binghamton University. CS-220 Spring x86 Assembler. Computer Systems: Sections

Credits and Disclaimers

Interfacing Compiler and Hardware. Computer Systems Architecture. Processor Types And Instruction Sets. What Instructions Should A Processor Offer?

Chapter 3: Addressing Modes

IA32 Intel 32-bit Architecture

Scott M. Lewandowski CS295-2: Advanced Topics in Debugging September 21, 1998

Lecture (02) The Microprocessor and Its Architecture By: Dr. Ahmed ElShafee

Islamic University Gaza Engineering Faculty Department of Computer Engineering ECOM 2125: Assembly Language LAB. Lab # 7. Procedures and the Stack

Instruction Set Architecture (ISA) Data Types

Dr. Ramesh K. Karne Department of Computer and Information Sciences, Towson University, Towson, MD /12/2014 Slide 1

CSE2421 FINAL EXAM SPRING Name KEY. Instructions: Signature

Machine-level Representation of Programs. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University

CMSC Lecture 03. UMBC, CMSC313, Richard Chang

Marking Scheme. Examination Paper Department of CE. Module: Microprocessors (630313)

6/17/2011. Introduction. Chapter Objectives Upon completion of this chapter, you will be able to:

complement) Multiply Unsigned: MUL (all operands are nonnegative) AX = BH * AL IMUL BH IMUL CX (DX,AX) = CX * AX Arithmetic MUL DWORD PTR [0x10]

MICROPROCESSOR PROGRAMMING AND SYSTEM DESIGN

CS 31: Intro to Systems ISAs and Assembly. Kevin Webb Swarthmore College February 9, 2016

SPRING TERM BM 310E MICROPROCESSORS LABORATORY PRELIMINARY STUDY

Chapter 2: The Microprocessor and its Architecture

CS 31: Intro to Systems ISAs and Assembly. Kevin Webb Swarthmore College September 25, 2018

EEM336 Microprocessors I. Addressing Modes

The Instruction Set. Chapter 5

Lecture 5:8086 Outline: 1. introduction 2. execution unit 3. bus interface unit

CS165 Computer Security. Understanding low-level program execution Oct 1 st, 2015

Computer Processors. Part 2. Components of a Processor. Execution Unit The ALU. Execution Unit. The Brains of the Box. Processors. Execution Unit (EU)

The x86 Architecture. ICS312 - Spring 2018 Machine-Level and Systems Programming. Henri Casanova

CMSC 313 COMPUTER ORGANIZATION & ASSEMBLY LANGUAGE PROGRAMMING LECTURE 03, SPRING 2013

Low Level Programming Lecture 2. International Faculty of Engineerig, Technical University of Łódź

CHAPTER 3 BASIC EXECUTION ENVIRONMENT

icroprocessor istory of Microprocessor ntel 8086:

iapx Systems Electronic Computers M

CS 16: Assembly Language Programming for the IBM PC and Compatibles

Reverse Engineering II: The Basics

UNIT 2 PROCESSORS ORGANIZATION CONT.

8086 INTERNAL ARCHITECTURE

Assembly I: Basic Operations. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University

Practical Malware Analysis

Intel 8086 MICROPROCESSOR ARCHITECTURE

Assembly Language: IA-32 Instructions

Computer Architecture and Assembly Language. Practical Session 3

Instruction Set Architectures

Moodle WILLINGDON COLLEGE SANGLI (B. SC.-II) Digital Electronics

CSCE 212H, Spring 2008 Lab Assignment 3: Assembly Language Assigned: Feb. 7, Due: Feb. 14, 11:59PM

Inline Assembler. Willi-Hans Steeb and Yorick Hardy. International School for Scientific Computing

Program Exploitation Intro

Turning C into Object Code Code in files p1.c p2.c Compile with command: gcc -O p1.c p2.c -o p Use optimizations (-O) Put resulting binary in file p

Faculty of Engineering Computer Engineering Department Islamic University of Gaza Assembly Language Lab # 2 Assembly Language Fundamentals

CNIT 127: Exploit Development. Ch 1: Before you begin. Updated

EEM336 Microprocessors I. The Microprocessor and Its Architecture

An Introduction to x86 ASM

Stack Applications. Lecture 27 Sections Robb T. Koether. Hampden-Sydney College. Wed, Mar 29, 2017

System calls and assembler

SYSC3601 Microprocessor Systems. Unit 2: The Intel 8086 Architecture and Programming Model

Lecture 3: Instruction Set Architecture

INSTRUCTOR: ABDULMUTTALIB A. H. ALDOURI

mith College Computer Science CSC231 - Assembly Week #4 Dominique Thiébaut

CS241 Computer Organization Spring Introduction to Assembly

Lecture 5: Computer Organization Instruction Execution. Computer Organization Block Diagram. Components. General Purpose Registers.

Assembly Language for Intel-Based Computers, 4 th Edition. Chapter 2: IA-32 Processor Architecture Included elements of the IA-64 bit

Assembly level Programming. 198:211 Computer Architecture. (recall) Von Neumann Architecture. Simplified hardware view. Lecture 10 Fall 2012

LAB 5 Arithmetic Operations Simple Calculator

Instruction Set Architectures

MACHINE-LEVEL PROGRAMMING I: BASICS COMPUTER ARCHITECTURE AND ORGANIZATION

UMBC. contain new IP while 4th and 5th bytes contain CS. CALL BX and CALL [BX] versions also exist. contain displacement added to IP.

CS61 Section Solutions 3

Transcription:

The x86 Architecture Lecture 24 Intel Manual, Vol. 1, Chapter 3 Robb T. Koether Hampden-Sydney College Fri, Mar 20, 2015 Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 1 / 29

1 Overview of the x86 Architecture Instruction Format Registers Data Types The Run-time Stack 2 Assignment Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 2 / 29

Outline 1 Overview of the x86 Architecture Instruction Format Registers Data Types The Run-time Stack 2 Assignment Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 3 / 29

Overview See the reference IA-32 Intel Architecture Software Developer s Manual Volume 1: Basic Architecture, Chapter 3. Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 4 / 29

Outline 1 Overview of the x86 Architecture Instruction Format Registers Data Types The Run-time Stack 2 Assignment Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 5 / 29

Instructions Each instruction is of the form [label:] mnemonic [operand 1 ][, operand 2 ][, operand 3 ] The number of operands is 0, 1, 2, or 3, depending on the mnemonic. Each operand is either An immediate value, A register, or A memory address. Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 6 / 29

Source and Destination Operands Each operand is either a source operand or a destination operand. A source operand, in general, may be An immediate value, A register, or A memory address. A destination operand, in general, may be A register, or A memory address. Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 7 / 29

Source and Destination Operands Each operand is either a source operand or a destination operand. A source operand, in general, may be An immediate value, A register, or A memory address. A destination operand, in general, may be A register, or A memory address. But only certain combinations are permitted. Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 7 / 29

Source and Destination Operands The standard interpretation of mnemonic operand 1,operand 2 is that operand 1 is the destination and operand 2 is the source. operand 1 operand 1 op operand 2 The Intel manuals are written according to the standard interpretation. Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 8 / 29

Source and Destination Operands However, the gnu interpretation of mnemonic operand 1,operand 2 is that operand 1 is the source and operand 2 is the destination. operand 1 op operand 2 operand 2 Therefore, we will have to interpret the information in the Intel manuals accordingly. Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 9 / 29

Instructions Not every logical combination of operands is permitted in every instruction. See the references IA-32 Intel Architecture Software Developer s Manual Volume 2A: Instruction Set Reference, A-M IA-32 Intel Architecture Software Developer s Manual Volume 2B: Instruction Set Reference, N-Z Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 10 / 29

Instructions Different instructions require different numbers of operands. For example, hlt - 0 operands inc - 1 operand add - 2 operands imul - 1, 2, or 3 operands Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 11 / 29

Address Space The memory addresses are 32 bits, so they can access up to 4 GB of memory. A global variable or function is referenced by its name, which is a label representing its address. Local variables are referenced by an offset from the base pointer, which holds the base address of the activation record on the stack. Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 12 / 29

Outline 1 Overview of the x86 Architecture Instruction Format Registers Data Types The Run-time Stack 2 Assignment Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 13 / 29

Basic Registers There are Eight 32-bit general-purpose registers, One 32-bit EFLAGS register, One 32-bit instruction pointer register (eip), and Other special-purpose registers. Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 14 / 29

The General-Purpose Registers The eight 32-bit general-purpose registers are eax, ebx, ecx, edx, esi, edi, ebp, and esp. For calculations, we will use eax, ebx, ecx, and edx. Register esp is the stack pointer. Register ebp is the base pointer. Registers esi and edi are source and destination index registers for array and string operations. Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 15 / 29

The General-Purpose Registers The registers eax, ebx, ecx, and edx may be accessed as 32-bit, 16-bit, or 8-bit registers. The other four registers can be accessed as 32-bit or 16-bit. For example, Register eax represents a 32-bit quantity. The low-order two bytes of eax may be accessed through the name ax. The high-order byte of ax is named ah. The low-order byte of ax is named al. Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 16 / 29

The General-Purpose 32-Bit Registers 31 0 eax ebx ecx edx ebp esi edi esp Accumulator Base pointer Array source Array destination Stack pointer Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 17 / 29

The General-Purpose 16-Bit Registers 31 16 15 0 ax bx cx dx bp si di sp Accumulator Base pointer Array source Array destination Stack pointer Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 18 / 29

The General-Purpose 8-Bit Registers 31 16 15 8 7 0 ah al bh bl ch cl dh dl bp si di sp Accumulator Base pointer Array source Array destination Stack pointer Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 19 / 29

EFLAGS Register The various bits of the 32-bit EFLAGS register are set (1) or reset (0) according to the results of certain operations. We will be interested in the bits CF - carry flag PF - parity flag ZF - zero flag SF - sign flag Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 20 / 29

Instruction Pointer Finally, there is the eip register, which is the instruction pointer. Register eip holds the address of the next instruction to be executed. We should never change the value of eip directly. It will be updated automatically as necessary. Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 21 / 29

Outline 1 Overview of the x86 Architecture Instruction Format Registers Data Types The Run-time Stack 2 Assignment Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 22 / 29

Data Types There are 5 integer data types. Byte - 8 bits. Word - 16 bits. Doubleword - 32 bits. Quadword - 64 bits. Double quadword - 128 bits. We will use doublewords (for ints) unless we have a specific need for one of the other types. Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 23 / 29

Outline 1 Overview of the x86 Architecture Instruction Format Registers Data Types The Run-time Stack 2 Assignment Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 24 / 29

The Run-time Stack The run-time stack supports procedure calls and the passing of parameters between procedures. The stack is located in memory. The stack grows towards low memory. When we push a value, esp is decremented. When we pop a value, esp is incremented. Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 25 / 29

Using the Run-time Stack Typically, if an operation produces a result, we will push that result onto the stack. The next operation, if it expects a previous result, will pop it off the stack. The alternative is to use the registers to pass results, but that is much more complicated since we would have to keep track of which registers were free. Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 26 / 29

Using the Run-time Stack Typically, if an operation produces a result, we will push that result onto the stack. The next operation, if it expects a previous result, will pop it off the stack. The alternative is to use the registers to pass results, but that is much more complicated since we would have to keep track of which registers were free. A good compiler would do that. Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 26 / 29

Function Calls and the Base Pointer When we make a function call, we use the base pointer ebp to store the location of the top of the stack esp before the function call. esp ebp Then we push the parameters and local variables of the function onto the stack. When we return from the function, we use the base pointer to restore the top of the stack to its previous location. ebp esp Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 27 / 29

Outline 1 Overview of the x86 Architecture Instruction Format Registers Data Types The Run-time Stack 2 Assignment Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 28 / 29

Assignment Homework Download the Intel Manual, Vol. 1, and read Chapter 3. Robb T. Koether (Hampden-Sydney College) The x86 Architecture Fri, Mar 20, 2015 29 / 29