/newlib/libc/machine/spu/include/ea.h

https://bitbucket.org/pizzafactory/binutils · C Header · 137 lines · 74 code · 21 blank · 42 comment · 2 complexity · e84baed4719151019ecf735d298662ae MD5 · raw file

  1. /*
  2. (C) Copyright IBM Corp. 2007, 2008
  3. All rights reserved.
  4. Redistribution and use in source and binary forms, with or without
  5. modification, are permitted provided that the following conditions are met:
  6. * Redistributions of source code must retain the above copyright notice,
  7. this list of conditions and the following disclaimer.
  8. * Redistributions in binary form must reproduce the above copyright
  9. notice, this list of conditions and the following disclaimer in the
  10. documentation and/or other materials provided with the distribution.
  11. * Neither the name of IBM nor the names of its contributors may be
  12. used to endorse or promote products derived from this software without
  13. specific prior written permission.
  14. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  15. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  16. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  17. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  18. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  19. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  20. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  21. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  22. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  23. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  24. POSSIBILITY OF SUCH DAMAGE.
  25. */
  26. #ifndef __EA_H
  27. #define __EA_H
  28. #include <stdint.h>
  29. #include <stddef.h>
  30. #include <sys/syscall.h>
  31. #include <sys/types.h>
  32. #include <sys/unistd.h>
  33. /*
  34. * take this out when compiler support is common
  35. */
  36. #if (!defined( __EA32__ ) && !defined( __EA64__ ))
  37. #warning "need __ea support in compiler to compile to take advantage of libea features"
  38. #define __ea
  39. #define __EA32__
  40. #endif
  41. #ifdef __EA64__
  42. typedef uint64_t size_ea_t;
  43. typedef int64_t ssize_ea_t;
  44. typedef uint64_t key_ea_t;
  45. #define MAP_FAILED_EA ((__ea void *) -1LL)
  46. #else
  47. typedef uint32_t size_ea_t;
  48. typedef int32_t ssize_ea_t;
  49. typedef uint32_t key_ea_t;
  50. #define MAP_FAILED_EA ((__ea void *) -1)
  51. #endif
  52. typedef __ea void * eaptr;
  53. struct iovec_ea
  54. {
  55. #ifdef __EA32__
  56. unsigned int __pad1; /* 32 bit padding */
  57. #endif
  58. /*__ea void *iov_base;*/
  59. eaptr iov_base; /* Starting address */
  60. #ifdef __EA32__
  61. unsigned int __pad2; /* 32 bit padding */
  62. #endif
  63. size_ea_t iov_len; /* Number of bytes */
  64. };
  65. /* Memory Mapping functions */
  66. __ea void *mmap_ea (__ea void *start, size_ea_t length, int prot, int
  67. flags, int fd, off_t offset);
  68. int munmap_ea (__ea void *start, size_ea_t length);
  69. __ea void *mremap_ea (__ea void *old_address, size_ea_t old_size,
  70. size_ea_t new_size, unsigned long flags);
  71. int msync_ea (__ea void *start, size_ea_t length, int flags);
  72. /* EA memory mangement functions */
  73. __ea void *calloc_ea (size_ea_t nmemb, size_ea_t length);
  74. void free_ea (__ea void *ptr);
  75. __ea void *malloc_ea (size_ea_t size);
  76. __ea void *realloc_ea (__ea void *ptr, size_ea_t size);
  77. int posix_memalign_ea (__ea void **memptr, size_ea_t alignment, size_ea_t size);
  78. /* String copying functions */
  79. __ea void *memcpy_ea (__ea void *dest, __ea const void *src, size_ea_t n);
  80. __ea void *memmove_ea (__ea void *dest, __ea const void *src, size_ea_t n);
  81. __ea char *strcpy_ea (__ea char *dest, __ea const char *src);
  82. __ea char *strncpy_ea (__ea char *dest, __ea const char *src, size_ea_t n);
  83. /* Concatenation functions */
  84. __ea char *strcat_ea (__ea char *dest, __ea const char *src);
  85. __ea char *strncat_ea (__ea char *dest, __ea const char *src, size_ea_t n);
  86. /* Comparison functions */
  87. int memcmp_ea (__ea void *s1, __ea const void *s2, size_ea_t n);
  88. int strcmp_ea (__ea char *s1, __ea const char *s2);
  89. int strncmp_ea (__ea void *s1, __ea const void *s2, size_ea_t n3);
  90. /* Search functions*/
  91. __ea void *memchr_ea (__ea const void *s, int c, size_ea_t n);
  92. __ea char *strchr_ea (__ea const char *s, int c);
  93. size_ea_t strcspn_ea (__ea const char *s, const char *reject);
  94. __ea char *strpbrk_ea (__ea const char *s, const char *accept);
  95. __ea char *strrchr_ea (__ea const char *s, int c);
  96. size_ea_t strspn_ea (__ea const char *s, const char *accept);
  97. __ea char * strstr_ea (__ea const char *s1, __ea const char *s2);
  98. /* Misc functions */
  99. __ea void *memset_ea (__ea void *dest, int c, size_ea_t n);
  100. size_ea_t strlen_ea (__ea const char *s);
  101. /* Linux system call functions */
  102. ssize_ea_t read_ea(int fd, __ea void *buf, size_ea_t count);
  103. ssize_ea_t pread_ea(int fd, __ea void *buf, size_ea_t count, off_t offset);
  104. ssize_ea_t readv_ea(int fd, struct iovec_ea *vector, int count);
  105. ssize_ea_t write_ea(int fd, __ea const void *buf, size_ea_t count);
  106. ssize_ea_t pwrite_ea(int fd, __ea const void *buf, size_ea_t count, off_t offset);
  107. ssize_ea_t writev_ea(int fd, struct iovec_ea *vector, int count);
  108. #if defined( __EA64__ ) && defined( __EA32__ )
  109. #error __EA64__ and __EA32__ are both defined
  110. #endif
  111. #endif