02/02/10 20:53 Assembly Questions תרגול 12 1.

Slides:



Advertisements
Similar presentations
Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.
Advertisements

Fabián E. Bustamante, Spring 2007 Machine-Level Programming II: Control Flow Today Condition codes Control flow structures Next time Procedures.
Review of the MIPS Instruction Set Architecture. RISC Instruction Set Basics All operations on data apply to data in registers and typically change the.
Program Optimization (Chapter 5)
Machine/Assembler Language Putting It All Together Noah Mendelsohn Tufts University Web:
1 Lecture 4: Procedure Calls Today’s topics:  Procedure calls  Large constants  The compilation process Reminder: Assignment 1 is due on Thursday.
C Programming and Assembly Language Janakiraman V – NITK Surathkal 2 nd August 2014.
1 Homework / Exam Turn in mp2 at start of class today Reading –PAL, pp 3-6, Exam #1 next class –Open Book / Open Notes –NO calculators or other.
Kevin Walsh CS 3410, Spring 2010 Computer Science Cornell University Prelim Review.
University of Washington Last Time For loops  for loop → while loop → do-while loop → goto version  for loop → while loop → goto “jump to middle” version.
1 ICS 51 Introductory Computer Organization Fall 2006 updated: Oct. 2, 2006.
Lecture 22 Code Generation Topics Arrays Code Generation Readings: 9 April 10, 2006 CSCE 531 Compiler Construction.
Stack Activation Records Topics IA32 stack discipline Register saving conventions Creating pointers to local variables February 6, 2003 CSCE 212H Computer.
6.828: PC hardware and x86 Frans Kaashoek
Assembly Questions תרגול 12.
1 Carnegie Mellon Stacks : Introduction to Computer Systems Recitation 5: September 24, 2012 Joon-Sup Han Section F.
Goals: To gain an understanding of assembly To get your hands dirty in GDB.
Assembly תרגול 5 תכנות באסמבלי. Assembly vs. Higher level languages There are NO variables’ type definitions.  All kinds of data are stored in the same.
University of Amsterdam Computer Systems – optimizing program performance Arnoud Visser 1 Computer Systems Optimizing program performance.
December 2, 2015Single-Instruction Multiple Data (SIMD)1 Performance Optimization, cont. How do we fix performance problems?
1 Carnegie Mellon Assembly and Bomb Lab : Introduction to Computer Systems Recitation 4, Sept. 17, 2012.
Low Level Programming Lecturer: Duncan Smeed The Interface Between High-Level and Low-Level Languages.
תרגול 5 תכנות באסמבלי, המשך
University of Amsterdam Computer Systems – the instruction set architecture Arnoud Visser 1 Computer Systems The instruction set architecture.
Arrays. Outline 1.(Introduction) Arrays An array is a contiguous block of list of data in memory. Each element of the list must be the same type and use.
1 Assembly Language: Function Calls Jennifer Rexford.
Precept 7: Introduction to IA-32 Assembly Language Programming
A job ad at a game programming company
CS 177 Computer Security Lecture 9
Reading Condition Codes (Cont.)
Instruction Set Architecture
Computer Architecture and Assembly Language
Data in Memory variables have multiple attributes symbolic name
Assembly language.
Credits and Disclaimers
C function call conventions and the stack
Credits and Disclaimers
Conditional Branch Example
Homework Reading Labs PAL, pp
143A: Principles of Operating Systems Lecture 4: Calling conventions
Homework In-line Assembly Code Machine Language
A Closer Look at Instruction Set Architectures
Recitation 2 – 2/4/01 Outline Machine Model
Assembly Language Programming V: In-line Assembly Code
Chapter 3 Machine-Level Representation of Programs
Machine-Level Programming 1 Introduction
Computer Architecture adapted by Jason Fritts then by David Ferry
Y86 Processor State Program Registers
Machine-Level Programming 4 Procedures
Assembly Language: IA-32 Instructions
Instructions - Type and Format
Condition Codes Single Bit Registers
Instructors: Majd Sakr and Khaled Harras
Machine-Level Programming 2 Control Flow
Machine-Level Programming III: Procedures Sept 18, 2001
Machine-Level Representation of Programs III
Homework Reading Machine Projects Labs PAL, pp
Bits and Bytes Topics Representing information as bits
Lecture 2 SCOPE – Local and Global variables
Machine-Level Programming 5 Structured Data
Machine-Level Programming 5 Structured Data
Chapter 3 Machine-Level Representation of Programs
Structured Data I: Homogenous Data Feb. 10, 2000
Credits and Disclaimers
Credits and Disclaimers
Credits and Disclaimers
Computer Architecture and System Programming Laboratory
Computer Architecture and System Programming Laboratory
Presentation transcript:

02/02/10 20:53 Assembly Questions תרגול 12 1

02/02/10 20:53 Q1 Consider the following assembly representation of a function foo containing a for loop

Q1 Fill in the blanks to provide the functionality of the loop 02/02/10 20:53 Q1 Fill in the blanks to provide the functionality of the loop int foo(int a) { int i; int result = _____________; for( ________; ________; i++) __________________; } return result;

Answer int foo(int a) { int i; int result = a + 2; 02/02/10 20:53 Answer int foo(int a) { int i; int result = a + 2; for (i=0; i < a; i++) result += (i + 5); result *= (i + 3); } return result;

Q2 Which of the functions compiled into the assembly code shown? 02/02/10 20:53 Q2 Which of the functions compiled into the assembly code shown?

02/02/10 20:53 Q3

02/02/10 20:53 Q3 Is the variable val stored on the stack? If so, at what byte offset(relative to %ebp) is it stored, and why is it necessary to store it on the stack? answer: yes, -4, Need to pass pointer to it to recursive call Is the variable val2 stored on the stack? If so, at what byte offset(relative to %ebp) is it stored, and why is it necessary to store it on the stack? answer: no

02/02/10 20:53 Q3 What (if anything) is stored at -24(%ebp)?If something is stored there, why is it necessary to store it? answer: the value of %ebx is saved here, because %ebx is a callee-save register What (if anything) is stored at -8(%ebp)?If something is stored there, why is it necessary to store it? answer: nothing is stored here.

Q4 Optimized the following Assembly code as much as possible: 02/02/10 20:53 Q4 movl $0, %eax movl $0, %edx movl 8(%ebp), %ebx .L1: cmpl %eax, %ebx jle .L2 movl 12(%ebp), %ecx addl %eax, %ecx addl %ecx, %edx incl %eax jmp .L1 .L2: movl %edx, %eax Optimized the following Assembly code as much as possible:

Q4 The small and obvious things: The big improvement: 02/02/10 20:53 Q4 The small and obvious things: Replace all movl $0 with xorl. Instead of using both %eax and %ebx – we can initialized %eax to 8(%ebp) and reduce it till we get zero (save the need in a saved register!) We can read the value of 12(%ebp) outside the loop and increased it by one instead of adding the index. The big improvement: Notice we are calculating the sum of an Arithmetic Series. Therefore, instead of using loops we can just calculate the formula – a much more efficient solution!

02/02/10 20:53 Q5 We are sending an ASCII file over the net from computer A to computer B. Will it always be possible for computer B to read the file while knowing nothing on computer A? Same as before only now we are sending a different file coded using the utf-8 coding?

02/02/10 20:53 Q5 Yes. In ASCII files each character is coded using one byte. Therefore, computer B doesn’t care if computer A use big or little endians. No. In UTF-8, some of the characters need more then one byte and then computer B must know if computer A use big or little endians.

02/02/10 20:53 Q6 Computer A runs program gcc in 3.2 seconds. Computer B runs the same program in 2.9 seconds. Which computer has better performance and by how much? What about computer C, which runs the program in 3.1 seconds?

02/02/10 20:53 Q6 Performance is relative so we want to measure PB/PA which is the inverse of CPUTA/CPUTB = 3.2/2.9 = 1.103. Thus the performance of computer B is 10% better that computer A. Computer C is 3% (3.2/3.1 = 1.03) better than computer A. And computer B is 7% (3.1/2.9 = 1.07) faster than computer C.

Q7 You are given the next number in binary representation: 02/02/10 20:53 Q7 You are given the next number in binary representation: 11000000001000000000000000000000 What is its value if it is: An unsigned int. A float.

02/02/10 20:53 Q7 float = 1 10000000 01000000000000000000000 (-1)1*(1 + .01)*2(128-127) = -(1 + 0.25)*21 = -1.25*2 = -2.5 unsigned = 11000000001000000000000000000000 = (231 + 230 + 221) = 2147483648 + 1073741824 + 2097152 = 3,223,322,624

Q8 Answer: many possible solutions 02/02/10 20:53 Q8 Transfer the next C function info Assembly code: (don’t forget comments!) void swap(int* a, int* b) { int temp; temp = *a; *a = *b; *b = temp; } Answer: many possible solutions

Q9 What does the spatial locality principal say? 02/02/10 20:53 Q9 What does the spatial locality principal say? What do we use MUXes for? What is the ALU?

Q10 What is CPI and what is the difference between CPI and CPE 02/02/10 20:53 Q10 What is CPI and what is the difference between CPI and CPE Latency and Throughput Data hazards / Control hazzards Stalling / forwarding / load-use hazard Branch prediction