CSE 30 Spring 2007 Final Exam

Similar documents
CSE 30 Fall 2007 Final Exam

CSE 30 Winter 2009 Final Exam

CSE 30 Spring 2006 Final Exam

CSE 30 Fall 2006 Final Exam

CSE 30 Fall 2012 Final Exam

CSE 30 Winter 2014 Final Exam

CSE 30 Fall 2013 Final Exam

Midterm CSE 131 Fall 2014

Final CSE 131 Winter 2010

Final CSE 131 Fall 2015

Midterm CSE 131 Winter 2012

Final CSE 131 Winter 2012

Final CSE 131 Fall 2014

Midterm CSE 131 Winter 2014

Number Systems for Computers. Outline of Introduction. Binary, Octal and Hexadecimal numbers. Issues for Binary Representation of Numbers

CPS 104 Computer Organization and Programming Lecture-2 : Data representations,

Chapter 2 Number System

Data Representation and Binary Arithmetic. Lecture 2

Number Representations

Midterm CSE 131 Winter 2013

Final CSE 131B Spring 2004

Midterm CSE 131 Winter 2015

Chapter 2 Bits, Data Types, and Operations

Do not start the test until instructed to do so!

Fundamentals of Programming (C)

Final CSE 131B Spring 2005

CS/ECE 252: INTRODUCTION TO COMPUTER ENGINEERING UNIVERSITY OF WISCONSIN MADISON

Do not start the test until instructed to do so!

Chapter 2 Bits, Data Types, and Operations

CS/ECE 252: INTRODUCTION TO COMPUTER ENGINEERING UNIVERSITY OF WISCONSIN MADISON

Final CSE 131B Winter 2003

CS341 *** TURN OFF ALL CELLPHONES *** Practice NAME

Chapter 2 Bits, Data Types, and Operations

Do not start the test until instructed to do so!

Under the Hood: Data Representation. Computer Science 104 Lecture 2

CPSC 213. Introduction to Computer Systems. Procedures and the Stack. Unit 1e

Chapter 3. Information Representation

CPSC 213. Introduction to Computer Systems. Procedures and the Stack. Unit 1e

Chapter 2 Bits, Data Types, and Operations

Bits and Bytes. Data Representation. A binary digit or bit has a value of either 0 or 1; these are the values we can store in hardware devices.

Data Representa5on. CSC 2400: Computer Systems. What kinds of data do we need to represent?

Chapter 2 Bits, Data Types, and Operations

Numbers and Computers. Debdeep Mukhopadhyay Assistant Professor Dept of Computer Sc and Engg IIT Madras

The Binary Number System

Oberon Data Types. Matteo Corti. December 5, 2001

CPSC 213. Introduction to Computer Systems. Procedures and the Stack. Unit 1e

CSE-1520R Test #1. The exam is closed book, closed notes, and no aids such as calculators, cellphones, etc.

Data Representa5on. CSC 2400: Computer Systems. What kinds of data do we need to represent?

Experiment 3. TITLE Optional: Write here the Title of your program.model SMALL This directive defines the memory model used in the program.

CSE-1520R Test #1. The exam is closed book, closed notes, and no aids such as calculators, cellphones, etc.

Exercises Software Development I. 03 Data Representation. Data types, range of values, internal format, literals. October 22nd, 2014

EE 109 Unit 3. Analog vs. Digital. Analog vs. Digital. Binary Representation Systems ANALOG VS. DIGITAL

Number Systems Base r

Chapter 8. Characters and Strings

Number System (Different Ways To Say How Many) Fall 2016

Fundamental Data Types

5/17/2009. Digitizing Discrete Information. Ordering Symbols. Analog vs. Digital

ASSIGNMENT 5 TIPS AND TRICKS

1.1. INTRODUCTION 1.2. NUMBER SYSTEMS

EE 109 Unit 2. Analog vs. Digital. Analog vs. Digital. Binary Representation Systems ANALOG VS. DIGITAL

Fundamentals of Programming

231 Spring Final Exam Name:

CMSC 313 Lecture 03 Multiple-byte data big-endian vs little-endian sign extension Multiplication and division Floating point formats Character Codes

Binary Numbers. The Basics. Base 10 Number. What is a Number? = Binary Number Example. Binary Number Example

EE 109 Unit 2. Binary Representation Systems

DATA REPRESENTATION. Data Types. Complements. Fixed Point Representations. Floating Point Representations. Other Binary Codes. Error Detection Codes

Unit 3. Analog vs. Digital. Analog vs. Digital ANALOG VS. DIGITAL. Binary Representation

Simple Data Types in C. Alan L. Cox

3.1. Unit 3. Binary Representation

Midterm CSE 131B Spring 2005

231 Spring Final Exam Name:

CMSC 313 COMPUTER ORGANIZATION & ASSEMBLY LANGUAGE PROGRAMMING LECTURE 02, FALL 2012

Midterm Exam, Fall 2015 Date: October 29th, 2015

EXPERIMENT 8: Introduction to Universal Serial Asynchronous Receive Transmit (USART)

Question Points Score Total: 100

EXPERIMENT 7: Introduction to Universal Serial Asynchronous Receive Transmit (USART)

Lecture (09) x86 programming 8

Introduction to Computer Engineering. CS/ECE 252, Spring 2017 Rahul Nayar Computer Sciences Department University of Wisconsin Madison

Appendix A Developing a C Program on the UNIX system

Unit 3, Lesson 2 Data Types, Arithmetic,Variables, Input, Constants, & Library Functions. Mr. Dave Clausen La Cañada High School

void mouseclicked() { // Called when the mouse is pressed and released // at the same mouse position }

Lecture 10 Arrays (2) and Strings. UniMAP SEM II - 11/12 DKT121 1

Compiler Design. Homework 1. Due Date: Thursday, January 19, 2006, 2:00

Introduction to Embedded Systems EE319K (Gerstlauer), Spring 2013

Xuan Guo. CSC 3210 Computer Organization and Programming Georgia State University. March 12, Xuan Guo

Number Systems II MA1S1. Tristan McLoughlin. November 30, 2013

n NOPn Unary no operation trap U aaa NOP Nonunary no operation trap i

Week 1 / Lecture 2 8 March 2017 NWEN 241 C Fundamentals. Alvin Valera. School of Engineering and Computer Science Victoria University of Wellington

2a. Codes and number systems (continued) How to get the binary representation of an integer: special case of application of the inverse Horner scheme

This is great when speed is important and relatively few words are necessary, but Max would be a terrible language for writing a text editor.

CS/ECE 252: INTRODUCTION TO COMPUTER ENGINEERING UNIVERSITY OF WISCONSIN MADISON

Xuan Guo. Lecture XIX: Subroutines (2) CSC 3210 Computer Organization and Programming Georgia State University. March 31, 2015.

Positional Number System

CS 159 Credit Exam. What advice do you have for students who have previously programmed in another language like JAVA or C++?

PureScan - ML1. Configuration Guide. Wireless Linear Imager Wireless Laser scanner - 1 -

Chapter 1. Hardware. Introduction to Computers and Programming. Chapter 1.2

Chapter 7. Binary, octal and hexadecimal numbers

CMPSC 311- Introduction to Systems Programming Module: Strings

Digital Representation

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

Transcription:

Login: cs30x Student ID Name Signature CSE 30 Spring 2007 Final Exam 1. Number Systems (25 points) 2. Binary Addition/Condition Code Bits/Overflow Detection (12 points) 3. Branching (19 points) 4. Bit Operations (13 points) 5. Recursion/SPARC Assembly (10 points) 6. Local Variables, The Stack, Return Values (22 points) 7. More Recursive Subroutines (12 points) 8. Floating Point (12 points) 9. Machine Instructions (20 points) 10. Linkage, Scope, Lifetime, Data (32 points) 11. Load/Store/Memory (9 points) 12. Miscellaneous (29 points) SubTotal Extra Credit Total (215 points) (10 points) 1

1. Number Systems Convert FB3C 16 (2 s complement, 16-bit word) to the following. (6 points) binary (straight base conversion) octal (straight base conversion) decimal (convert to signed decimal) Convert 415 10 to the following (assume 16-bit word). Express answers in hexadecimal. (3 points) sign-magnitude 1 s complement 2 s complement Convert -396 10 to the following (assume 16-bit word). Express answers in hexadecimal. (6 points) sign-magnitude 1 s complement 2 s complement C Compiling Sequence Put the following in the correct order/sequence using the numbers to the left of each word: (10 points) 1. loader 5. program execution 9. resulting.s file 2. executable (.exe/a.out) 6. assembler 10. resulting.o file 3. compiler 7. preprocessor 4. source code (.c file) 8. linkage editor > > > > > > > > > 2

2. Binary Addition/Condition Code Bits/Overflow Detection Indicate what the condition code bits are when adding the following 8-bit 2 s complement numbers. (12 points) 00101100 01110110 10101010 +11010100 +01001101 +11010110 --------- --------- --------- N Z V C N Z V C N Z V C ----------------- ----------------- ----------------- ----------------- ----------------- ----------------- 3. Branching Given the following SPARC assembly code write the equivalent function in C. Use only standard loops and if/else statements; no gotos! (19 points) SPARC ASSEMBLY.global subtract.section ".text" C subtract: save %sp, -96, %sp mov %g0, %l0! local var count! mapped to %l0 cmp %i0, %i1 be L3 bl L2 L1: inc %i1 inc %l0 cmp %i0, %i1 bne L1 mov %l0, %i0 ret restore L2: inc %i0 inc %l0 L3: cmp %i0, %i1 bne L2 mov %l0, %i0 neg %i0 ret restore mov %g0, %i0 ret restore 3

4. Bit Operations What is the value of %l0 after each statement is executed? Express your answers in hexadecimal. set 0xDB3724AC, %l0 set 0xA8675309, %l1 or %l0, %l1, %l0 Value in %l0 is (2 points) set 0xDB3724AC, %l0 srl %l0, 13, %l0 Value in %l0 is (2 points) set 0xDB3724AC, %l0 sll %l0, 9, %l0 Value in %l0 is (2 points) set 0xDB3724AC, %l0 set 0x????????, %l1 btog %l1, %l0! Value in %l0 is now OxCAFEBABE Value set in %l1 must be this bit pattern (3 points) set 0xDB3724AC, %l0 set 0xA8675309, %l1 and %l0, %l1, %l0 Value in %l0 is (2 points) set 0xDB3724AC, %l0 sra %l0, 7, %l0 Value in %l0 is (2 points) 4

5. Recursion/SPARC Assembly Given main.s and recurse.s, what gets printed when executed? (10 points) main:.global main /* main.s */.section ".text" save %sp, -96, %sp mov 3, %o0 mov 2, %o1 call recurse ret restore.global recurse /* recurse.s */.section ".rodata" fmt:.asciz "%d\n".section ".text" recurse: save %sp, -(92 + 8) & -8, %sp! 2 local int variables sub %i0, %i1, %l0 st %l0, [%fp - 4] set fmt, %o0 mov %l0, %o1 call printf cmp %i0, 8 bge L1 add %i0, 2, %o0 mov %i1, %o1 call recurse Put output here ld [%fp - 4], %l0 add %l0, %o0, %l1 st %l1, [%fp - 8] L1: L2: ba L2 st %l0, [%fp - 8] set fmt, %o0 ld [%fp - 8], %o1 call printf ld [%fp - 8], %i0 ret restore 5

6. Local Variables, The Stack, and Return Values Here is a C function that allocates a few local variables, performs some assignments and returns a value. Don t worry about any local variables not being initialized before being used. Just do a direct translation. Draw lines. C int fubar( char x, short y ) { int *local_stack_var1; struct foo { char s1[3]; short s2; int s3[3]; local_stack_var2; char *local_stack_var3; local_stack_var2.s2 = y + *local_stack_var1++; /* 1 */ local_stack_var2.s1[1] = *local_stack_var3 + x; /* 2 */ *local_stack_var1 = local_stack_var2.s3[2] - y; /* 3 */ return ( local_stack_var2.s2 + x ); /* 4 */ Write the equivalent full utimized SPARC assembly language module to perform the equivalent. You must allocate all local variables on the stack. No short cuts. Treat each statement independently. (22 points) 6

7. More Recursive Subroutines What is the output of the following program? (12 pts) #include <stdio.h> int AAA( int x ) { int result; printf( "x = %d\n", x ); if ( x <= 1 ) return 1; else { result = (BBB( x - 1 ) + x); printf( "result = %d\n", result ); return result; int BBB( int x ) { int result; printf( "x = %d\n", x ); if ( x <= 1 ) return 2; else { result = (AAA( x - 2 ) + x); printf( "result = %d\n", result ); return result; Put output here int main( int argc, char *argv[] ) { printf( "%d\n", BBB( 8 ) ); return 0; 7

8. Floating Point Convert 136.625 10 (decimal fixed-point) to binary fixed-point (binary) and single-precision IEEE floating-point (hexadecimal) representations. binary fixed-point IEEE floating-point (2 points) (4 points) Convert 0xC34CC000 (single-precision IEEE floating-point representation) to fixed-point decimal. fixed-point decimal (6 points) 9. Machine Instructions Translate the following instructions into SPARC machine code. Use hexadecimal values for your answers. If an instruction is a branch, specify the number of instructions away for the target (vs. a Label). addcc %l2, -9, %i1 (5 points) sth %o2, [%l3 + %g5] (5 points) Translate the following SPARC machine code instructions into SPARC assembly instructions. 0x24800008 0xBC1CC009 (5 points) (5 points) 8

10. Linkage, Scope, Lifetime, Data For the following program fragment, specify what C runtime area/segment will be used for each variable definition or statement: (32 points 1 point each) static int a; int b = 42; int c; static int d = 404; static int foo( int e ) { ( foo ) ( e ) static double f = 4.20; int g = 8675309; static int *h; h = (int *) malloc( b ); int (*i)(int) = foo; ( i ) (where h is pointing) (where i is pointing)... Fill in the letter corresponding to the correct Fill in the letter corresponding to the correct scoping/visibility for each of the variables: lifetime for each of the variables: A) Global across all modules/functions A) Exists from the time the program is loaded to linked with this source file. the point when the program terminates. B) Global just to this source file. B) Exists from the time function foo() is called to C) Local to function foo(). the point when foo() returns. foo foo i i h h g g f f e e d d c c b b a a 9

11. Load/Store/Memory What gets printed in the following program? (9 points).global main.section ".data" fmt:.asciz "0x%08X\n"! prints value as hex 0xXXXXXXXX c:.byte 0x88.align 2 s:.half 0xCAFE.align 4 i1:.word 0x9ABCD123 i2:.word 0x9ABCD123 i3:.word 0x9ABCD123 x:.word 0x00004444 main:.section ".text" save %sp, -96, %sp set i1, %l0 set s, %l1 ldsh [%l1], %l1 sth %l1, [%l0+2] stb %l1, [%l0+1] set fmt, %o0 ld [%l0], %o1 call printf set i2, %l0 set c, %l1 ldsb [%l1], %l1 sth %l1, [%l0] stb %l1, [%l0+3] set fmt, %o0 ld [%l0], %o1 call printf set x, %l1 set i3, %l0 ldsb [%l1+2], %l2 sth %l2, [%l0] stb %l2, [%l0+2] set fmt, %o0 ld [%l0], %o1 call printf ret restore 10

12. Miscellaneous What is the output of the following program? (8 points) #include <stdio.h> #define SIZE 4 char * mystery( unsigned char bytes[], size_t size ); int main() { unsigned char bytes[size] = { 0x19, 0x42, 0x08, 0x37 ; printf( "%s\n", mystery( bytes, SIZE ) ); return 0; char * mystery( unsigned char bytes[], size_t size ) { int i; int j = 0; char * str = (char *) malloc ((size * 2) + 1); for ( i = 0; i < size; ++i ) { str[j++] = (bytes[i] >> 4) + '0'; str[j++] = (bytes[i] & 0xF) + '0'; Put output here str[j] = '\0'; return str; Give the equivalent C expression for the following without using array access square brackets ([ ]). (1 pt) a[3] Given the following program, order the printf() lines so that the values that are printed when run on a Sun SPARC Unix system are displayed from smallest value to largest value. (2 points each) void foo( int, int ); /* Function Prototype */ static int a; int main( int argc, char *argv[] ) { int b; int c = 69; foo( argc, c ); prints smallest value /* 1 */ (void) printf( "b --> %p\n", &b ); /* 2 */ (void) printf( "malloc --> %p\n", malloc(50) ); /* 3 */ (void) printf( "foo --> %p\n", foo ); /* 4 */ (void) printf( "a --> %p\n", &a ); /* 5 */ (void) printf( "argv --> %p\n", &argv ); /* 6 */ (void) printf( "c --> %p\n", &c ); void foo( int d, int e ) { int f = e; static int g = 5; /* 7 */ (void) printf( "g --> %p\n", &g ); prints /* 8 */ (void) printf( "e --> %p\n", &e ); largest value /* 9 */ (void) printf( "f --> %p\n", &f ); /* 10 */ (void) printf( "d --> %p\n", &d ); 11

Extra Credit (10 points) Consider the following SPARC assembly program.global main fmt: foo: main:.section ".rodata".asciz "%c".align 2.half 0x6465, 0x6B61, 0x4E20, 0x6672, 0x7553, 0x0000.section ".text" save %sp, -96, %sp clr %l1 set foo, %l0 ldub [%l0+%l1], %o1 tst %o1! cmp %o1, %g0 be end loop: set fmt, %o0 ldub [%l0+%l1], %o1 call printf, 2 inc %l1 end: ldub [%l0+%l1], %o1 tst %o1 bne loop set fmt, %o0 mov 0x0A, %o1 call printf, 2 ret restore What gets printed? (4 points) What is the value of each of the following expressions taken sequentially based on changes that may have been made in previous statements? (6 points) char *a = "BuildOnACommit!"; char *p = a + 7; *&*p-- *--p + 1 *&(2[a]) p[-2] *a++ *(a+3) 12

Hexadecimal - Character 00 NUL 01 SOH 02 STX 03 ETX 04 EOT 05 ENQ 06 ACK 07 BEL 08 BS 09 HT 0A NL 0B VT 0C NP 0D CR 0E SO 0F SI 10 DLE 11 DC1 12 DC2 13 DC3 14 DC4 15 NAK 16 SYN 17 ETB 18 CAN 19 EM 1A SUB 1B ESC 1C FS 1D GS 1E RS 1F US 20 SP 21! 22 " 23 # 24 $ 25 % 26 & 27 28 ( 29 ) 2A * 2B + 2C, 2D - 2E. 2F / 30 0 31 1 32 2 33 3 34 4 35 5 36 6 37 7 38 8 39 9 3A : 3B ; 3C < 3D = 3E > 3F? 40 @ 41 A 42 B 43 C 44 D 45 E 46 F 47 G 48 H 49 I 4A J 4B K 4C L 4D M 4E N 4F O 50 P 51 Q 52 R 53 S 54 T 55 U 56 V 57 W 58 X 59 Y 5A Z 5B [ 5C \ 5D ] 5E ^ 5F _ 60 61 a 62 b 63 c 64 d 65 e 66 f 67 g 68 h 69 i 6A j 6B k 6C l 6D m 6E n 6F o 70 p 71 q 72 r 73 s 74 t 75 u 76 v 77 w 78 x 79 y 7A z 7B { 7C 7D 7E ~ 7F DEL 13

Scratch Paper 14

Scratch Paper 15