a.out.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. typedef struct Exec Exec;
  2. struct Exec
  3. {
  4. long magic; /* magic number */
  5. long text; /* size of text segment */
  6. long data; /* size of initialized data */
  7. long bss; /* size of uninitialized data */
  8. long syms; /* size of symbol table */
  9. long entry; /* entry point */
  10. long spsz; /* size of pc/sp offset table */
  11. long pcsz; /* size of pc/line number table */
  12. };
  13. #define HDR_MAGIC 0x00008000 /* header expansion */
  14. #define _MAGIC(f, b) ((f)|((((4*(b))+0)*(b))+7))
  15. #define A_MAGIC _MAGIC(0, 8) /* 68020 */
  16. #define I_MAGIC _MAGIC(0, 11) /* intel 386 */
  17. #define J_MAGIC _MAGIC(0, 12) /* intel 960 (retired) */
  18. #define K_MAGIC _MAGIC(0, 13) /* sparc */
  19. #define V_MAGIC _MAGIC(0, 16) /* mips 3000 BE */
  20. #define X_MAGIC _MAGIC(0, 17) /* att dsp 3210 (retired) */
  21. #define M_MAGIC _MAGIC(0, 18) /* mips 4000 BE */
  22. #define D_MAGIC _MAGIC(0, 19) /* amd 29000 (retired) */
  23. #define E_MAGIC _MAGIC(0, 20) /* arm */
  24. #define Q_MAGIC _MAGIC(0, 21) /* powerpc */
  25. #define N_MAGIC _MAGIC(0, 22) /* mips 4000 LE */
  26. #define L_MAGIC _MAGIC(0, 23) /* dec alpha */
  27. #define P_MAGIC _MAGIC(0, 24) /* mips 3000 LE */
  28. #define U_MAGIC _MAGIC(0, 25) /* sparc64 */
  29. #define S_MAGIC _MAGIC(HDR_MAGIC, 26) /* amd64 */
  30. #define T_MAGIC _MAGIC(HDR_MAGIC, 27) /* powerpc64 */
  31. #define MIN_MAGIC 8
  32. #define MAX_MAGIC 27 /* <= 90 */
  33. #define DYN_MAGIC 0x80000000 /* dlm */
  34. typedef struct Sym Sym;
  35. struct Sym
  36. {
  37. vlong value;
  38. uint sig;
  39. char type;
  40. char *name;
  41. };