Solved-Computing Machinery I -Assignment 3 -Solution

$35.00 $24.00

Sorting One-Dimensional Arrays Create an ARMv8 assembly language program that implements the following algorithm: #define SIZE 100 int main() { int v[SIZE], gap, i, j, temp; / Initialize array to random positive integers mod 512 for (i = 0; i < SIZE; i++) v[i] = rand() & 0x1FF; / Display the unsorted array printf(“Unsorted array:\n”);…

You’ll get a: . zip file solution

 

 
Categorys:

Description

5/5 – (2 votes)

Sorting One-Dimensional Arrays

Create an ARMv8 assembly language program that implements the following algorithm:

#define SIZE 100

int main()
{

int v[SIZE], gap, i, j, temp;

/ Initialize array to random positive integers mod 512 for (i = 0; i < SIZE; i++)

v[i] = rand() & 0x1FF;

/ Display the unsorted array
printf(“Unsorted array:\n”);

for (i = 0; i < SIZE; i++) printf(“v[%d] = %d\n”, i, v[i]); / Sort the array into descending order using a shell sort for (gap = SIZE / 2; gap > 0; gap /= 2) {
for (i = gap; i < SIZE; i++) { for (j = i – gap; j >= 0 && v[j] < v[j + gap]; j -= gap) {

/ Exchange out of order items temp = v[j];

v[j] = v[j + gap]; v[j + gap] = temp;
}
}
}

/ Display the sorted array printf(“\nSorted array:\n”); for (i = 0; i < SIZE; i++)
printf(“v[%d] = %d\n”, i, v[i]);

return 0;

}

Create space on the stack to store all local variables, using the techniques described in lectures. Use m4 macros or assembler equates for all stack variable offsets. Optimize your code so that it uses as few instructions as possible. Be sure, however, that you always read or write memory when using or assigning to the local variables. Name the program assign3.asm.

Also run the program in gdb, first displaying the contents of the array before sorting, and then displaying it again once the sort is complete (use the x command to examine memory). You should show that the algorithm is working as expected. Capture the gdb session using the script UNIX command, and name the output file script.txt.

Other Requirements

Make sure your code is readable and fully documented, including identifying information at the top of each file. You must comment each line of assembly code. Your code should also be well designed: make sure it is well organized, clear, and concise.

New Skills Needed for this Assignment:

• Use of the stack to store local variables

• Addressing stack variables

• Use of m4 macros or assembler equates for stack variable offsets

• Storing and addressing one-dimensional arrays on the stack

Submit the following:

1. Your assembly source code files for the program, and your script output file. Use the Assignment 3 Dropbox Folder in D2L to submit electronically. The TA will assemble and run your program to test it. Be sure to name your program and script file as described above.
Computing Machinery I

Assignment 3 Grading

Student:__________________________________________

Functionality
Loop to initialize array 2 ______
Display of unsorted array 2 ______
Outer loop of sort 2 ______
First inner loop of sort 2 ______
Innermost loop of sort 2 ______
Comparison of array elements 2 ______
Exchange of array elements 2 ______
Display of sorted array 2 ______
Use of macros/equates for stack variable offsets 4 ______
Optimization 4 ______
Script showing gdb session 2 ______
Complete documentation and commenting 4 ______
Formatting (use of columns and white space) 4 ______
Design quality 2 ______
Total 36 ______ _____%