/Modules/_ctypes/libffi/src/pa/ffitarget.h

http://unladen-swallow.googlecode.com/ · C++ Header · 77 lines · 38 code · 12 blank · 27 comment · 0 complexity · 3a6fbb541af62fcd2ae81d874b0c4487 MD5 · raw file

  1. /* -----------------------------------------------------------------*-C-*-
  2. ffitarget.h - Copyright (c) 1996-2003 Red Hat, Inc.
  3. Target configuration macros for hppa.
  4. Permission is hereby granted, free of charge, to any person obtaining
  5. a copy of this software and associated documentation files (the
  6. ``Software''), to deal in the Software without restriction, including
  7. without limitation the rights to use, copy, modify, merge, publish,
  8. distribute, sublicense, and/or sell copies of the Software, and to
  9. permit persons to whom the Software is furnished to do so, subject to
  10. the following conditions:
  11. The above copyright notice and this permission notice shall be included
  12. in all copies or substantial portions of the Software.
  13. THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
  14. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  15. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  16. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  17. HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  18. WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  20. DEALINGS IN THE SOFTWARE.
  21. ----------------------------------------------------------------------- */
  22. #ifndef LIBFFI_TARGET_H
  23. #define LIBFFI_TARGET_H
  24. /* ---- System specific configurations ----------------------------------- */
  25. #ifndef LIBFFI_ASM
  26. typedef unsigned long ffi_arg;
  27. typedef signed long ffi_sarg;
  28. typedef enum ffi_abi {
  29. FFI_FIRST_ABI = 0,
  30. #ifdef PA_LINUX
  31. FFI_PA32,
  32. FFI_DEFAULT_ABI = FFI_PA32,
  33. #endif
  34. #ifdef PA_HPUX
  35. FFI_PA32,
  36. FFI_DEFAULT_ABI = FFI_PA32,
  37. #endif
  38. #ifdef PA64_HPUX
  39. #error "PA64_HPUX FFI is not yet implemented"
  40. FFI_PA64,
  41. FFI_DEFAULT_ABI = FFI_PA64,
  42. #endif
  43. FFI_LAST_ABI = FFI_DEFAULT_ABI + 1
  44. } ffi_abi;
  45. #endif
  46. /* ---- Definitions for closures ----------------------------------------- */
  47. #define FFI_CLOSURES 1
  48. #define FFI_NATIVE_RAW_API 0
  49. #ifdef PA_LINUX
  50. #define FFI_TRAMPOLINE_SIZE 32
  51. #else
  52. #define FFI_TRAMPOLINE_SIZE 40
  53. #endif
  54. #define FFI_TYPE_SMALL_STRUCT2 -1
  55. #define FFI_TYPE_SMALL_STRUCT3 -2
  56. #define FFI_TYPE_SMALL_STRUCT4 -3
  57. #define FFI_TYPE_SMALL_STRUCT5 -4
  58. #define FFI_TYPE_SMALL_STRUCT6 -5
  59. #define FFI_TYPE_SMALL_STRUCT7 -6
  60. #define FFI_TYPE_SMALL_STRUCT8 -7
  61. #endif