Presentation is loading. Please wait.

Presentation is loading. Please wait.

ITCS 3181 Logic and Computer Systems 2015 B. Wilkinson slides3.ppt Modification date: March 16, 2015 1 Addressing Modes The methods used in machine instructions.

Similar presentations


Presentation on theme: "ITCS 3181 Logic and Computer Systems 2015 B. Wilkinson slides3.ppt Modification date: March 16, 2015 1 Addressing Modes The methods used in machine instructions."— Presentation transcript:

1 ITCS 3181 Logic and Computer Systems 2015 B. Wilkinson slides3.ppt Modification date: March 16, 2015 1 Addressing Modes The methods used in machine instructions to identify the location of an operand.

2 2 General details Almost always, one operand is held in a register. Addressing mode refers to the other operand. Various addressing modes provided for different purposes. Effective address – the actual address of the operand after all address computations of the addressing mode have been performed. In assembly language, different notations are used to specify addressing mode.

3 3 Size of data transfer Memory organized as set of bytes (8 bits). A 32-bit processor would have 32-bit registers. May be several sizes of transfer allowed: For 8 bit transfers -- from memory to least significant 8 bits of register or vice versa. 32 bits from four consecutive memory locations to full 32 bits of register or vice versa.

4 4 Size of data transfer Size of transfer needs to be specified. In assembly language, different operation mnemonics or different notations used to specify size of transfer. Example ADD means add 32 bit numbers ADDB means add 8 bit numbers

5 5 Fundamental Addressing Modes Direct Addressing (also called Absolute Addressing) Immediate Addressing Register (Direct) Addressing Register Indirect Addressing

6 6 Direct (or Absolute) Addressing The operand is in memory and the memory address of the operand is held in instruction: This was the method used to describe instruction formats previously.

7 7 Direct (Absolute) Addressing Example LD R2,[100] ;R2=contents of memory with address 100 Means a comment

8 8 Another Direct (Absolute) Addressing Example ST [100],R2 ;memory whose address is 100 = R2 Mnemonic for LD and ST instruction may be MOV (move) depending upon manufacturer’s notation, see later

9 9 Indicating size of data transfer Using a mnemonic - example LD means load 32 bit number to register ST store 32 bit number to memory LB means load 8 bit number to register SB store 8 bit number to memory Size may be indicated in other ways.

10 10 Immediate Addressing The operand is held in the instruction: i.e. immediately available at end of instruction

11 11 Immediate Addressing Example MOV R2,123 ;R2 = 123

12 12 Immediate addressing used in compiled code Useful for constants. For example: High level codeAssembly language statements int x = 123;MOV R1,123 a = b + 34;ADD R3, R4, 34

13 13 Register Direct Addressing The operand is held in a register which is specified in instruction.

14 14 Register (direct) Addressing Example MOV R3, R2 ;R3 = R2

15 15 Register direct addressing used in compiled code Useful for integer variables. For example: High level codeAssembly language statements x = y;MOV R1,R2 a = b + c;ADD R3, R4, R5

16 16 Register Indirect Addressing Operand held in memory. Address of operand location held in a register that is specified in instruction. Useful for pointers and accessing different memory locations such as list of consecutive locations. Contents of register can be incremented after each access to point to the next location.

17 17 Register Indirect Addressing Example LD R3,[R2] ;R3=contents of memory, address in R2 [ ] read as contents of memory In this example, R2 holds the number 120 For clarity here and later, omitted that memory transfer has 32 bits (4 consecutive bytes) if 32 bit registers. Points to Transfer Points to

18 18 Example of Register indirect addressing used in compiled code In C, for pointers. High level codeAssembly language statements int *b; // ptr, a pointer, say using register R1 int a; // a, integer say in memory location 120 b = &a; // b = address of a MOV R1,120 *b = 123; // location pointed by b = 123 ST [R1],123 b a 120

19 19 Register Indirect Addressing plus Offset Similar to register indirect addressing except an offset held in the instruction is added to register contents to form the effective address:

20 20 Register Indirect Addressing Plus Offset Example LD R3,100[R2];R3=contents of memory, address ;in R2 + 100 In this example R2 holds the number 120 Points to Transfer Points to

21 21 Register Indirect Addressing Variation Index Register Addressing Register indirect addressing where register seen as an “index” into a list (one dimensional array). Register holds number of locations from starting point (first item in list). Starting point given in instruction.

22 22 Index Register Addressing Example Here, compiler uses R1 for x, R2 for i and starting address for array a is location 100. a[] assumed character array. If a[] is an integer array, would use LD and need to multiply index by 4. char a[N]; int x, i;

23 23 Implied Addressing Some operations have an implicit location for the operand and its address need not be specified. We will come across such operations later.

24 24 Specifying addressing mode in machine instruction Can be specified: Within operation field (or is implied in operation) or In a separate mode field

25 25 Addressing Mode Specified in Separate Field Actual encoding can be more complex that this.

26 26 Size of Transfer Specified in Separate Field Again, this detail is not shown in the following. Actual encoding can be much more complex that this (e.g. Intel processors highly complex).

27 27 Questions


Download ppt "ITCS 3181 Logic and Computer Systems 2015 B. Wilkinson slides3.ppt Modification date: March 16, 2015 1 Addressing Modes The methods used in machine instructions."

Similar presentations


Ads by Google