btfixup.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:7k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: btfixup.h,v 1.4 1998/03/09 14:04:43 jj Exp $
  2.  *  asm-sparc/btfixup.h:    Macros for boot time linking.
  3.  *
  4.  *  Copyright (C) 1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  5.  */
  6.  
  7. #ifndef _SPARC_BTFIXUP_H
  8. #define _SPARC_BTFIXUP_H
  9. #include <linux/init.h>
  10. #ifndef __ASSEMBLY__
  11. #ifdef MODULE
  12. extern unsigned int ___illegal_use_of_BTFIXUP_SIMM13_in_module(void);
  13. extern unsigned int ___illegal_use_of_BTFIXUP_SETHI_in_module(void);
  14. extern unsigned int ___illegal_use_of_BTFIXUP_HALF_in_module(void);
  15. extern unsigned int ___illegal_use_of_BTFIXUP_INT_in_module(void);
  16. #define BTFIXUP_SIMM13(__name) ___illegal_use_of_BTFIXUP_SIMM13_in_module()
  17. #define BTFIXUP_HALF(__name) ___illegal_use_of_BTFIXUP_HALF_in_module()
  18. #define BTFIXUP_SETHI(__name) ___illegal_use_of_BTFIXUP_SETHI_in_module()
  19. #define BTFIXUP_INT(__name) ___illegal_use_of_BTFIXUP_INT_in_module()
  20. #define BTFIXUP_BLACKBOX(__name) ___illegal_use_of_BTFIXUP_BLACKBOX_in_module
  21. #else
  22. #define BTFIXUP_SIMM13(__name) ___sf_##__name()
  23. #define BTFIXUP_HALF(__name) ___af_##__name()
  24. #define BTFIXUP_SETHI(__name) ___hf_##__name()
  25. #define BTFIXUP_INT(__name) ((unsigned int)&___i_##__name)
  26. /* This must be written in assembly and present in a sethi */
  27. #define BTFIXUP_BLACKBOX(__name) ___b_##__name
  28. #endif /* MODULE */
  29. /* Fixup call xx */
  30. #define BTFIXUPDEF_CALL(__type, __name, __args...) 
  31. extern __type ___f_##__name(__args);
  32. extern unsigned ___fs_##__name[3];
  33. #define BTFIXUPDEF_CALL_CONST(__type, __name, __args...) 
  34. extern __type ___f_##__name(__args) __attribute__((const));
  35. extern unsigned ___fs_##__name[3];
  36. #define BTFIXUP_CALL(__name) ___f_##__name
  37. #define BTFIXUPDEF_BLACKBOX(__name)
  38. extern unsigned ___bs_##__name[2];
  39. /* Put bottom 13bits into some register variable */
  40. #define BTFIXUPDEF_SIMM13(__name)
  41. extern unsigned int ___sf_##__name(void) __attribute__((const));
  42. extern unsigned ___ss_##__name[2];
  43. extern __inline__ unsigned int ___sf_##__name(void) {
  44. unsigned int ret;
  45. __asm__ ("or %%g0, ___s_" #__name ", %0" : "=r"(ret));
  46. return ret;
  47. }
  48. #define BTFIXUPDEF_SIMM13_INIT(__name,__val)
  49. extern unsigned int ___sf_##__name(void) __attribute__((const));
  50. extern unsigned ___ss_##__name[2];
  51. extern __inline__ unsigned int ___sf_##__name(void) {
  52. unsigned int ret;
  53. __asm__ ("or %%g0, ___s_" #__name "__btset_" #__val ", %0" : "=r"(ret));
  54. return ret;
  55. }
  56. /* Put either bottom 13 bits, or upper 22 bits into some register variable
  57.  * (depending on the value, this will lead into sethi FIX, reg; or
  58.  * mov FIX, reg; )
  59.  */
  60. #define BTFIXUPDEF_HALF(__name)
  61. extern unsigned int ___af_##__name(void) __attribute__((const));
  62. extern unsigned ___as_##__name[2];
  63. extern __inline__ unsigned int ___af_##__name(void) {
  64. unsigned int ret;
  65. __asm__ ("or %%g0, ___a_" #__name ", %0" : "=r"(ret));
  66. return ret;
  67. }
  68. #define BTFIXUPDEF_HALF_INIT(__name,__val)
  69. extern unsigned int ___af_##__name(void) __attribute__((const));
  70. extern unsigned ___as_##__name[2];
  71. extern __inline__ unsigned int ___af_##__name(void) {
  72. unsigned int ret;
  73. __asm__ ("or %%g0, ___a_" #__name "__btset_" #__val ", %0" : "=r"(ret));
  74. return ret;
  75. }
  76. /* Put upper 22 bits into some register variable */
  77. #define BTFIXUPDEF_SETHI(__name)
  78. extern unsigned int ___hf_##__name(void) __attribute__((const));
  79. extern unsigned ___hs_##__name[2];
  80. extern __inline__ unsigned int ___hf_##__name(void) {
  81. unsigned int ret;
  82. __asm__ ("sethi %%hi(___h_" #__name "), %0" : "=r"(ret));
  83. return ret;
  84. }
  85. #define BTFIXUPDEF_SETHI_INIT(__name,__val)
  86. extern unsigned int ___hf_##__name(void) __attribute__((const));
  87. extern unsigned ___hs_##__name[2];
  88. extern __inline__ unsigned int ___hf_##__name(void) {
  89. unsigned int ret;
  90. __asm__ ("sethi %%hi(___h_" #__name "__btset_" #__val "), %0" : 
  91.  "=r"(ret));
  92. return ret;
  93. }
  94. /* Put a full 32bit integer into some register variable */
  95. #define BTFIXUPDEF_INT(__name)
  96. extern unsigned char ___i_##__name;
  97. extern unsigned ___is_##__name[2];
  98. #define BTFIXUPCALL_NORM 0x00000000 /* Always call */
  99. #define BTFIXUPCALL_NOP 0x01000000 /* Possibly optimize to nop */
  100. #define BTFIXUPCALL_RETINT(i) (0x90102000|((i) & 0x1fff)) /* Possibly optimize to mov i, %o0 */
  101. #define BTFIXUPCALL_ORINT(i) (0x90122000|((i) & 0x1fff)) /* Possibly optimize to or %o0, i, %o0 */
  102. #define BTFIXUPCALL_RETO0 0x01000000 /* Return first parameter, actually a nop */
  103. #define BTFIXUPCALL_ANDNINT(i) (0x902a2000|((i) & 0x1fff)) /* Possibly optimize to andn %o0, i, %o0 */
  104. #define BTFIXUPCALL_SWAPO0O1 0xd27a0000 /* Possibly optimize to swap [%o0],%o1 */
  105. #define BTFIXUPCALL_SWAPO0G0 0xc07a0000 /* Possibly optimize to swap [%o0],%g0 */
  106. #define BTFIXUPCALL_SWAPG1G2 0xc4784000 /* Possibly optimize to swap [%g1],%g2 */
  107. #define BTFIXUPCALL_STG0O0 0xc0220000 /* Possibly optimize to st %g0,[%o0] */
  108. #define BTFIXUPCALL_STO1O0 0xd2220000 /* Possibly optimize to st %o1,[%o0] */
  109. #define BTFIXUPSET_CALL(__name, __addr, __insn)
  110. do {
  111. ___fs_##__name[0] |= 1;
  112. ___fs_##__name[1] = (unsigned long)__addr;
  113. ___fs_##__name[2] = __insn;
  114. } while (0)
  115. #define BTFIXUPSET_BLACKBOX(__name, __func)
  116. do {
  117. ___bs_##__name[0] |= 1;
  118. ___bs_##__name[1] = (unsigned long)__func;
  119. } while (0)
  120. #define BTFIXUPCOPY_CALL(__name, __from)
  121. do {
  122. ___fs_##__name[0] |= 1;
  123. ___fs_##__name[1] = ___fs_##__from[1];
  124. ___fs_##__name[2] = ___fs_##__from[2];
  125. } while (0)
  126. #define BTFIXUPSET_SIMM13(__name, __val)
  127. do {
  128. ___ss_##__name[0] |= 1;
  129. ___ss_##__name[1] = (unsigned)__val;
  130. } while (0)
  131. #define BTFIXUPCOPY_SIMM13(__name, __from)
  132. do {
  133. ___ss_##__name[0] |= 1;
  134. ___ss_##__name[1] = ___ss_##__from[1];
  135. } while (0)
  136. #define BTFIXUPSET_HALF(__name, __val)
  137. do {
  138. ___as_##__name[0] |= 1;
  139. ___as_##__name[1] = (unsigned)__val;
  140. } while (0)
  141. #define BTFIXUPCOPY_HALF(__name, __from)
  142. do {
  143. ___as_##__name[0] |= 1;
  144. ___as_##__name[1] = ___as_##__from[1];
  145. } while (0)
  146. #define BTFIXUPSET_SETHI(__name, __val)
  147. do {
  148. ___hs_##__name[0] |= 1;
  149. ___hs_##__name[1] = (unsigned)__val;
  150. } while (0)
  151. #define BTFIXUPCOPY_SETHI(__name, __from)
  152. do {
  153. ___hs_##__name[0] |= 1;
  154. ___hs_##__name[1] = ___hs_##__from[1];
  155. } while (0)
  156. #define BTFIXUPSET_INT(__name, __val)
  157. do {
  158. ___is_##__name[0] |= 1;
  159. ___is_##__name[1] = (unsigned)__val;
  160. } while (0)
  161. #define BTFIXUPCOPY_INT(__name, __from)
  162. do {
  163. ___is_##__name[0] |= 1;
  164. ___is_##__name[1] = ___is_##__from[1];
  165. } while (0)
  166. #define BTFIXUPVAL_CALL(__name)
  167. ((unsigned long)___fs_##__name[1])
  168. extern void btfixup(void);
  169. #else /* __ASSEMBLY__ */
  170. #define BTFIXUP_SETHI(__name) %hi(___h_ ## __name)
  171. #define BTFIXUP_SETHI_INIT(__name,__val) %hi(___h_ ## __name ## __btset_ ## __val)
  172. #endif /* __ASSEMBLY__ */
  173. #endif /* !(_SPARC_BTFIXUP_H) */