1 //===-- hwasan_poisoning.h --------------------------------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 // This file is a part of HWAddressSanitizer.
11 //===----------------------------------------------------------------------===//
13 #ifndef HWASAN_POISONING_H
14 #define HWASAN_POISONING_H
19 uptr
TagMemory(uptr p
, uptr size
, tag_t tag
);
20 uptr
TagMemoryAligned(uptr p
, uptr size
, tag_t tag
);
22 } // namespace __hwasan
24 #endif // HWASAN_POISONING_H