1 //===-- bytemap.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 #ifndef SCUDO_BYTEMAP_H_
10 #define SCUDO_BYTEMAP_H_
12 #include "atomic_helpers.h"
18 template <uptr Size
> class FlatByteMap
{
20 void init() { DCHECK(Size
== 0 || Map
[0] == 0); }
22 void unmapTestOnly() { memset(Map
, 0, Size
); }
24 void set(uptr Index
, u8 Value
) {
25 DCHECK_LT(Index
, Size
);
26 DCHECK_EQ(0U, Map
[Index
]);
29 u8
operator[](uptr Index
) {
30 DCHECK_LT(Index
, Size
);
43 #endif // SCUDO_BYTEMAP_H_