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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/asm-arm/proc-armv/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 processor specifics for
  11.  *  the ARM6 and better processors.
  12.  */
  13. #define MODE_USR USR_MODE
  14. #define MODE_FIQ FIQ_MODE
  15. #define MODE_IRQ IRQ_MODE
  16. #define MODE_SVC SVC_MODE
  17. #define DEFAULT_FIQ MODE_FIQ
  18. /*
  19.  * LOADREGS - ldm with PC in register list (eg, ldmfd sp!, {pc})
  20.  */
  21. #ifdef __STDC__
  22. #define LOADREGS(cond, base, reglist...)
  23. ldm##cond base,reglist
  24. #else
  25. #define LOADREGS(cond, base, reglist...)
  26. ldm/**/cond base,reglist
  27. #endif
  28. /*
  29.  * Build a return instruction for this processor type.
  30.  */
  31. #define RETINSTR(instr, regs...)
  32. instr regs
  33. /*
  34.  * Save the current IRQ state and disable IRQs.  Note that this macro
  35.  * assumes FIQs are enabled, and that the processor is in SVC mode.
  36.  */
  37. .macro save_and_disable_irqs, oldcpsr, temp
  38. mrs oldcpsr, cpsr
  39. mov temp, #I_BIT | MODE_SVC
  40. msr cpsr_c, temp
  41. .endm
  42. /*
  43.  * Restore interrupt state previously stored in a register.  We don't
  44.  * guarantee that this will preserve the flags.
  45.  */
  46. .macro restore_irqs, oldcpsr
  47. msr cpsr_c, oldcpsr
  48. .endm
  49. /*
  50.  * These two are used to save LR/restore PC over a user-based access.
  51.  * The old 26-bit architecture requires that we do.  On 32-bit
  52.  * architecture, we can safely ignore this requirement.
  53.  */
  54. .macro save_lr
  55. .endm
  56. .macro restore_pc
  57. mov pc, lr
  58. .endm
  59. #define USER(x...)
  60. 9999: x;
  61. .section __ex_table,"a";
  62. .align 3;
  63. .long 9999b,9001f;
  64. .previous