x86 procedures functions control flow
play

x86 PROCEDURES (FUNCTIONS) CONTROL FLOW Recall: Two ways to - PowerPoint PPT Presentation

x86 PROCEDURES (FUNCTIONS) CONTROL FLOW Recall: Two ways to change program control flow Jump instructions Call instructions Function A unit of code we can call Similar to a jump, except it can return Must


  1. x86 PROCEDURES (FUNCTIONS)

  2. CONTROL FLOW Recall: Two ways to change program control flow “Jump” instructions ▸ “Call” instructions ▸ Function A unit of code we can call ▸ Similar to a jump, except it can return ▸ Must support passing data as function arguments and return values ▸ Also referred to as a procedure, method, or subroutine But before we continue, we first have to understand how a stack works… 2

  3. x86-64 STACK Region of memory managed with last-in, first-out discipline Grows toward lower addresses ▸ %rsp Register indicates top element of stack ▸ “Top” element has lowest address ▹ The stack is essential for function calls! 3

  4. PUSHING TO A STACK Pushing pushq Src ▸ Fetch operand at Src ▹ Decrement %rsp by 8 ▹ Write operand at address given by %rsp ▹ e.g. pushq %rax ▸ ▹ subq $8, %rsp ▹ movq %rax,(%rsp) 4

  5. POPPING FROM A STACK Popping ▸ popq Dest Read operand at address given by %rsp ▹ Write to Dest ▹ Increment %rsp by 8 ▹ e.g. popq %rax ▸ movq (%rsp),%rax ▹ addq $8,%rsp ▹ 5

  6. STACK OPERATION EXAMPLES 6

  7. CONTROL FLOW TERMINOLOGY When foo calls who: foo is the caller, who is the callee ▸ Control is transferred to the ‘callee’ ▸ When function returns Control is transferred back to the ‘caller’ ▸ Last-called, first-return (LIFO) order naturally implemented via stack 7

  8. CONTROL FLOW INSTRUCTIONS The hardware provides machine instructions for this: Function call ▸ call label Push return address on stack ▹ (that is, the address of next instruction after the call) Jump to label ▹ Function return ▸ ret Pop return address from stack ▹ Jump to address ▹ 8

  9. CONTROL FLOW EXAMPLE 9

  10. CONTROL FLOW EXAMPLE 10

  11. CONTROL FLOW EXAMPLE 11

  12. CONTROL FLOW EXAMPLE 12

  13. PRACTICE PROBLEM What does this code do? call next The “ call ” will cause the address of the next: “ popq ” instruction to be pushed onto the popq %rax stack. What is the value of %rax? Then, the popq instruction will pop that address (its own address) off, and store What would this be useful for? it into rax . Malware writers like to do this, because it lets them figure out where in the (virtual memory space) they are. 13

  14. FUNCTION CALLS AND STACK FRAMES For languages supporting recursion (C, Java), code must be re-entrant Multiple simultaneous instantiations of a single function ▸ Must store multiple versions of arguments, local variables, return address ▸ Return address ▹ Local variables ▹ Function arguments (if necessary) ▹ Saved register state (if necessary) ▹ Implemented with stack frames Upon function invocation ▸ Stack frame created ▹ Stack frame pushed onto stack ▹ Upon function completion ▸ Stack frame popped off stack ▹ Caller’s frame recovered ▹ 14

  15. CALL CHAIN EXAMPLE 15

  16. CALL CHAIN EXAMPLE 16

  17. CALL CHAIN EXAMPLE 17

  18. CALL CHAIN EXAMPLE 18

  19. CALL CHAIN EXAMPLE 19

  20. CALL CHAIN EXAMPLE 20

  21. CALL CHAIN EXAMPLE 21

  22. CALL CHAIN EXAMPLE 22

  23. CALL CHAIN EXAMPLE 23

  24. CALL CHAIN EXAMPLE 24

  25. CALL CHAIN EXAMPLE 25

  26. CALL CHAIN EXAMPLE 26

  27. CALL CHAIN EXAMPLE 27

  28. X86-64 / LINUX STACK FRAME Caller Stack Frame (Pink) Function arguments for callee ▸ Only used with 7+ integer arguments ▹ Arguments 1-6 passed in registers ▹ Return address ▸ Pushed by call instruction ▹ Callee Stack Frame (Yellow) (From Top to Bottom) Old frame pointer (optional) ▸ Local variables (optional) ▸ If can’t keep in registers ▹ Saved register context (optional) ▸ If certain registers needed ▹ Function arguments for next call ▸ 28

  29. X86-64 / LINUX STACK FRAME Compiler can decide to simplify implementation Can omit local variables and saved registers for simple functions with few ▸ variables Can avoid using pushq and popq to manage frame ▸ Can even avoid using the call instruction! ▸ 29

  30. FUNCTION ARGUMENTS Initially Passed via Registers Overflow onto stack when needed %rdi %rsi %rdx Argument n %rcx . . . %r8 Argument 8 %r9 Argument 7 “Diane’s Silk Dress Cost 89 Dollars” Return values given back on %rax 30

  31. SWAP REVISITED swap: void swap(long *xp, long *yp) movq (%rdi), %rdx { movq (%rsi), %rax long t0 = *xp; movq %rax, (%rdi) long t1 = *yp; movq %rdx, (%rsi) *xp = t1; ret *yp = t0; } Function arguments all passed in registers First argument ( xp ) in %rdi , second argument ( yp ) in %rsi ▸ 64-bit pointers ▸ No stack operations required (except ret ) Can hold all function arguments and local variables in registers ▸ Does not call another function so frame allocation not necessary ▸ 31

  32. FUNCTION ARGUMENTS BEYOND 6 call_foo() { long a[16]; foo(a[0],a[1],a[2],a[3],a[4],a[5],a[6],a[7],a[8],a[9]); } Given the C function above, identify function arguments being passed to foo: 0000000000000000 <call_foo>: 0: sub $0xA8,%rsp 7: mov 0x68(%rsp),%rax a[9] c: mov %rax,0x18(%rsp) 11: mov 0x60(%rsp),%rax a[8] 16: mov %rax,0x10(%rsp) 1b: mov 0x58(%rsp),%rax a[7] 20: mov %rax,0x8(%rsp) 25: mov 0x50(%rsp),%rax a[6] 2a: mov %rax,(%rsp) 2e: mov 0x48(%rsp),%r9 a[5] 33: mov 0x40(%rsp),%r8 a[4] 38: mov 0x38(%rsp),%rcx a[3] 3d: mov 0x30(%rsp),%rdx a[2] 42: mov 0x28(%rsp),%rsi a[1] 47: mov 0x20(%rsp),%rdi a[0] 4c: callq <foo> 51: add $0xA8,%rsp 32 58: retq

  33. LOCAL VARIABLES Held in registers if possible Allocate space on stack if too many (register spilling) ▸ Compiler allocates space on stack and updates %rsp ▸ How are they preserved if the current function calls another function? Compiler updates %rsp beyond local variables before issuing “call” ▸ What happens to them when the current function returns? Are lost (i.e. no longer valid) ▸ 33

  34. LOCAL VARIABLES call_foo() { long a[16]; foo(a[0],a[1],a[2],a[3],a[4],a[5],a[6],a[7],a[8],a[9]); } 0000000000000000 <call_foo>: Makes room for both a[16] and partial 0: sub $0xA8,%rsp argument build for foo. 7: mov 0x68(%rsp),%rax c: mov %rax,0x18(%rsp) 11: mov 0x60(%rsp),%rax 16: mov %rax,0x10(%rsp) 1b: mov 0x58(%rsp),%rax 20: mov %rax,0x8(%rsp) 25: mov 0x50(%rsp),%rax 2a: mov %rax,(%rsp) 2e: mov 0x48(%rsp),%r9 33: mov 0x40(%rsp),%r8 38: mov 0x38(%rsp),%rcx 3d: mov 0x30(%rsp),%rdx 42: mov 0x28(%rsp),%rsi 47: mov 0x20(%rsp),%rdi 4c: callq <foo> Puts the stack pointer back to where 51: add $0xA8,%rsp it was at address 0x0. 34 58: retq

  35. SCOPING ISSUES WITH LOCAL VARIABLES Consider the following code: int * func( int x) { int n; int *np; n = x; np = &n; return np; } What does np point to after function returns? What happens if np is dereferenced? Local variables are “lost” when function returns Address referred to is no longer part of the stack ▸ Can be overwritten by other function calls ▸ Dereference will return whatever is at location (can be arbitrary) ▸ 35

  36. PUTTING IT ALL TOGETHER: INCR() 36

  37. PUTTING IT ALL TOGETHER: INCR() 37

  38. PUTTING IT ALL TOGETHER: INCR() 38

  39. PUTTING IT ALL TOGETHER: INCR() 39

  40. PUTTING IT ALL TOGETHER: INCR() 40

  41. PUTTING IT ALL TOGETHER: INCR() 41

  42. REGISTER SAVING CONVENTIONS When function1() calls function2() : function1 is the “caller” ▸ function2 is the “callee” ▸ Can Register be Used for Temporary Storage? Need some coordination between caller and callee on register usage ▸ Conventions “Caller Save” ▸ Caller saves temporary in its frame before calling ▹ “Callee Save” ▸ Callee saves temporary in its frame before using ▹ Callee restores values before returning ▹ 42

  43. X86-64 CALLER SAVED REGISTERS Can be modified by function being called ▸ %rax Return value ▹ ▸ %rdi, %rsi, %rdx, %rcx, %r8, %r9 Function arguments ▹ ▸ %r10, %r11 Temporaries ▹ The caller is responsible for saving these before a call! 43

  44. X86-64 CALLEE SAVED REGISTERS Function being called must save and restore ▸ %rbx, %r12, %r13, %r14 ▸ %rbp May be used as frame pointer ▹ ▸ %rsp Special form of callee save ▹ Restored to original value upon ▹ return from function The callee (function being called) must save/resture these registers if they want to use them. 44

  45. X86-64 INTEGER REGISTERS 45

  46. CALLEE SAVED EXAMPLE 46

  47. CALLEE SAVED EXAMPLE 47

  48. X86-64 FLOATING POINT ARGUMENTS Recall integer arguments 64-bit registers used to pass ▸ ▸ %rdi, %rsi, %rdx, %rcx, %r8, %r9 Floating point Special vectored registers to pass (AVX-512) ▸ ▸ %zmm0 - %zmm31 Capacity for a vector of 8 doubles ▹ Also used for vectored integer operations (more later) ▹ Unique to x64 ▹ Special instruction sets: MMX -> SSE -> AVX -> AVX-512 ▹ 48

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