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