AsmGetRegsX86_64.S 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * Copyright (C) 2016 The Android Open Source Project
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * * Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * * Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in
  12. * the documentation and/or other materials provided with the
  13. * distribution.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  16. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  17. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  18. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  19. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  20. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  21. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  22. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  23. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  24. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  25. * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  26. * SUCH DAMAGE.
  27. */
  28. .text
  29. .global AsmGetRegs
  30. .balign 16
  31. .type AsmGetRegs, @function
  32. AsmGetRegs:
  33. .cfi_startproc
  34. movq %rax, (%rdi)
  35. movq %rdx, 8(%rdi)
  36. movq %rcx, 16(%rdi)
  37. movq %rbx, 24(%rdi)
  38. movq %rsi, 32(%rdi)
  39. movq %rdi, 40(%rdi)
  40. movq %rbp, 48(%rdi)
  41. /* RSP */
  42. lea 8(%rsp), %rax
  43. movq %rax, 56(%rdi)
  44. movq %r8, 64(%rdi)
  45. movq %r9, 72(%rdi)
  46. movq %r10, 80(%rdi)
  47. movq %r11, 88(%rdi)
  48. movq %r12, 96(%rdi)
  49. movq %r13, 104(%rdi)
  50. movq %r14, 112(%rdi)
  51. movq %r15, 120(%rdi)
  52. /* RIP */
  53. movq (%rsp), %rax
  54. movq %rax, 128(%rdi)
  55. ret
  56. .cfi_endproc
  57. .size AsmGetRegs, .-AsmGetRegs