Presentation is loading. Please wait.

Presentation is loading. Please wait.

Lecture 4: Load/Store Architectures CS 2011 Fall 2014, Dr. Rozier.

Similar presentations


Presentation on theme: "Lecture 4: Load/Store Architectures CS 2011 Fall 2014, Dr. Rozier."— Presentation transcript:

1 Lecture 4: Load/Store Architectures CS 2011 Fall 2014, Dr. Rozier

2 LADIES AND TIGERS

3 The Lady and the Tiger Two doors containing either Ladies or Tigers

4 The Lady and the Tiger You will be shown two doors, to two rooms. – Each could contain either a lady or a tiger… – It could be that both rooms contain a lady, or that both rooms contain a tiger! You will need to reason carefully and logically to survive! Each question, pick a door, or decide not to open a door. – You score one point for picking a lady, or for refusing to pick if both doors contain tigers. – Three points available for your homework/projects grade today – If you answer wrong, you may write a short paper describing what you did wrong, and how to find the right answer, due next class.

5 The Lady and the Tiger Form up into groups On a sheet of paper, list the first and last names of each student in the group, and pick a team name – Discuss your answers, and record them – Each group will then give their answers to the class

6 The Lady and the Tiger Q1 One of these is true… In this room, there is a lady, and in the other room there is a tiger. The other is false… In one of these rooms there is a lady, and in one of these rooms there is a tiger.

7 The Lady and the Tiger Q1 One of these is true…The other is false…

8 The Lady and the Tiger Q2 Either both signs are false… At least one of these rooms contains a lady Or both are true… A tiger is in the other room…

9 The Lady and the Tiger Q2 Either both signs are false…Or both are true…

10 The Lady and the Tiger Q3 Either both signs are false… Either a tiger is in this room, or a lady is in the other room. Or both are true… An lady is in the other room.

11 The Lady and the Tiger Q3 Either both signs are false…Or both are true…

12 What does this have to do with CS?

13 CS and CE What are the disciplines? – Computer Engineering? – Computer Science?

14 What it isn’t "What would we like our children- the general public of the future—to learn about computer science in schools? We need to do away with the myth that computer science is about computers. Computer science is no more about computers than astronomy is about telescopes, biology is about microscopes or chemistry is about beakers and test tubes. Science is not about tools, it is about how we use them and what we find out when we do." -- Ian Parberry

15 What it isn’t A confusion of even longer standing came from the fact that the unprepared included the electronic engineers that were supposed to design, build, and maintain the machines. The job was actually beyond the electronic technology of the day, and, as a result, the question of how to get and keep the physical equipment more or less in working condition became in the early days the all-overriding concern. As a result, the topic became —primarily in the USA— prematurely known as "computer science" —which, actually is like referring to surgery as "knife science"— and it was firmly implanted in people's minds that computing science is about machines and their peripheral equipment. -- Edsger Dijkstra

16 What it really is Computer science is the study of the theoretical foundations of information and computation and of practical techniques for their implementation and application in computer systems. Computer scientists invent algorithmic processes that create, describe, and transform information and formulate suitable abstractions to model complex systems. Computer engineering is the process of analyzing, designing, and integrating the hardware and software systems needed for information processing or computation. Computer engineers are saddled with the difficult tasks of modeling, designing, and analyzing cyberphysical systems which solve interdisciplinary problems in a wide variety of domains.

17 BASIC LOAD STORE

18 ARMv6 Remember! – RISC architecture – Load/Store architecture

19 RISC Load/Store Architecture Processor Registers Add Cmp Load Etc Store Memory

20 Loading and Storing ARM, MIPS, and other Load/Store Architectures – Do not support processing data in memory – Must first move data into registers before processing. Sound inefficient? – In practice it isn’t! – Memory is slow, registers are fast!

21 Loading and Storing The Load/Store architecture paradigm – LOAD data values you need from memory into registers – Process data in registers – STORE the results from the registers into memory Processor Registers Add Cmp Load Etc Store Memory

22 Single register data transfer STR – store a word from a register STR r0, [r1] Store r0 to the location pointed to by r1 LDR r0, [r1] Load the contents pointed to by r1 into r0

23 Single register data transfer LDR – load a word from memory into a register LDR r0, [r1] Load the contents pointed to by r1 into r0

24 Offsets Our offset can be – An unsigned 12bit immediate value – A register Offset can be – Added (default) – Subtracted (prefix with a ‘-’)

25 Offsets Can be done: – Prefix: str r0, [r1, r2]Store r0 to [r1+r2] – Prefix, increment: str r0, [r1, r2]!Store r0 to [r1+r2] r1 = r1 + r2 – Postfix:str r0, [r1], r2Store r0 to [r1] r1 = r1 + r2

26 Load/Store with Offset Prefix

27 Load/Store with Offset Postfix

28 A basic example int a[4]; a[3] = a[0] + a[1] + a[2]

29 A basic example int a[4]; a[3] = a[0] + a[1] + a[2] Let’s say r0 contains the BASE address of the array a[] MEM 0x0x05 0x1x02 0x2x03 0x3?? MEM 0x0x05 0x1x02 0x2x03 0x3?? REG r0?? r1?? r2?? r3?? r4?? … r15 REG r0?? r1?? r2?? r3?? r4?? … r15

30 A basic example int a[4]; a[3] = a[0] + a[1] + a[2] movr1, #0;Go for a[0+0] MEM 0x0x05 0x1x02 0x2x03 0x3?? MEM 0x0x05 0x1x02 0x2x03 0x3?? REG r0x00 r1x00 r2?? r3?? r4?? … r15 REG r0x00 r1x00 r2?? r3?? r4?? … r15

31 A basic example int a[4]; a[3] = a[0] + a[1] + a[2] movr1, #0;Go for a[0+0] movr2, #0;Initialize sum to 0 MEM 0x0x05 0x1x02 0x2x03 0x3?? MEM 0x0x05 0x1x02 0x2x03 0x3?? REG r0x00 r1x00 r2x00 r3?? r4?? … r15 REG r0x00 r1x00 r2x00 r3?? r4?? … r15

32 A basic example int a[4]; a[3] = a[0] + a[1] + a[2] movr1, #0;Go for a[0+0] movr2, #0;Initialize sum to 0 ldrr3, [r0, r1];r3 = a[0+0] MEM 0x0x05 0x1x02 0x2x03 0x3?? MEM 0x0x05 0x1x02 0x2x03 0x3?? REG r0x00 r1x00 r2x00 r3x05 r4?? … r15 REG r0x00 r1x00 r2x00 r3x05 r4?? … r15

33 A basic example int a[4]; a[3] = a[0] + a[1] + a[2] movr1, #0;Go for a[0+0] movr2, #0;Initialize sum to 0 ldrr3, [r0, r1];r3 = a[0+0] addr2, r2, r3;r2 = r2 + r3 MEM 0x0x05 0x1x02 0x2x03 0x3?? MEM 0x0x05 0x1x02 0x2x03 0x3?? REG r0x00 r1x00 r2x05 r3x05 r4?? … r15 REG r0x00 r1x00 r2x05 r3x05 r4?? … r15

34 A basic example int a[4]; a[3] = a[0] + a[1] + a[2] movr1, #0;Go for a[0+0] movr2, #0;Initialize sum to 0 ldrr3, [r0, r1];r3 = a[0+0] addr2, r2, r3;r2 = r2 + r3 addr1, r1, #1;Go for a[0+1] MEM 0x0x05 0x1x02 0x2x03 0x3?? MEM 0x0x05 0x1x02 0x2x03 0x3?? REG r0x00 r1x01 r2x05 r3x05 r4?? … r15 REG r0x00 r1x01 r2x05 r3x05 r4?? … r15

35 A basic example int a[4]; a[3] = a[0] + a[1] + a[2] movr1, #0;Go for a[0+0] movr2, #0;Initialize sum to 0 ldrr3, [r0, r1];r3 = a[0+0] addr2, r2, r3;r2 = r2 + r3 addr1, r1, #1;Go for a[0+1] ldrr3, [r0, r1];r3 = a[0+1] MEM 0x0x05 0x1x02 0x2x03 0x3?? MEM 0x0x05 0x1x02 0x2x03 0x3?? REG r0x00 r1x01 r2x05 r3x02 r4?? … r15 REG r0x00 r1x01 r2x05 r3x02 r4?? … r15

36 A basic example int a[4]; a[3] = a[0] + a[1] + a[2] movr1, #0;Go for a[0+0] movr2, #0;Initialize sum to 0 ldrr3, [r0, r1];r3 = a[0+0] addr2, r2, r3;r2 = r2 + r3 addr1, r1, #1;Go for a[0+1] ldrr3, [r0, r1];r3 = a[0+1] addr2, r2, r3;r2 = r2 + r3 MEM 0x0x05 0x1x02 0x2x03 0x3?? MEM 0x0x05 0x1x02 0x2x03 0x3?? REG r0x00 r1x01 r2x07 r3x02 r4?? … r15 REG r0x00 r1x01 r2x07 r3x02 r4?? … r15

37 A basic example int a[4]; a[3] = a[0] + a[1] + a[2] movr1, #0;Go for a[0+0] movr2, #0;Initialize sum to 0 ldrr3, [r0, r1];r3 = a[0+0] addr2, r2, r3;r2 = r2 + r3 addr1, r1, #1;Go for a[0+1] ldrr3, [r0, r1];r3 = a[0+1] addr2, r2, r3;r2 = r2 + r3 addr1, r1, #1;Go for a[0+2] MEM 0x0x05 0x1x02 0x2x03 0x3?? MEM 0x0x05 0x1x02 0x2x03 0x3?? REG r0x00 r1x02 r2x07 r3x02 r4?? … r15 REG r0x00 r1x02 r2x07 r3x02 r4?? … r15

38 A basic example int a[4]; a[3] = a[0] + a[1] + a[2] movr1, #0;Go for a[0+0] movr2, #0;Initialize sum to 0 ldrr3, [r0, r1];r3 = a[0+0] addr2, r2, r3;r2 = r2 + r3 addr1, r1, #1;Go for a[0+1] ldrr3, [r0, r1];r3 = a[0+1] addr2, r2, r3;r2 = r2 + r3 addr1, r1, #1;Go for a[0+2] ldrr3, [r0, r1];r3 = a[0+2] MEM 0x0x05 0x1x02 0x2x03 0x3?? MEM 0x0x05 0x1x02 0x2x03 0x3?? REG r0x00 r1x02 r2x07 r3x03 r4?? … r15 REG r0x00 r1x02 r2x07 r3x03 r4?? … r15

39 A basic example int a[4]; a[3] = a[0] + a[1] + a[2] movr1, #0;Go for a[0+0] movr2, #0;Initialize sum to 0 ldrr3, [r0, r1];r3 = a[0+0] addr2, r2, r3;r2 = r2 + r3 addr1, r1, #1;Go for a[0+1] ldrr3, [r0, r1];r3 = a[0+1] addr2, r2, r3;r2 = r2 + r3 addr1, r1, #1;Go for a[0+2] ldrr3, [r0, r1];r3 = a[0+2] addr2, r2, r3;r2 = r2 + r3 MEM 0x0x05 0x1x02 0x2x03 0x3?? MEM 0x0x05 0x1x02 0x2x03 0x3?? REG r0x00 r1x02 r2x 0A r3x03 r4?? … r15 REG r0x00 r1x02 r2x 0A r3x03 r4?? … r15

40 A basic example int a[4]; a[3] = a[0] + a[1] + a[2] movr1, #0;Go for a[0+0] movr2, #0;Initialize sum to 0 ldrr3, [r0, r1];r3 = a[0+0] addr2, r2, r3;r2 = r2 + r3 addr1, r1, #1;Go for a[0+1] ldrr3, [r0, r1];r3 = a[0+1] addr2, r2, r3;r2 = r2 + r3 addr1, r1, #1;Go for a[0+2] ldrr3, [r0, r1];r3 = a[0+2] addr2, r2, r3;r2 = r2 + r3 addr1, r1, #1;Increment to a[0+3] MEM 0x0x05 0x1x02 0x2x03 0x3?? MEM 0x0x05 0x1x02 0x2x03 0x3?? REG r0x00 r1x03 r2x 0A r3x03 r4?? … r15 REG r0x00 r1x03 r2x 0A r3x03 r4?? … r15

41 A basic example int a[4]; a[3] = a[0] + a[1] + a[2] movr1, #0;Go for a[0+0] movr2, #0;Initialize sum to 0 ldrr3, [r0, r1];r3 = a[0+0] addr2, r2, r3;r2 = r2 + r3 addr1, r1, #1;Go for a[0+1] ldrr3, [r0, r1];r3 = a[0+1] addr2, r2, r3;r2 = r2 + r3 addr1, r1, #1;Go for a[0+2] ldrr3, [r0, r1];r3 = a[0+2] addr2, r2, r3;r2 = r2 + r3 addr1, r1, #1;Increment to a[0+3] strr2, [r0, r1];a[0+3] = r2 MEM 0x0x05 0x1x02 0x2x03 0x3x 0A MEM 0x0x05 0x1x02 0x2x03 0x3x 0A REG r0x00 r1x03 r2x 0A r3x03 r4?? … r15 REG r0x00 r1x03 r2x 0A r3x03 r4?? … r15

42 Improving Performance! int a[4]; a[3] = a[0] + a[1] + a[2] movr1, #0;Go for a[0+0] movr2, #1;Initialize sum to 0 ldrr3, [r0], r1;r3 = a[0+0] addr2, r2, r3;r2 = r2 + r3 addr1, r1, #1;Go for a[0+1] ldrr3, [r0], r1;r3 = a[0+1] addr2, r2, r3;r2 = r2 + r3 addr1, r1, #1;Go for a[0+2] ldrr3, [r0], r1;r3 = a[0+2] addr2, r2, r3;r2 = r2 + r3 addr1, r1, #1;Increment to a[0+3] strr2, [r0];a[0+3] = r2 MEM 0x0x05 0x1x02 0x2x03 0x3x 0A MEM 0x0x05 0x1x02 0x2x03 0x3x 0A REG r0x00 r1x03 r2x 0A r3x03 r4?? … r15 REG r0x00 r1x03 r2x 0A r3x03 r4?? … r15 From 12 instructions to 9 instructions, a 25% reduction in instruction count!

43 Going further, Block Data Transfer LDM/STM – Load/Store Multiple – Allow between 1 and 16 registers to be transferred to or from memory.

44 Going further, Block Data Transfer LDM/STM – Load/Store Multiple – Allow between 1 and 16 registers to be transferred to or from memory.

45 BASIC DATA PROCESSING

46 Architecture of ARM

47 Data Processing Basic data processing instructions Destination Register Operand 1 RegisterOperand 2

48 Data Processing Basic data processing instructions ADDRd = Rn + Operand2 SUBRd = Rn – Operand2 RSBRd = Operand2 – Rn

49 Data Processing Basic data processing instructions ADDRd = Rn + Operand2 SUBRd = Rn – Operand2 RSBRd = Operand2 – Rn MOVRd = Operand2 MVNRd = -Operand2 Operand2 is 12-bits long, and can be an immediate, or a register. How does the ARM know?

50 Operand2 is Versatile! Immediate value – An 8-bit constant Register – How many bits to address our registers r0 – r15?

51 Operand2 is Versatile! Immediate value – An 8-bit constant Register – How many bits to address our registers r0 – r15? At most 8-bits for our immediate or 4-bits for a register. We have 4 more unaccounted for bits…

52 The ARM Barrel Shifter ARM architectures have a unique piece of hardware known as a barrel shifter. – Device moves bits in a word left or right. Most processors have stand alone instructions for shifting bits. ARM allows shifts as part of regular instructions. Allows for quick multiplication and division.

53 The ARM Barrel Shifter

54 Reality of the hardware – There are no shift instructions – Barrel shifter can be controlled WITH an instruction – Can only be applied to operand 2 on instructions which use the ALU

55 Types of Shifting Logical Shifts – lsl – left – lsr – right Arithmetic Shifts – asr – right Rotates – ror – right – rrx – right with extend

56 Example mov r0, r1, lsl #1 This would perform a logical shift left of 1 bit on r1, and then copy the result into r0. mov r0, r1, lsl r2 This would do the same as before, but use the value of r2 for the shift amount.

57 Logical Shifts Logical shifting a number left or right has the effect of doubling or halving it. lsl – Highest order bit shifts into the carry flag – Lowest order bit is filled with 0. lsr – Lowest order bit shifts into the carry flag – Highest order bit is filled with 0. LSLCb7b6b5b4b3b2b1b0 Before010001111 After100011110

58 Arithmetic Shift Preserves the sign bit. asr – Extends the sign bit to the second most significant – Shifts the least significant into the carry flag. LSLCb7b6b5b4b3b2b1b0 Before010001111 After111000111

59 Arithmetic Shift Preserves the sign bit. asr – Extends the sign bit to the second most significant – Shifts the least significant into the carry flag. Why isn’t there an Arithmetic Shift Left? LSLCb7b6b5b4b3b2b1b0 Before010001111 After111000111

60 Rotations Rotates bits from low order to high order ror – Moves bits from the lowest order to the highest, setting the carry bit in the process with the last bit rotated out. rrx – Always and only rotates by one position. – Carry flag is dropped into the highest order bit. Lowest order bit is moved to the carry flag LSLCb7b6b5b4b3b2b1b0 Before000001111 After110000111

61 Rotations ror rrx

62 Adding a Shift or Rotate Shifts and rotates can be used with: – adc, add, and – bic – cmn, cmp – eor – mov, mvn – orr – rsb – sbc, sub – teq, tst

63 For next time Homework 1 will post tonight. Continue discussion of Chapter 2 on Thursday.


Download ppt "Lecture 4: Load/Store Architectures CS 2011 Fall 2014, Dr. Rozier."

Similar presentations


Ads by Google