assembler.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/assembler.h
  3.  *
  4.  *  Copyright (C) 1996-2000 Russell King
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  *
  10.  *  This file contains arm architecture specific defines
  11.  *  for the different processors.
  12.  *
  13.  *  Do not include any C declarations in this file - it is included by
  14.  *  assembler source.
  15.  */
  16. #ifndef __ASSEMBLY__
  17. #error "Only include this from assembly code"
  18. #endif
  19. #include <asm/ptrace.h>
  20. /*
  21.  * Endian independent macros for shifting bytes within registers.
  22.  */
  23. #ifndef __ARMEB__
  24. #define pull            lsr
  25. #define push            lsl
  26. #define get_byte_0      lsl #0
  27. #define get_byte_1 lsr #8
  28. #define get_byte_2 lsr #16
  29. #define get_byte_3 lsr #24
  30. #define put_byte_0      lsl #0
  31. #define put_byte_1 lsl #8
  32. #define put_byte_2 lsl #16
  33. #define put_byte_3 lsl #24
  34. #else
  35. #define pull            lsl
  36. #define push            lsr
  37. #define get_byte_0 lsr #24
  38. #define get_byte_1 lsr #16
  39. #define get_byte_2 lsr #8
  40. #define get_byte_3      lsl #0
  41. #define put_byte_0 lsl #24
  42. #define put_byte_1 lsl #16
  43. #define put_byte_2 lsl #8
  44. #define put_byte_3      lsl #0
  45. #endif
  46. /*
  47.  * Data preload for architectures that support it
  48.  */
  49. #if __LINUX_ARM_ARCH__ >= 5
  50. #define PLD(code...) code
  51. #else
  52. #define PLD(code...)
  53. #endif
  54. #define MODE_USR USR_MODE
  55. #define MODE_FIQ FIQ_MODE
  56. #define MODE_IRQ IRQ_MODE
  57. #define MODE_SVC SVC_MODE
  58. #define DEFAULT_FIQ MODE_FIQ
  59. /*
  60.  * LOADREGS - ldm with PC in register list (eg, ldmfd sp!, {pc})
  61.  */
  62. #ifdef __STDC__
  63. #define LOADREGS(cond, base, reglist...)
  64. ldm##cond base,reglist
  65. #else
  66. #define LOADREGS(cond, base, reglist...)
  67. ldm/**/cond base,reglist
  68. #endif
  69. /*
  70.  * Build a return instruction for this processor type.
  71.  */
  72. #define RETINSTR(instr, regs...)
  73. instr regs
  74. /*
  75.  * Save the current IRQ state and disable IRQs.  Note that this macro
  76.  * assumes FIQs are enabled, and that the processor is in SVC mode.
  77.  */
  78. .macro save_and_disable_irqs, oldcpsr, temp
  79. mrs oldcpsr, cpsr
  80. mov temp, #PSR_I_BIT | MODE_SVC
  81. msr cpsr_c, temp
  82. .endm
  83. /*
  84.  * Restore interrupt state previously stored in a register.  We don't
  85.  * guarantee that this will preserve the flags.
  86.  */
  87. .macro restore_irqs, oldcpsr
  88. msr cpsr_c, oldcpsr
  89. .endm
  90. /*
  91.  * These two are used to save LR/restore PC over a user-based access.
  92.  * The old 26-bit architecture requires that we do.  On 32-bit
  93.  * architecture, we can safely ignore this requirement.
  94.  */
  95. .macro save_lr
  96. .endm
  97. .macro restore_pc
  98. mov pc, lr
  99. .endm
  100. #define USER(x...)
  101. 9999: x;
  102. .section __ex_table,"a";
  103. .align 3;
  104. .long 9999b,9001f;
  105. .previous