dl-startup.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Xtensa ELF code used by dl-startup.c.
  4. *
  5. * Copyright (C) 2007 Tensilica Inc.
  6. *
  7. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  8. * Parts taken from glibc/sysdeps/xtensa/dl-machine.h.
  9. */
  10. __asm__ (
  11. " .text\n"
  12. " .align 4\n"
  13. " .literal_position\n"
  14. " .global _start\n"
  15. " .type _start, @function\n"
  16. " .hidden _start\n"
  17. "_start:\n"
  18. " # Compute load offset in a2: the GOT has not yet been relocated\n"
  19. " # but the entries for local symbols contain the relative offsets\n"
  20. " # and we can explicitly add the load offset in this code.\n"
  21. " _call0 0f\n"
  22. " .align 4\n"
  23. "0: movi a3, _start+3\n"
  24. " sub a2, a0, a3\n"
  25. " # Make sure a0 is cleared to mark the top of stack.\n"
  26. " movi a0, 0\n"
  27. " # user_entry_point = _dl_start(pointer to argument block)\n"
  28. " movi a4, _dl_start\n"
  29. " mov a6, sp\n"
  30. " add a4, a4, a2\n"
  31. " callx4 a4\n"
  32. " # Save user_entry_point so we can jump to it.\n"
  33. " mov a3, a6\n"
  34. " l32i a7, sp, 0 # load argc\n"
  35. " # Load _dl_skip_args into a4.\n"
  36. " movi a4, _dl_skip_args\n"
  37. " l32i a4, a4, 0\n"
  38. " bnez a4, .Lfixup_stack\n"
  39. ".Lfixup_stack_ret:\n"
  40. " # Pass finalizer (_dl_fini) in a2 to the user entry point.\n"
  41. " movi a2, _dl_fini\n"
  42. " # Jump to user's entry point (_start).\n"
  43. " jx a3\n"
  44. ".Lfixup_stack:\n"
  45. " # argc -= _dl_skip_args (with argc @ sp+0)\n"
  46. " sub a7, a7, a4\n"
  47. " s32i a7, sp, 0\n"
  48. " # Shift everything by _dl_skip_args.\n"
  49. " addi a5, sp, 4 # a5 = destination ptr = argv\n"
  50. " add a4, a5, a4 # a4 = source ptr = argv + _dl_skip_args\n"
  51. " # Shift argv.\n"
  52. "1: l32i a6, a4, 0\n"
  53. " addi a4, a4, 4\n"
  54. " s32i a6, a5, 0\n"
  55. " addi a5, a5, 4\n"
  56. " bnez a6, 1b\n"
  57. " # Shift envp.\n"
  58. "2: l32i a6, a4, 0\n"
  59. " addi a4, a4, 4\n"
  60. " s32i a6, a5, 0\n"
  61. " addi a5, a5, 4\n"
  62. " bnez a6, 2b\n"
  63. " # Shift auxiliary table.\n"
  64. "3: l32i a6, a4, 0\n"
  65. " l32i a8, a4, 4\n"
  66. " addi a4, a4, 8\n"
  67. " s32i a6, a5, 0\n"
  68. " s32i a8, a5, 4\n"
  69. " addi a5, a5, 8\n"
  70. " bnez a6, 3b\n"
  71. " j .Lfixup_stack_ret");
  72. /* Get a pointer to the argv value. */
  73. #define GET_ARGV(ARGVP, ARGS) ARGVP = (((unsigned long *) ARGS) + 1)
  74. /* Function calls are not safe until the GOT relocations have been done. */
  75. #define NO_FUNCS_BEFORE_BOOTSTRAP
  76. #define PERFORM_BOOTSTRAP_GOT(tpnt) \
  77. do { \
  78. xtensa_got_location *got_loc; \
  79. unsigned long l_addr = tpnt->loadaddr; \
  80. Elf32_Word relative_count; \
  81. unsigned long rel_addr; \
  82. int x; \
  83. \
  84. got_loc = (xtensa_got_location *) \
  85. (tpnt->dynamic_info[DT_XTENSA (GOT_LOC_OFF)] + l_addr); \
  86. \
  87. for (x = 0; x < tpnt->dynamic_info[DT_XTENSA (GOT_LOC_SZ)]; x++) { \
  88. Elf32_Addr got_start, got_end; \
  89. got_start = got_loc[x].offset & ~(PAGE_SIZE - 1); \
  90. got_end = ((got_loc[x].offset + got_loc[x].length + PAGE_SIZE - 1) \
  91. & ~(PAGE_SIZE - 1)); \
  92. _dl_mprotect ((void *)(got_start + l_addr), got_end - got_start, \
  93. PROT_READ | PROT_WRITE | PROT_EXEC); \
  94. } \
  95. \
  96. /* The following is a stripped down version of the code following \
  97. the invocation of PERFORM_BOOTSTRAP_GOT in dl-startup.c. That \
  98. code is skipped when PERFORM_BOOTSTRAP_GOT is defined, so it has \
  99. to be done here instead. */ \
  100. relative_count = tpnt->dynamic_info[DT_RELCONT_IDX]; \
  101. rel_addr = tpnt->dynamic_info[DT_RELOC_TABLE_ADDR]; \
  102. if (rel_addr) \
  103. elf_machine_relative(load_addr, rel_addr, relative_count); \
  104. } while (0)