mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
SCRIPT Move cc files
This commit is contained in:
committed by
Peter Johnson
parent
10b4a0c971
commit
7ca1be9bae
66
wpiutil/src/test/native/cpp/llvm/CountCopyAndMove.hpp
Normal file
66
wpiutil/src/test/native/cpp/llvm/CountCopyAndMove.hpp
Normal file
@@ -0,0 +1,66 @@
|
||||
//===- 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 wpi {
|
||||
|
||||
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 wpi
|
||||
|
||||
#endif // LLVM_UNITTESTS_ADT_COUNTCOPYANDMOVE_H
|
||||
Reference in New Issue
Block a user