Difference between revisions of "SPO600 64-bit Assembly Language Lab"

From CDOT Wiki
Jump to: navigation, search
Line 1: Line 1:
 
[[Category:SPO600 Labs]][[Category:Assembly Language]]
 
[[Category:SPO600 Labs]][[Category:Assembly Language]]
  
{{Admon/caution|Not Updated|This page contains outdated information. It will be updated with new information for Fall 2014.}}
 
 
{{Admon/lab|Purpose of this Lab|In this lab, you will experiment with assembler on the x86_64 and aarch64 platforms.}}
 
{{Admon/lab|Purpose of this Lab|In this lab, you will experiment with assembler on the x86_64 and aarch64 platforms.}}
{{Admon/tip|Ireland|Perform this lab on ireland.proximity.on.ca.}}
+
{{Admon/tip|Australia and Red|Perform this lab on <code>australia.proximity.on.ca</code> (for x86_64) and red (for aarch64, accessed via port 2222 on <code>iraq.proximity.on.ca</code>.}}
  
 
== Lab 3 ==
 
== Lab 3 ==
 +
 +
<!--
 +
 +
### THIS COMMENTED-OUT SECTION DESCRIBES THE
 +
### CONFIGURATION USED FOR THE WINTER 2014
 +
### OFFERING OF THE SPO600 COURSE, WHERE THE
 +
### AARCH64 WORK WAS DONE IN EMULATION ALONGSIDE
 +
### THE X86_64 WORK ON THE INTEL HOST "IRELAND".
 +
### IN FALL 2014, AARCH64 HARDWARE WAS AVAILABLE,
 +
### AND IRELAND HAD FAILED, SO WE SWITCHED TO
 +
### THOSE HOSTS.
  
 
=== Ireland - Configuration ===
 
=== Ireland - Configuration ===
Line 28: Line 38:
  
 
Throughout this lab, take advantage of ''[[make and Makefiles|make]]'' whenever possible.
 
Throughout this lab, take advantage of ''[[make and Makefiles|make]]'' whenever possible.
 +
 +
-->
 +
 +
=== Initial Code ===
 +
 +
The code examples for this lab are available at this link: http://england/spo600/spo600-lab3-examples.tgz
 +
 +
Please download this archive to your accounts on Australia and Red, and unpack the archive on both systems. Do all of the work for the x86_64 architecture on Australia, and all of the work on the aarch64 architecture on Red.
 +
 +
Unpacking the archive in your home directory will produce the following directory structure:
 +
 +
spo600
 +
`-- examples
 +
    `-- hello                    # "hello world" example programs
 +
        |-- assembler
 +
        |  |-- aarch64          # aarch64 gas assembly language version
 +
        |  |  |-- hello.s
 +
        |  |  `-- Makefile
 +
        |  `-- x86_64            # x86_64 assembly language versions
 +
        |      |-- hello-gas.s  # ... gas syntax
 +
        |      |-- hello-nasm.s  # ... nasm syntax
 +
        |      `-- Makefile
 +
        `-- c                    # Portable C versions
 +
            |-- hello2.c          # syscall wrapper version
 +
            |-- hello.c          # printf version
 +
            `-- Makefile
 +
 +
Throughout this lab, take advantage of ''[[make and Makefiles|make]]'' whenever possible.
 +
 +
=== References ===
 +
* [[Assembler Basics]]
 +
** [[x86_64 Register and Instruction Quick Start]]
 +
** [[aarch64 Register and Instruction Quick Start]]
  
 
=== Group Lab Tasks ===
 
=== Group Lab Tasks ===
Line 51: Line 94:
 
   
 
   
 
  loop:
 
  loop:
     /* ... do something useful here ... */
+
     /* ... body of the loop ... do something useful here ... */
 
   
 
   
 
     inc    %r15                /* increment index */
 
     inc    %r15                /* increment index */
Line 91: Line 134:
  
 
3. Blog about the programs you've written. Describe the experience of writing and debugging in assembler, as compared to writing in other languages. Contrast x86_64 and aarch64 assembler, your experience with each, and your opinions of each. Include links to the source code for both of your assembler programs.
 
3. Blog about the programs you've written. Describe the experience of writing and debugging in assembler, as compared to writing in other languages. Contrast x86_64 and aarch64 assembler, your experience with each, and your opinions of each. Include links to the source code for both of your assembler programs.
 
=== References ===
 
* [[Assembler Basics]]
 
** [[x86_64 Register and Instruction Quick Start]]
 
** [[aarch64 Register and Instruction Quick Start]]
 

Revision as of 14:06, 16 September 2014


Lab icon.png
Purpose of this Lab
In this lab, you will experiment with assembler on the x86_64 and aarch64 platforms.
Idea.png
Australia and Red
Perform this lab on australia.proximity.on.ca (for x86_64) and red (for aarch64, accessed via port 2222 on iraq.proximity.on.ca.

Lab 3

Initial Code

The code examples for this lab are available at this link: http://england/spo600/spo600-lab3-examples.tgz

Please download this archive to your accounts on Australia and Red, and unpack the archive on both systems. Do all of the work for the x86_64 architecture on Australia, and all of the work on the aarch64 architecture on Red.

Unpacking the archive in your home directory will produce the following directory structure:

spo600
`-- examples
    `-- hello                     # "hello world" example programs
        |-- assembler
        |   |-- aarch64           # aarch64 gas assembly language version
        |   |   |-- hello.s
        |   |   `-- Makefile
        |   `-- x86_64            # x86_64 assembly language versions
        |       |-- hello-gas.s   # ... gas syntax
        |       |-- hello-nasm.s  # ... nasm syntax
        |       `-- Makefile
        `-- c                     # Portable C versions
            |-- hello2.c          # syscall wrapper version
            |-- hello.c           # printf version
            `-- Makefile

Throughout this lab, take advantage of make whenever possible.

References

Group Lab Tasks

1. Build and run the C versions of the program for x86_64.

2. Review, build, and run the x86_64 assembler programs. Make sure you understand the code.

4. Build and run the C versions of the program for aarch64 (note: you may need to make clean). Verify that you can disassemble the object code in the ELF binary using objdump -d

5. Review, build, and run the aarch64 assembler programs. Make sure you understand the code.

6. Here is a basic loop in x86_64 assembler - this loops from 0 to 9, using r15 as the index (loop control) counter:

.text
.globl    _start

start = 0                       /* starting value for the loop index */
max = 10                        /* loop exits when the index hits this number (loop condition is i<max) */

_start:
    mov     $start,%r15         /* loop index */

loop:
    /* ... body of the loop ... do something useful here ... */

    inc     %r15                /* increment index */
    cmp     $max,%r15           /* see if we're done */
    jne     loop                /* loop if we're not */

    mov     $0,%rdi             /* exit status */
    mov     $60,%rax            /* syscall sys_exit */
    syscall

Extend this code, combining it with code from the "Hello World" example, so that it prints each digit from 0 to 9 like this:

Loop: 0
Loop: 1
Loop: 2
Loop: 3
Loop: 4
Loop: 5
Loop: 6
Loop: 7
Loop: 8
Loop: 9
Idea.png
Character conversion
In order to print the loop index value, you will need to convert from an integer to digit character. In ASCII/ISO-9959-1/Unicode UTF-8, the digit characters are in the range 48-57 (0x30-0x39). You will also need to assemble the message to be printed for each line - you can do this by writing the digit into the message buffer before outputting it to stdout, or you can perform a sequence of writes for the thee parts of the message ('Loop: ', number, '\n').

7. Repeat step 6 for aarch64.

8. Extend the code to loop from 00-30, printing each value as a 2-digit decimal number.

Idea.png
2-Digit Conversion
You will need to take the loop index and convert it to a 2-digit decimal number by dividing by 10. To do this, use the div instruction, which takes the dividend from rax and the divisor from register supplied as an argument. The quotient will be placed in rax and the remainder will be placed in rdx.

9. Repeat step 8 for aarch64.

Deliverables

1. Complete the group lab section, above.

2. Extend the assembler programs (both x86_64 and aarch64) to suppress the high digit when it is 0. In other words, the printed values should progress from 0-30 instead of from 00-30. It is OK to output a space in place of the suppressed digit (this will cause the numbers to be aligned vertically in the printout).

3. Blog about the programs you've written. Describe the experience of writing and debugging in assembler, as compared to writing in other languages. Contrast x86_64 and aarch64 assembler, your experience with each, and your opinions of each. Include links to the source code for both of your assembler programs.