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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1995, 1996, 1997 by Ralf Baechle
  7.  * Copyright (C) 2002  Maciej W. Rozycki
  8.  *
  9.  * Some useful macros for MIPS assembler code
  10.  *
  11.  * Some of the routines below contain useless nops that will be optimized
  12.  * away by gas in -O mode. These nops are however required to fill delay
  13.  * slots in noreorder mode.
  14.  */
  15. #ifndef __ASM_ASM_H
  16. #define __ASM_ASM_H
  17. #include <linux/config.h>
  18. #include <asm/sgidefs.h>
  19. #ifndef CAT
  20. #ifdef __STDC__
  21. #define __CAT(str1,str2) str1##str2
  22. #else
  23. #define __CAT(str1,str2) str1/**/str2
  24. #endif
  25. #define CAT(str1,str2) __CAT(str1,str2)
  26. #endif
  27. /*
  28.  * PIC specific declarations
  29.  * Not used for the kernel but here seems to be the right place.
  30.  */
  31. #ifdef __PIC__
  32. #define CPRESTORE(register)                             
  33. .cprestore register
  34. #define CPADD(register)                                 
  35. .cpadd register
  36. #define CPLOAD(register)                                
  37. .cpload register
  38. #else
  39. #define CPRESTORE(register)
  40. #define CPADD(register)
  41. #define CPLOAD(register)
  42. #endif
  43. /*
  44.  * LEAF - declare leaf routine
  45.  */
  46. #define LEAF(symbol)                                    
  47. .globl symbol;                         
  48. .align 2;                              
  49. .type symbol,@function;               
  50. .ent symbol,0;                       
  51. symbol: .frame sp,0,ra
  52. /*
  53.  * NESTED - declare nested routine entry point
  54.  */
  55. #define NESTED(symbol, framesize, rpc)                  
  56. .globl symbol;                         
  57. .align 2;                              
  58. .type symbol,@function;               
  59. .ent symbol,0;                       
  60. symbol: .frame sp, framesize, rpc
  61. /*
  62.  * END - mark end of function
  63.  */
  64. #define END(function)                                   
  65. .end function;         
  66. .size function,.-function
  67. /*
  68.  * EXPORT - export definition of symbol
  69.  */
  70. #define EXPORT(symbol)
  71. .globl symbol;                         
  72. symbol:
  73. /*
  74.  * FEXPORT - export definition of a function symbol
  75.  */
  76. #define FEXPORT(symbol)
  77. .globl symbol;
  78. .type symbol,@function;
  79. symbol:
  80. /*
  81.  * ABS - export absolute symbol
  82.  */
  83. #define ABS(symbol,value)                               
  84. .globl symbol;                         
  85. symbol = value
  86. #define PANIC(msg)                                      
  87. .set push;
  88. .set reorder;                        
  89. PTR_LA a0,8f;                          
  90. jal panic;                          
  91. 9: b 9b;                             
  92. .set pop;
  93. TEXT(msg)
  94. /*
  95.  * Print formatted string
  96.  */
  97. #define PRINT(string)                                   
  98. .set push;
  99. .set reorder;                        
  100. PTR_LA a0,8f;                          
  101. jal printk;                         
  102. .set pop;
  103. TEXT(string)
  104. #define TEXT(msg)                                       
  105. .pushsection .data;
  106. 8: .asciiz msg;                            
  107. .popsection;
  108. /*
  109.  * Build text tables
  110.  */
  111. #define TTABLE(string)                                  
  112. .pushsection .text;
  113. .word 1f;                             
  114. .popsection
  115. .pushsection .data;
  116. 1: .asciiz string;                         
  117. .popsection
  118. /*
  119.  * MIPS IV pref instruction.
  120.  * Use with .set noreorder only!
  121.  *
  122.  * MIPS IV implementations are free to treat this as a nop.  The R5000
  123.  * is one of them.  So we should have an option not to use this instruction.
  124.  */
  125. #if CONFIG_CPU_HAS_PREFETCH
  126. #define PREF(hint,addr)                                 
  127. .set push;
  128. .set mips4;
  129. pref hint,addr;
  130. .set pop
  131. #define PREFX(hint,addr)                                
  132. .set push;
  133. .set mips4;
  134. prefx hint,addr;
  135. .set pop
  136. #else
  137. #define PREF(hint,addr)
  138. #define PREFX(hint,addr)
  139. #endif
  140. /*
  141.  * MIPS ISA IV/V movn/movz instructions and equivalents for older CPUs.
  142.  */
  143. #if (_MIPS_ISA == _MIPS_ISA_MIPS1)
  144. #define MOVN(rd,rs,rt)                                  
  145. .set push;
  146. .set reorder;
  147. beqz rt,9f;                          
  148. move rd,rs;                          
  149. .set pop;
  150. 9:
  151. #define MOVZ(rd,rs,rt)                                  
  152. .set push;
  153. .set reorder;
  154. bnez rt,9f;                          
  155. move rd,rs;                          
  156. .set pop;
  157. 9:
  158. #endif /* _MIPS_ISA == _MIPS_ISA_MIPS1 */
  159. #if (_MIPS_ISA == _MIPS_ISA_MIPS2) || (_MIPS_ISA == _MIPS_ISA_MIPS3)
  160. #define MOVN(rd,rs,rt)                                  
  161. .set push;
  162. .set noreorder;
  163. bnezl rt,9f;                          
  164.  move rd,rs;                          
  165. .set pop;
  166. 9:
  167. #define MOVZ(rd,rs,rt)                                  
  168. .set push;
  169. .set noreorder;
  170. beqzl rt,9f;                          
  171.  move rd,rs;                          
  172. .set pop;
  173. 9:
  174. #endif /* (_MIPS_ISA == _MIPS_ISA_MIPS2) || (_MIPS_ISA == _MIPS_ISA_MIPS3) */
  175. #if (_MIPS_ISA == _MIPS_ISA_MIPS4 ) || (_MIPS_ISA == _MIPS_ISA_MIPS5) || 
  176.     (_MIPS_ISA == _MIPS_ISA_MIPS32) || (_MIPS_ISA == _MIPS_ISA_MIPS64)
  177. #define MOVN(rd,rs,rt)                                  
  178. movn rd,rs,rt
  179. #define MOVZ(rd,rs,rt)                                  
  180. movz rd,rs,rt
  181. #endif /* MIPS IV, MIPS V, MIPS32 or MIPS64 */
  182. /*
  183.  * Stack alignment
  184.  */
  185. #if (_MIPS_ISA == _MIPS_ISA_MIPS1) || (_MIPS_ISA == _MIPS_ISA_MIPS2) || 
  186.     (_MIPS_ISA == _MIPS_ISA_MIPS32)
  187. #define ALSZ 7
  188. #define ALMASK ~7
  189. #endif
  190. #if (_MIPS_ISA == _MIPS_ISA_MIPS3) || (_MIPS_ISA == _MIPS_ISA_MIPS4) || 
  191.     (_MIPS_ISA == _MIPS_ISA_MIPS5) || (_MIPS_ISA == _MIPS_ISA_MIPS64)
  192. #define ALSZ 15
  193. #define ALMASK ~15
  194. #endif
  195. /*
  196.  * Macros to handle different pointer/register sizes for 32/64-bit code
  197.  */
  198. /*
  199.  * Size of a register
  200.  */
  201. #ifdef __mips64
  202. #define SZREG 8
  203. #else
  204. #define SZREG 4
  205. #endif
  206. /*
  207.  * Use the following macros in assemblercode to load/store registers,
  208.  * pointers etc.
  209.  */
  210. #if (_MIPS_ISA == _MIPS_ISA_MIPS1) || (_MIPS_ISA == _MIPS_ISA_MIPS2) || 
  211.     (_MIPS_ISA == _MIPS_ISA_MIPS32)
  212. #define REG_S sw
  213. #define REG_L lw
  214. #define REG_SUBU subu
  215. #define REG_ADDU addu
  216. #endif
  217. #if (_MIPS_ISA == _MIPS_ISA_MIPS3) || (_MIPS_ISA == _MIPS_ISA_MIPS4) || 
  218.     (_MIPS_ISA == _MIPS_ISA_MIPS5) || (_MIPS_ISA == _MIPS_ISA_MIPS64)
  219. #define REG_S sd
  220. #define REG_L ld
  221. #define REG_SUBU dsubu
  222. #define REG_ADDU daddu
  223. #endif
  224. /*
  225.  * How to add/sub/load/store/shift C int variables.
  226.  */
  227. #if (_MIPS_SZINT == 32)
  228. #define INT_ADD add
  229. #define INT_ADDU addu
  230. #define INT_ADDI addi
  231. #define INT_ADDIU addiu
  232. #define INT_SUB sub
  233. #define INT_SUBU subu
  234. #define INT_L lw
  235. #define INT_S sw
  236. #define INT_SLL sll
  237. #define INT_SLLV sllv
  238. #define INT_SRL srl
  239. #define INT_SRLV srlv
  240. #define INT_SRA sra
  241. #define INT_SRAV srav
  242. #endif
  243. #if (_MIPS_SZINT == 64)
  244. #define INT_ADD dadd
  245. #define INT_ADDU daddu
  246. #define INT_ADDI daddi
  247. #define INT_ADDIU daddiu
  248. #define INT_SUB dsub
  249. #define INT_SUBU dsubu
  250. #define INT_L ld
  251. #define INT_S sd
  252. #define INT_SLL dsll
  253. #define INT_SLLV dsllv
  254. #define INT_SRL dsrl
  255. #define INT_SRLV dsrlv
  256. #define INT_SRA dsra
  257. #define INT_SRAV dsrav
  258. #endif
  259. /*
  260.  * How to add/sub/load/store/shift C long variables.
  261.  */
  262. #if (_MIPS_SZLONG == 32)
  263. #define LONG_ADD add
  264. #define LONG_ADDU addu
  265. #define LONG_ADDI addi
  266. #define LONG_ADDIU addiu
  267. #define LONG_SUB sub
  268. #define LONG_SUBU subu
  269. #define LONG_L lw
  270. #define LONG_S sw
  271. #define LONG_SLL sll
  272. #define LONG_SLLV sllv
  273. #define LONG_SRL srl
  274. #define LONG_SRLV srlv
  275. #define LONG_SRA sra
  276. #define LONG_SRAV srav
  277. #endif
  278. #if (_MIPS_SZLONG == 64)
  279. #define LONG_ADD dadd
  280. #define LONG_ADDU daddu
  281. #define LONG_ADDI daddi
  282. #define LONG_ADDIU daddiu
  283. #define LONG_SUB dsub
  284. #define LONG_SUBU dsubu
  285. #define LONG_L ld
  286. #define LONG_S sd
  287. #define LONG_SLL dsll
  288. #define LONG_SLLV dsllv
  289. #define LONG_SRL dsrl
  290. #define LONG_SRLV dsrlv
  291. #define LONG_SRA dsra
  292. #define LONG_SRAV dsrav
  293. #endif
  294. /*
  295.  * How to add/sub/load/store/shift pointers.
  296.  */
  297. #if (_MIPS_SZPTR == 32)
  298. #define PTR_ADD add
  299. #define PTR_ADDU addu
  300. #define PTR_ADDI addi
  301. #define PTR_ADDIU addiu
  302. #define PTR_SUB sub
  303. #define PTR_SUBU subu
  304. #define PTR_L lw
  305. #define PTR_S sw
  306. #define PTR_LA la
  307. #define PTR_SLL sll
  308. #define PTR_SLLV sllv
  309. #define PTR_SRL srl
  310. #define PTR_SRLV srlv
  311. #define PTR_SRA sra
  312. #define PTR_SRAV srav
  313. #define PTR_SCALESHIFT 2
  314. #define PTR .word
  315. #define PTRSIZE 4
  316. #define PTRLOG 2
  317. #endif
  318. #if (_MIPS_SZPTR == 64)
  319. #define PTR_ADD dadd
  320. #define PTR_ADDU daddu
  321. #define PTR_ADDI daddi
  322. #define PTR_ADDIU daddiu
  323. #define PTR_SUB dsub
  324. #define PTR_SUBU dsubu
  325. #define PTR_L ld
  326. #define PTR_S sd
  327. #define PTR_LA dla
  328. #define PTR_SLL dsll
  329. #define PTR_SLLV dsllv
  330. #define PTR_SRL dsrl
  331. #define PTR_SRLV dsrlv
  332. #define PTR_SRA dsra
  333. #define PTR_SRAV dsrav
  334. #define PTR_SCALESHIFT 3
  335. #define PTR .dword
  336. #define PTRSIZE 8
  337. #define PTRLOG 3
  338. #endif
  339. /*
  340.  * Some cp0 registers were extended to 64bit for MIPS III.
  341.  */
  342. #if (_MIPS_ISA == _MIPS_ISA_MIPS1) || (_MIPS_ISA == _MIPS_ISA_MIPS2) || 
  343.     (_MIPS_ISA == _MIPS_ISA_MIPS32)
  344. #define MFC0 mfc0
  345. #define MTC0 mtc0
  346. #endif
  347. #if (_MIPS_ISA == _MIPS_ISA_MIPS3) || (_MIPS_ISA == _MIPS_ISA_MIPS4) || 
  348.     (_MIPS_ISA == _MIPS_ISA_MIPS5) || (_MIPS_ISA == _MIPS_ISA_MIPS64)
  349. #define MFC0 dmfc0
  350. #define MTC0 dmtc0
  351. #endif
  352. #define SSNOP sll zero,zero,1
  353. #endif /* __ASM_ASM_H */