builtins.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* Licensed to the Apache Software Foundation (ASF) under one or more
  2. * contributor license agreements. See the NOTICE file distributed with
  3. * this work for additional information regarding copyright ownership.
  4. * The ASF licenses this file to You under the Apache License, Version 2.0
  5. * (the "License"); you may not use this file except in compliance with
  6. * the License. You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #include "apr_arch_atomic.h"
  17. #ifdef USE_ATOMICS_BUILTINS
  18. APR_DECLARE(apr_status_t) apr_atomic_init(apr_pool_t *p)
  19. {
  20. return APR_SUCCESS;
  21. }
  22. APR_DECLARE(apr_uint32_t) apr_atomic_read32(volatile apr_uint32_t *mem)
  23. {
  24. return *mem;
  25. }
  26. APR_DECLARE(void) apr_atomic_set32(volatile apr_uint32_t *mem, apr_uint32_t val)
  27. {
  28. *mem = val;
  29. }
  30. APR_DECLARE(apr_uint32_t) apr_atomic_add32(volatile apr_uint32_t *mem, apr_uint32_t val)
  31. {
  32. return __sync_fetch_and_add(mem, val);
  33. }
  34. APR_DECLARE(void) apr_atomic_sub32(volatile apr_uint32_t *mem, apr_uint32_t val)
  35. {
  36. __sync_fetch_and_sub(mem, val);
  37. }
  38. APR_DECLARE(apr_uint32_t) apr_atomic_inc32(volatile apr_uint32_t *mem)
  39. {
  40. return __sync_fetch_and_add(mem, 1);
  41. }
  42. APR_DECLARE(int) apr_atomic_dec32(volatile apr_uint32_t *mem)
  43. {
  44. return __sync_sub_and_fetch(mem, 1);
  45. }
  46. APR_DECLARE(apr_uint32_t) apr_atomic_cas32(volatile apr_uint32_t *mem, apr_uint32_t with,
  47. apr_uint32_t cmp)
  48. {
  49. return __sync_val_compare_and_swap(mem, cmp, with);
  50. }
  51. APR_DECLARE(apr_uint32_t) apr_atomic_xchg32(volatile apr_uint32_t *mem, apr_uint32_t val)
  52. {
  53. __sync_synchronize();
  54. return __sync_lock_test_and_set(mem, val);
  55. }
  56. APR_DECLARE(void*) apr_atomic_casptr(volatile void **mem, void *with, const void *cmp)
  57. {
  58. return (void*) __sync_val_compare_and_swap(mem, cmp, with);
  59. }
  60. APR_DECLARE(void*) apr_atomic_xchgptr(volatile void **mem, void *with)
  61. {
  62. __sync_synchronize();
  63. return (void*) __sync_lock_test_and_set(mem, with);
  64. }
  65. #endif /* USE_ATOMICS_BUILTINS */