Files
revng-revng/include/revng/Support/AccessTracker.h
2024-06-20 10:24:50 +02:00

55 lines
1.3 KiB
C++

#pragma once
//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
#include <cstdint>
#include "llvm/ADT/StringRef.h"
#include "revng/Support/Assert.h"
#include "revng/Support/Debug.h"
void onFieldAccess(llvm::StringRef FieldName,
llvm::StringRef StructName) debug_function;
namespace revng {
///
/// A AccessCounter is optimized std::stack<bool> that can contain up to 8
/// elements.
///
class AccessTracker {
private:
std::uint8_t Counter = 0;
bool IsTracking;
public:
AccessTracker(bool StartsActive) { IsTracking = StartsActive; }
public:
bool operator==(const AccessTracker &Other) const = default;
bool operator!=(const AccessTracker &Other) const = default;
public:
void clear() {
Counter &= ~0x1;
IsTracking = true;
}
void access() { Counter |= (0x1 & IsTracking); }
void push() {
bool HasLeadingZeroes = llvm::countLeadingZeros(Counter) != 0;
revng_assert(HasLeadingZeroes, "More than 8 pushes have been performed");
Counter = Counter << 1;
}
void pop() { Counter = Counter >> 1; }
bool front() const { return (Counter & 0x1) == 0; }
bool peak() const { return Counter & 0x1; }
bool isSet() const { return Counter; }
void stopTracking() { IsTracking = false; }
};
} // namespace revng