1//===--- Boolean.h - Wrapper for boolean types for the VM -------*- C++ -*-===//
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#ifndef LLVM_CLANG_AST_INTERP_BOOLEAN_H
10#define LLVM_CLANG_AST_INTERP_BOOLEAN_H
11
12#include "Integral.h"
13#include "clang/AST/APValue.h"
14#include "clang/AST/ComparisonCategories.h"
15#include "llvm/Support/raw_ostream.h"
16#include <cstddef>
17#include <cstdint>
18
19namespace clang {
20namespace interp {
21
22/// Wrapper around boolean types.
23class Boolean final {
24private:
25 /// Underlying boolean.
26 bool V;
27
28public:
29 /// Zero-initializes a boolean.
30 Boolean() : V(false) {}
31 explicit Boolean(bool V) : V(V) {}
32
33 bool operator<(Boolean RHS) const { return V < RHS.V; }
34 bool operator>(Boolean RHS) const { return V > RHS.V; }
35 bool operator>(unsigned RHS) const { return static_cast<unsigned>(V) > RHS; }
36
37 Boolean operator-() const { return Boolean(V); }
38 Boolean operator-(const Boolean &Other) const { return Boolean(V - Other.V); }
39 Boolean operator~() const { return Boolean(true); }
40 Boolean operator!() const { return Boolean(!V); }
41
42 template <typename Ty, typename = std::enable_if_t<std::is_integral_v<Ty>>>
43 explicit operator Ty() const {
44 return V;
45 }
46
47 APSInt toAPSInt() const {
48 return APSInt(APInt(1, static_cast<uint64_t>(V), false), true);
49 }
50 APSInt toAPSInt(unsigned NumBits) const {
51 return APSInt(toAPSInt().zextOrTrunc(width: NumBits), true);
52 }
53 APValue toAPValue(const ASTContext &) const { return APValue(toAPSInt()); }
54
55 Boolean toUnsigned() const { return *this; }
56
57 constexpr static unsigned bitWidth() { return 1; }
58 bool isZero() const { return !V; }
59 bool isMin() const { return isZero(); }
60
61 constexpr static bool isMinusOne() { return false; }
62 constexpr static bool isSigned() { return false; }
63 constexpr static bool isNegative() { return false; }
64 constexpr static bool isPositive() { return !isNegative(); }
65 constexpr static bool isNumber() { return true; }
66
67 ComparisonCategoryResult compare(const Boolean &RHS) const {
68 return Compare(X: V, Y: RHS.V);
69 }
70
71 unsigned countLeadingZeros() const { return V ? 0 : 1; }
72
73 Boolean truncate(unsigned TruncBits) const { return *this; }
74
75 static Boolean bitcastFromMemory(const std::byte *Buff, unsigned BitWidth) {
76 // Just load the first byte.
77 bool Val = static_cast<bool>(*Buff);
78 return Boolean(Val);
79 }
80
81 void bitcastToMemory(std::byte *Buff) const {
82 std::memcpy(dest: Buff, src: &V, n: sizeof(V));
83 }
84
85 void print(llvm::raw_ostream &OS) const { OS << (V ? "true" : "false"); }
86 std::string toDiagnosticString(const ASTContext &Ctx) const {
87 std::string NameStr;
88 llvm::raw_string_ostream OS(NameStr);
89 print(OS);
90 return NameStr;
91 }
92
93 static Boolean min(unsigned NumBits) { return Boolean(false); }
94 static Boolean max(unsigned NumBits) { return Boolean(true); }
95
96 template <typename T> static Boolean from(T Value) {
97 if constexpr (std::is_integral<T>::value)
98 return Boolean(Value != 0);
99 return Boolean(static_cast<decltype(Boolean::V)>(Value) != 0);
100 }
101
102 template <unsigned SrcBits, bool SrcSign>
103 static std::enable_if_t<SrcBits != 0, Boolean>
104 from(Integral<SrcBits, SrcSign> Value) {
105 return Boolean(!Value.isZero());
106 }
107
108 static Boolean zero() { return from(Value: false); }
109
110 template <typename T> static Boolean from(T Value, unsigned NumBits) {
111 return Boolean(Value);
112 }
113
114 static bool inRange(int64_t Value, unsigned NumBits) {
115 return Value == 0 || Value == 1;
116 }
117
118 static bool increment(Boolean A, Boolean *R) {
119 *R = Boolean(true);
120 return false;
121 }
122
123 static bool decrement(Boolean A, Boolean *R) {
124 llvm_unreachable("Cannot decrement booleans");
125 }
126
127 static bool add(Boolean A, Boolean B, unsigned OpBits, Boolean *R) {
128 *R = Boolean(A.V || B.V);
129 return false;
130 }
131
132 static bool sub(Boolean A, Boolean B, unsigned OpBits, Boolean *R) {
133 *R = Boolean(A.V ^ B.V);
134 return false;
135 }
136
137 static bool mul(Boolean A, Boolean B, unsigned OpBits, Boolean *R) {
138 *R = Boolean(A.V && B.V);
139 return false;
140 }
141
142 static bool inv(Boolean A, Boolean *R) {
143 *R = Boolean(!A.V);
144 return false;
145 }
146
147 static bool neg(Boolean A, Boolean *R) {
148 *R = Boolean(A.V);
149 return false;
150 }
151};
152
153inline llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const Boolean &B) {
154 B.print(OS);
155 return OS;
156}
157
158} // namespace interp
159} // namespace clang
160
161#endif
162