Delete changes meant for a private branch.
[official-gcc.git] / libsanitizer / tsan / tsan_ignoreset.cpp
blobf6e41f668618887b39712c321a28ed66371abb53
1 //===-- tsan_ignoreset.cpp ------------------------------------------------===//
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 ThreadSanitizer (TSan), a race detector.
11 //===----------------------------------------------------------------------===//
12 #include "tsan_ignoreset.h"
14 namespace __tsan {
16 const uptr IgnoreSet::kMaxSize;
18 IgnoreSet::IgnoreSet()
19 : size_() {
22 void IgnoreSet::Add(u32 stack_id) {
23 if (size_ == kMaxSize)
24 return;
25 for (uptr i = 0; i < size_; i++) {
26 if (stacks_[i] == stack_id)
27 return;
29 stacks_[size_++] = stack_id;
32 void IgnoreSet::Reset() {
33 size_ = 0;
36 uptr IgnoreSet::Size() const {
37 return size_;
40 u32 IgnoreSet::At(uptr i) const {
41 CHECK_LT(i, size_);
42 CHECK_LE(size_, kMaxSize);
43 return stacks_[i];
46 } // namespace __tsan