mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-01 11:06:06 +00:00

Right now immediately after moving the captured state, we 'disarm' the moved-from object's destructor by resetting the `RHS.CallbackAndInlineFlag`. This means that we never properly destroy the RHS object's captured state.
67 lines
1.9 KiB
C++
67 lines
1.9 KiB
C++
//===- llvm/unittest/ADT/CountCopyAndMove.h - Optional unit tests ---------===//
|
|
//
|
|
// 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 LLVM_UNITTESTS_ADT_COUNTCOPYANDMOVE_H
|
|
#define LLVM_UNITTESTS_ADT_COUNTCOPYANDMOVE_H
|
|
|
|
namespace llvm {
|
|
|
|
struct CountCopyAndMove {
|
|
static int DefaultConstructions;
|
|
static int ValueConstructions;
|
|
static int CopyConstructions;
|
|
static int CopyAssignments;
|
|
static int MoveConstructions;
|
|
static int MoveAssignments;
|
|
static int Destructions;
|
|
int val;
|
|
|
|
CountCopyAndMove() { ++DefaultConstructions; }
|
|
explicit CountCopyAndMove(int val) : val(val) { ++ValueConstructions; }
|
|
CountCopyAndMove(const CountCopyAndMove &other) : val(other.val) {
|
|
++CopyConstructions;
|
|
}
|
|
CountCopyAndMove &operator=(const CountCopyAndMove &other) {
|
|
val = other.val;
|
|
++CopyAssignments;
|
|
return *this;
|
|
}
|
|
CountCopyAndMove(CountCopyAndMove &&other) : val(other.val) {
|
|
++MoveConstructions;
|
|
}
|
|
CountCopyAndMove &operator=(CountCopyAndMove &&other) {
|
|
val = other.val;
|
|
++MoveAssignments;
|
|
return *this;
|
|
}
|
|
~CountCopyAndMove() { ++Destructions; }
|
|
|
|
static void ResetCounts() {
|
|
DefaultConstructions = 0;
|
|
ValueConstructions = 0;
|
|
CopyConstructions = 0;
|
|
CopyAssignments = 0;
|
|
MoveConstructions = 0;
|
|
MoveAssignments = 0;
|
|
Destructions = 0;
|
|
}
|
|
|
|
static int TotalConstructions() {
|
|
return DefaultConstructions + ValueConstructions + MoveConstructions +
|
|
CopyConstructions;
|
|
}
|
|
|
|
static int TotalCopies() { return CopyConstructions + CopyAssignments; }
|
|
|
|
static int TotalMoves() { return MoveConstructions + MoveAssignments; }
|
|
};
|
|
|
|
} // end namespace llvm
|
|
|
|
#endif // LLVM_UNITTESTS_ADT_COUNTCOPYANDMOVE_H
|