atm_gcc_sync.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. *
  3. * Copyright 2015 gRPC authors.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. *
  17. */
  18. #ifndef GRPC_IMPL_CODEGEN_ATM_GCC_SYNC_H
  19. #define GRPC_IMPL_CODEGEN_ATM_GCC_SYNC_H
  20. // IWYU pragma: private, include <grpc/support/atm.h>
  21. /* variant of atm_platform.h for gcc and gcc-like compiers with __sync_*
  22. interface */
  23. #include <grpc/impl/codegen/port_platform.h>
  24. typedef intptr_t gpr_atm;
  25. #define GPR_ATM_MAX INTPTR_MAX
  26. #define GPR_ATM_MIN INTPTR_MIN
  27. #define GPR_ATM_INC_CAS_THEN(blah) blah
  28. #define GPR_ATM_INC_ADD_THEN(blah) blah
  29. #define GPR_ATM_COMPILE_BARRIER_() __asm__ __volatile__("" : : : "memory")
  30. #if defined(__i386) || defined(__x86_64__)
  31. /* All loads are acquire loads and all stores are release stores. */
  32. #define GPR_ATM_LS_BARRIER_() GPR_ATM_COMPILE_BARRIER_()
  33. #else
  34. #define GPR_ATM_LS_BARRIER_() gpr_atm_full_barrier()
  35. #endif
  36. #define gpr_atm_full_barrier() (__sync_synchronize())
  37. static __inline gpr_atm gpr_atm_acq_load(const gpr_atm* p) {
  38. gpr_atm value = *p;
  39. GPR_ATM_LS_BARRIER_();
  40. return value;
  41. }
  42. static __inline gpr_atm gpr_atm_no_barrier_load(const gpr_atm* p) {
  43. gpr_atm value = *p;
  44. GPR_ATM_COMPILE_BARRIER_();
  45. return value;
  46. }
  47. static __inline void gpr_atm_rel_store(gpr_atm* p, gpr_atm value) {
  48. GPR_ATM_LS_BARRIER_();
  49. *p = value;
  50. }
  51. static __inline void gpr_atm_no_barrier_store(gpr_atm* p, gpr_atm value) {
  52. GPR_ATM_COMPILE_BARRIER_();
  53. *p = value;
  54. }
  55. #undef GPR_ATM_LS_BARRIER_
  56. #undef GPR_ATM_COMPILE_BARRIER_
  57. #define gpr_atm_no_barrier_fetch_add(p, delta) \
  58. gpr_atm_full_fetch_add((p), (delta))
  59. #define gpr_atm_full_fetch_add(p, delta) (__sync_fetch_and_add((p), (delta)))
  60. #define gpr_atm_no_barrier_cas(p, o, n) gpr_atm_acq_cas((p), (o), (n))
  61. #define gpr_atm_acq_cas(p, o, n) (__sync_bool_compare_and_swap((p), (o), (n)))
  62. #define gpr_atm_rel_cas(p, o, n) gpr_atm_acq_cas((p), (o), (n))
  63. #define gpr_atm_full_cas(p, o, n) gpr_atm_acq_cas((p), (o), (n))
  64. static __inline gpr_atm gpr_atm_full_xchg(gpr_atm* p, gpr_atm n) {
  65. gpr_atm cur;
  66. do {
  67. cur = gpr_atm_acq_load(p);
  68. } while (!gpr_atm_rel_cas(p, cur, n));
  69. return cur;
  70. }
  71. #endif /* GRPC_IMPL_CODEGEN_ATM_GCC_SYNC_H */