dfsan_chained_origin_depot.h 852 B

1234567891011121314151617181920212223242526
  1. //===-- dfsan_chained_origin_depot.h ----------------------------*- C++ -*-===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. //
  9. // This file is a part of DataFlowSanitizer.
  10. //
  11. // A storage for chained origins.
  12. //===----------------------------------------------------------------------===//
  13. #ifndef DFSAN_CHAINED_ORIGIN_DEPOT_H
  14. #define DFSAN_CHAINED_ORIGIN_DEPOT_H
  15. #include "sanitizer_common/sanitizer_chained_origin_depot.h"
  16. #include "sanitizer_common/sanitizer_common.h"
  17. namespace __dfsan {
  18. ChainedOriginDepot* GetChainedOriginDepot();
  19. } // namespace __dfsan
  20. #endif // DFSAN_CHAINED_ORIGIN_DEPOT_H