ic220
play

IC220 a = function2(b, c, d); SlideSet #3: Procedures & } - PowerPoint PPT Presentation

Procedure Example & Terminology void function1() { int a, b, c, d; IC220 a = function2(b, c, d); SlideSet #3: Procedures & } Instruction Representation (Sections 2.8, 2.5, 2.10) int function2(int s, int t, int u) { int x,


  1. Procedure Example & Terminology void function1() { int a, b, c, d; IC220 … a = function2(b, c, d); SlideSet #3: Procedures & … } Instruction Representation (Sections 2.8, 2.5, 2.10) int function2(int s, int t, int u) { int x, y, z; … return x; } Big Picture – Steps for Executing a Procedure Step #1: Placement of Parameters 1. Place parameters where the callee procedure can access them • Assigned Registers: • If more than eight are needed? 2. Transfer control to the callee procedure 3. (Maybe) Acquire the storage resources needed for the callee procedure • Parameters are not “saved” across procedure call 4. Callee performs the desired task 5. Place the result somewhere that the “caller” procedure can access it 6. Return control to the point of origin (in caller)

  2. Step #2: Transfer Control to the Procedure Step #3: Acquire storage resources needed by callee • bl – • Suppose callee wants to use registers x20, x21 and x22 – Branches to the procedure address AND links to return address – But caller still expects them to have same value after the call – Solution: • Link saved in register _____ – What exactly is saved? • At start of function call: subi _____,_____, ____ // – Why do we need this? stur x20, [sp, ____ ] // stur x21, [sp, ____ ] // Allows procedure to be called at __________ points in stur x22, [sp, ____ ] // code, _________ times, each having a _________ return address • WARNING: unlike book examples, must move sp in increments of 16 Step #3 Storage Continued Step #4: Callee Execution • Use parameters from _________________ and _________________ (setup by caller) • Temporary storage locations to use for computation: 1. Temporary registers (x9-x15) 2. Argument registers (x0-x7) if… Contents of register Contents of register 3. Other registers Contents of register but… 4. What if still need more?

  3. Step #5: Place result where caller can get it Step #6: Return control to caller – Part A • Part I – Restore appropriate registers before returning from the procedure • Placement of Result (return value) – ldur x22, [sp, #0] // restore x22 for caller – Must place result in appropriate register(s) – ldur x21, [sp, #8] // restore x21 for caller • 64-bit result: – ldur x20, [sp, #16] // restore x20 for caller • More than 64-bit result : – addi sp, sp, ______ // adjust stack to delete our 3 items • Example: desired result currently in x5, then: • Part II – Return to proper location in caller (return address) – Jump to stored address of next instruction after procedure call – Explicit instruction: – Often written with this shorthand (not 100% the same, but almost): EX: 2-31 to 2-32 Recap – Steps for Executing a Procedure Example – putting it all together • Write assembly for the following procedure 1. Place parameters where the callee procedure can access them long dog (long m, long n) { 2. Transfer control to the callee procedure long result = m + n + 7; return result; } 3. (Maybe) Acquire the storage resources needed for the callee procedure 4. Callee performs the desired task • Call this function to compute dog(5, 10): 5. Place the result somewhere that the “caller” procedure can access it 6. Return control to the point of origin (in caller)

  4. Nested Procedures Register Conventions • Register Convention – for “Preserved on Call” registers (like X20): 1. If used, the callee must store and return values for these registers • What if the callee wants to call another procedure – any problems? 2. If not used, not saved • Solution? • This also applies to recursive procedures Nested Procedures Example – putting it all together (again) • “Activation record” – part of stack holding procedures saved values and local variables • Write assembly for the following procedure • FP – points to first word of activation record for procedure (not required; we don’t use it) long cloak (long n) { if (n == 0) return 100; else return (n*n + dagger(n-1)); } • Call this function to compute cloak(6):

  5. long cloak (long n) { Example – putting it all together What does that function do? if (n == 0) return 100; else return (n*n + dagger(n-1)); } cloak: sub sp, sp, #16 stur lr, [sp, #0] stur x20, [sp, #8] mov x20, x0 long cloak (long n) { cbnz x0, Else if (n == 0) return 100; mov x0, 100 else return (n*n + dagger(n-1)); b cloakExit } Else: sub x0, x0, #1 bl dagger mul x1, x20, x20 add x0, x0, x1 cloakExit: ldur x20, [sp, #8] ldur lr, [sp, #0] add sp, sp, #16 br lr .size cloak, . - cloak EX: 2-36 to 2-38 Best practices for nested functions myFunction: subi sp, sp, #16 // 16 or more, always multiple of 16 stur lr, [sp, #0] // do this first! // save ‘preserved’ registers here (if using any) // possibly save arguments here // (recommended: in ‘preserved’ register. Alternate: onto stack) // body of function (possibly with branches to ‘myFunctionExit’ ... myFunctionExit: // reload ‘preserved’ registers’ (if used any) ldur lr, [sp, #0] addi sp, sp, #16 // must match subi at start! br lr // recommended: ONE location where you return // Tell debugger where function this function ends! (IC220 requirement) .size myFunction, . - myFunction

  6. Why/how gdb? squares: sub sp, sp, #16 stur lr, [sp, #0] stur x20, [sp, #8] mov x20, x0 cbnz x0, Else mov x0, 100 b squaresExit Else: sub x0, x0, #1 bl squares mul x1, x20, x20 add x0, x0, x1 squaresExit: ldur x20, [sp, #8] ldur lr, [sp, #0] add sp, sp, #16 br lr .size squares, . - squares Representing Instructions Representing Instructions • Assembly language provides convenient symbolic representation • How does the CPU actually know what to do? – Much easier than writing down numbers – Simplifications, e.g., destination first • Machine language is the underlying reality • What tradeoffs do we have to make? – Each instruction is simply a number, the “machine code” – Realities, e.g., destination is no longer first • Why does this work mov x0, 57 • LEGv8/ARVv8 instructions but not this – Always encoded as 32-bit instruction word mov x0, 57000 – Small number of formats provide all the details ???? – Registers assigned a 5 bit number – Regularity!

  7. For reference: hexadecimal review LEGv8 R-format Instructions • R-format: • Base 16 – For instructions involving 3 registers – Compact representation of bit strings – add, adds, subs, and, orr, … – 4 bits per hex digit – Example: add x9, x21, x3 – Often indicated by 0x prefix 0 0000 4 0100 8 1000 c 1100 1 0001 5 0101 9 1001 d 1101 2 0010 6 0110 a 1010 e 1110 3 0011 7 0111 b 1011 f 1111  Example: 0xeca8 6420 = 0x458 3 0 21 9 Opcode Rm Shamt Rn Rd  1110 1100 1010 1000 0110 0100 0010 0000 11 bits 5 bits 6 bits 5 bits 5 bits LEGv8 D-format Instructions LEGv8 I-format Instructions • Load/store instructions (data transfer) Opcode Immediate Rn Rd – Rt: destination (load) or source (store) register number 10 bits 12 bits 5 bits 5 bits – Example: ldur x9, [x10, #240] • Immediate instructions ( addi, subi, andi, orri, ..) – Immediate = “constant” – Rn: source register – Rd: destination register 0x7c2 0 • Limitations on immediate field Opcode DT_Address Op2 Rn Rt – Immediate field is zero-extended 11 bits 9 bits 2 bits 5 bits 5 bits – Immediate field has 12 bits • Design Principle 3: Good design demands good compromises – Different formats complicate decoding, but allow 32-bit (somewhat obscure detail: actual ARMv8 limits are different because of option instructions uniformly to shift the constant by exactly 12 bits) – Keep formats as similar as possible

  8. EX: 2-61 to 2-68 Bigger Constants LEGv8 Instruction Formats Summary • Most constants are small – 12-bit immediate is sufficient • For the occasional bigger constant MOVZ: move wide with zeros MOVK: move wide with keep • Both accept 16 bit immediates • And, use with “flexible 2nd operand” (shift) MOVZ X9,255,LSL 16 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 1111 1111 0000 0000 0000 0000 • NOTE: this figure (from book) shows all values as DECIMAL, but “green sheet” gives opcodes in HEX (easier to work with) MOVK X9,255,LSL 0 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 1111 1111 0000 0000 1111 1111 Branch Addressing LEGv8 Addressing Summary • B-type – B 10000 // go to location PC+10000 5 10000 ten 6 bits 26 bits • CB-type – CBNZ X19, Exit // go to Exit if X19 != 0 181 Exit 19 5 bits 8 bits 19 bits • Both addresses are PC-relative – Address = PC + offset (from instruction)

  9. LEGv8 Encoding Summary

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend