//===-- tsan_shadow.h -------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef TSAN_SHADOW_H #define TSAN_SHADOW_H #include "tsan_defs.h" namespace __tsan { class FastState { … }; static_assert …; class Shadow { … }; static_assert …; ALWAYS_INLINE RawShadow LoadShadow(RawShadow *p) { … } ALWAYS_INLINE void StoreShadow(RawShadow *sp, RawShadow s) { … } } // namespace __tsan #endif