1 / 69

Lab 1

Lab 1. ECE L 273. Overview of ECE L 273. http://www.parl.clemson.edu/ullab/ece272/ece272.html. Lab 1 – Introduction Required tools Lab2 – Assignment Statements Basic Assembly Language Syntax Lab3 – Control Statements Loops, Branching Lab4 – Addressing modes Arrays and Pointers

cheri
Download Presentation

Lab 1

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Lab 1 ECE L 273

  2. Overview of ECE L 273 http://www.parl.clemson.edu/ullab/ece272/ece272.html • Lab 1 – Introduction • Required tools • Lab2 – Assignment Statements • Basic Assembly Language Syntax • Lab3 – Control Statements • Loops, Branching • Lab4 – Addressing modes • Arrays and Pointers • Lab5 – Subroutines and Stack • Lab6 – Subroutine Parameters http://www.clemson.edu/ces/departments/ece/resources/ECE273Lab.html

  3. Structure • Lab assignment due after every 2 weeks. • 70% of the grade • In-Lab test during in-between weeks. • 15% of the grade • Final Exam • 15% of the grade

  4. Development Environment • Dual Boot • Install Linux on your laptop on a different hard disk partition • Virtualization Software • Run Linux using either VMware or VirtualBox on (Windows/MacOS) • http://www.clemson.edu/ces/departments/ece/resources/virtualmachine.html • Remote Access • http://www.parl.clemson.edu/ullab/security.html

  5. Assembly Language • Programmer Perspective (Optimizing code) • Write most of the code in High Level Language like C or C++ for example. • Profile the code and identify which parts are executed most often and need to be optimized. • Rewrite that part of code in low level language (Assembly) to make it run faster. • Compilers • Compilers translate high-level language to low-level language.

  6. .global asum .type asum,@function asum: pushl %ebp movl %esp, %ebp subl $4, %esp movl $0, -4(%ebp) .L2: movl 8(%ebp),%eax cmpb $0,(%eax) jne .L4 jmp .L3 .L4: movl 8(%ebp),%eax movsbl (%eax),%edx addl %edx,-4(%ebp) incl 8(%ebp) jmp .L2 .L3: movl -4(%ebp),%eax jmp .L1 .L1: movl %ebp, %esp popl %ebp ret Example of use of Assembly Code #include <stdio.h> int main(int arg, char **argv) { char buffer[256]; do { int i = 0; printf ("Enter a string terminated with a newline\n"); do { buffer[i] = getchar(); } while (buffer[i++] != '\n'); buffer[i-1] = 0; /* asum() is the * function * implemented in * assembly */ i = asum(buffer); if (i) { printf ("ascii sum is %d\n", i); continue; } } while(1); return 0; }

  7. Tools • Editors (vi, emacs, pico) • Compilers (gcc – GNU Compiler Collection) • Assembler (as – GNU Assembler) • Debugger (gdb – GNU Debugger) • Typical Steps • Write (C driver program, Assembly functions). • Compile & Assemble. • Link. • Execute. • Debug (if required).

  8. drv.c asm.s drv.c asm.s COMPILATION gcc -c -o drv.o drv.c COMPILATION And LINKING as -o asm.oasm.s drv.o asm.o gcc -o myprogdrv.casm.s LINKING gcc -o myprogasm.odrv.o myprog myprog Run the program: .\myprog

  9. Documentation http://www.parl.clemson.edu/ullab/documentation.html • Headers • Program Headers • Procedure Headers • Naming Convention • Variables and subroutine names • Comments • Uncommented code will not be accepted • Comments must relay purpose of the code and not just verbalize them.

  10. Program Header ////////////////////////////////////////////////////////////////////////////////////////////// // ECE 273 Lab // // NAME: Firstname Lastname // // SECTION: Four (12:20 - 2:20) M // // DATE DUE: Feb. 1, 1998 // // FILENAME: somefile.extension // // PROJECT: Lab Assignment #1 // // PURPOSE: This assembly program calculates the // // ASCII sum of the characters passed to // // it as a character array. // //////////////////////////////////////////////////////////////////////////////////////////// filename This should simply contain the name of the file in which this header is residing. project Should contain the name of the overall project. purpose Should briefly explain the what this program does. Program headers are included once per assignment at the top of the document.

  11. Procedure Header ////////////////////////////////////////////////////////////////////////////////////// // PROCEDURE: ProcedureName // // PARAMETERS: Listing of parameters // // RETURNS: Listing of data that gets returned // // DESCRIPTION: What this procedure does // ///////////////////////////////////////////////////////////////////////////////////// procedure Actual call name of the procedure. Use mixed case to emphasize procedure names like GetString instead of get_string. parameters Describe the registers or data passed into this procedure from the calling procedure. returns List any data being sent to the calling procedure upon termination of this procedure. description This should explain in detail the function of this procedure. Don't explain exactly how the procedure performs what you claim it can do, just explain what it does. How should be expressed in the procedure in comments. If a C program has only main, then there is no need for a procedure header. This is the only case when this is allowed simply because main is self explanatory.

  12. Naming Convention .

  13. Lab 2 ECE L 273

  14. Goal • Write Assembly Language code to evaluate expressions like: int a,b,c,d,e; a = ((b + c) - (d + e)) - 10; • Learn about: • Variables • Registers • Assembly instructions.

  15. Assembly Language Programming • Program = Data + Control Instructions • Instructions can perform only one computation at a time. For example: • ADD : Add two numbers • MOV: Move data from one location to another • CMP: Compare two values • Data • Registers • Memory

  16. Functional Abstraction Registers Memory ALU

  17. Format of Instructions label: mnemonic operand1, operand2 /* comment*/ Example movl %eax, %ebx • Label • Is used to indicate address of instruction • It is optional. Not every instruction needs to have it. • Mnemonic • Specifies the instruction or command • Operand1, Operand2 • Identify the data on which the instruction operates • Not all instructions have both the operands. • Operand1 is the Source and Operand2 is the Destination. • Atleast one operand has to be a register. • Comment • Is used optionally to convey the meaning associated with the instruction

  18. Data - Registers These eight registers are available for storing operands and pointers.

  19. Data – Memory (variables) int a = 10; Assembler Directive Variable Name Number of bytes .comm a, 4 movl $10, a a: .int 10 Variable Name Data Type Initialization Value Constant Value

  20. Datatypes • Byte (8 bits) a: .char ‘s’ movb a, %bl addb $10, %bl • Word (16 bits) a: .short 10 movw, a, %bx subw $10, %bx • Long (32 bits) a: .int 100 movl a, %ebx mull %ebx

  21. Expression Evaluation movl b, %eax addl c, %eax • a = ((b + c) - (d + e)) - 10; • Evaluate ( b + c ) • Store result in Register (EAX) • Evaluate ( d + e) • Store result in another Register (EBX) • Evaluate ( b + c ) – (d + e ) • Subtract EBX from EAX • Store result by overwriting EAX • Evaluate ( b + c ) – (d + e ) – 10 • Subtract 10 from EAX • Store result by overwriting EAX • Store result back to variable a movl d, %ebx addl e, %ebx subl %ebx, %eax subl $10, %eax movl %eax, a

  22. Multiplication 16bit = 8bit * 8bit 32bit = 16bit * 16bit 64bit = 32bit * 32bit a: .int 10 b: .int 20 movl a, %eax mull b Implicitly specified Explicitly specified Implicitly specified

  23. Division (Quotient & Remainder) a: .int 10 b: .int 20 movl $0, %edx movl a, %eax divl b IMPORTANT Output 1 Output 2 Implicitly specified Implicitly specified Implicitly specified

  24. Assignment int digit1, digit2, digit3; int diff; int sum; int product; int remainder; dodiff() { diff = (digit1 * digit1) + (digit2 * digit2) - (digit3 * digit3); } dosumprod() { sum = digit1 + digit2 + digit3; product = digit1 * digit2 * digit3; } doremainder() { remainder = product % sum; } Implement using Assembly Programming

  25. Template .globl dosumprod .type dosumprod, @function dosumprod : /* prolog */ pushl %ebp pushl %ebx movl %esp, %ebp /* put code here */ /* epilog */ movl %ebp, %esp popl %ebx popl %ebp ret .globl doremainder .type doremainder, @function doremainder : /* prolog */ pushl %ebp pushl %ebx movl %esp, %ebp /* put code here */ /* epilog */ movl %ebp, %esp popl %ebx popl %ebp ret .globl dodiff .type dodiff, @function dodiff: /* prolog */ pushl %ebp pushl %ebx movl %esp, %ebp /* put code here */ /* epilog */ movl %ebp, %esp popl %ebx popl %ebp ret

  26. Assignment – Due in 2 weeks

  27. Lab 3 ECE L 273

  28. Goal • Write Assembly language instructions similar to following Control Statements: int i; do { ... code block 1 ... } while(--i); int i; for (i = 0; i < 100; i++) { ... code block 1 ... } int a, b; if (a > b) { ... code block 1 ... } else { ... code block 2 ... }

  29. Control Statements • Without control statements all the assembly instructions are executed sequentially (one after the other) • Non-trivial programs require • Conditional execution of code • Repetitive execution of same part code • Typical control structures available in High level languages are • If-else • For loop • switch

  30. Control Structures in Assembly • Control structures are not directly available in assembly language programming • Support for implementing the control structures is provided using • special register (EFLAGS), • side-effects, • conditional jumps (jle, jng, …)

  31. EFLAGS • EFLAGS is a 32-bit register with specific meaning assigned to bits within it. A bit within this register represents status of a flag. • Example Flags: • CF: Carry/Borrow • PF: Parity • ZF: Zero Flag • SF: Sign Flag

  32. Side Effects and EFLAGS • When an assembly instruction is executed, the result value determines what flags are set in EFLAGS register (side effects). • If the result is zero, ZF is set to 1 • If the result is negative, SF is set to 1 • And so on … • These changes are considered side effects as EFLAGS is not explicitly specified as operand for the assembly instructions. • Conditional jumps use side effects to determine which path within the program should be taken.

  33. Example Causes Side-Effect by setting flags like ZF or SF in EFLAGS movl a, %eax cmpl b, %eax jng lbl_skip movl $10, c lbl_skip: movl $20, d if ( a > b ) { c = 10; } d = 20; Checks the EFLAGS and decides whether or not to jump to instruction at label lbl_skip. If the jump doesn’t take place then the immediately following instruction in executed

  34. if-else construct Option 1 is preferred as it maintains the statement sequence as in it’s C equivalent. Also, it is easier to write nested if-else statements with option1. Option 1 Option 2 if ( a > b ) { s1 s2 }else { s3 s4 } s5 s6 movl a, %eax cmpl b, %eax jng lbl_else s1 s2 jmp lbl_more lbl_else: s3 s4 lbl_more: s5 s6 movl a, %eax cmpl b, %eax jg lbl_if s3 s4 jmp lbl_more lbl_if: s1 s2 lbl_more: s5 s6

  35. Nested if-else if ( a > b ) { s1 s2 if (c > d) { s3 s4 } s5 s6 }else { s7 s8 } s9 s10 First, write code for the outermost if-else structure Next, fill in the code for the nested part. movl a, %eax cmpl b, %eax jng lbl_else . . . jmp lbl_more lbl_else: s7 s8 lbl_more: s9 s10 s1 s2 movl c, %eax cmpl, d, %eax jng lbl_nest s3 s4 lbl_nest: s5 s6

  36. For loop Step1 Step2 Step4 Step1 for ( i = 0; i < 100; i++ ) { s1 s2 } s3 s4 movl $0, i lbl_for: cmpl $100, i jnl lbl_more s1 s2 inc i jmp lbl_for lbl_more: s3 s4 Step2 Step3 Step3 Step4

  37. loop statement int i; do { s1 s2 } while( --i ); s3 s4 movl i, %ecx lbl_do: s1 s2 loop lbl_do lbl_more: s3 s4 Only %ecx can be used as counter register Every time loop instruction is executed, %ecx is auto-decremented by 1 (one). The loop breaks when %ecx reaches zero.

  38. Assignment – Due in 2 weeks

  39. Lab 4 ECE L 273

  40. Goal • Write Assembly language instructions for handling Arrays and Pointers: int a[10]; int *ap; int i = 3; main() { ap = &(a[0]); ap[3] = 50; ap[i] = 60; } int a[10]; int i = 2; main() { a[0] = 10; a[4] = 20; a[i] = 30; }

  41. Pointers - Review • Pointer – A variable which contains memory-address of another variable. int x = 1, y = 2; int *ip; ip = &x; y = *ip; Addr=100 Addr=104 Addr=108 x x 7 7 y y 2 7 100 100 ip ip Addr=100 Addr=104 Addr=108

  42. Address Arithmetic Address = 100 Address = 100 Address = 100 char a[10]; char *pa = &a; pa = pa + 1; short a[10]; short *pa = &a; pa = pa + 1; int a[10]; int *pa = &a; pa = pa + 1; Address increments by 1. pa = 101 Address increments by 2. pa = 102 Address increments by 4. pa = 104

  43. Addressing Modes • Immediate • Register • Direct • Indexed • Register Indirect • Base-Indexed

  44. Immediate and Register Immediate Addressing Mode Register Addressing Mode movl %eax, %ebx • movl $4, %eax Location (Register) of Data value is known at compile time Data value itself is known at compile time

  45. Direct Addressing Mode C Code Equivalent Assembly Code .comm a 40 i: .int 2 movl $10, a movl $20, a + 16 int a[10]; int i = 2; a[0] = 10; a[4] = 20; Address of a is same as address of a[0] Address of a and Address a + 16 are known at compile time.

  46. Indexed Addressing Mode C Code Equivalent Assembly Code .comm a 40 i: .int 2 movl i, %edi movl $30, a(, %edi, 4) “ i ” is a variable and it’s value need not be known at compile time. int a[10]; int i = 2; a[i] = 30; Address of a[i] is not known during compilation; it has to be calculated at runtime. • Two step process: • Use %edi as index register • Identify address of data as: a + (%edi * 4) Offset in bytes Base Address

  47. Register Indirect Addressing • The address of data is specified in the register %ebx .comm p, 4 movl p, %ebx movl $40, (%ebx) int *p; main() { *p = 40; } movl arr, %ebx movl $20, 8(%ebx) int arr[10]; arr[2] = 20; Identify address of data as: %ebx + 8

  48. Base Indexed Addressing • Address = BaseAddress + Index*sizeofdata • BaseAddress is specified by %ebx • Index is specified by either %esi or %edi int *ap; int i; main() { ap[i] = 60; } .comm ap, 4 .comm i, 4 movl ap, %ebx movl i, %edi movl $60, (%ebx, %edi, 4) • Two step process: • Use %edi as index register • Identify address of data as: %ebx + (%edi * 4)

  49. Recap • Immediate • movl $4, %eax • Register • movl %eax, %ebx • Direct • movl %eax, a • movl %eax, a+16 • Indexed • movl $30, a(, %edi, 4) • Register Indirect • movl $40, (%ebx) • Base-Indexed • movl $60, (%ebx, %edi, 4)

  50. Assignment – Due in 2 weeks

More Related