13#ifndef LLVM_CLANG_AST_INTERP_INTERP_H
14#define LLVM_CLANG_AST_INTERP_INTERP_H
35#include "llvm/ADT/APFloat.h"
36#include "llvm/ADT/APSInt.h"
37#include "llvm/ADT/ScopeExit.h"
38#include "llvm/Support/Compiler.h"
45#if !defined(__aarch64__) && !defined(__i386__) && \
46 !__has_feature(address_sanitizer) && \
47 __has_cpp_attribute(clang::preserve_none)
48#define PRESERVE_NONE [[clang::preserve_none]]
56using APSInt = llvm::APSInt;
96 bool WillBeActivated =
false);
122 uint32_t VarArgSize);
124 uint32_t VarArgSize);
126 uint32_t VarArgSize);
134 bool TargetIsUCharOrByte);
150 bool IsReferenceCast);
167 const APSInt *
Value =
nullptr,
171template <ShiftDir Dir,
typename LT,
typename RT>
174 if (RHS.isNegative()) {
189 if (LHS.isSigned() && !S.
getLangOpts().CPlusPlus20) {
192 if (LHS.isNegative()) {
197 }
else if (LHS.toUnsigned().countLeadingZeros() <
198 static_cast<unsigned>(RHS)) {
216 if (!LHS.isNumber() || !RHS.isNumber())
222 if constexpr (std::is_same_v<T, Floating>) {
223 S.
CCEDiag(Op, diag::note_expr_divide_by_zero)
224 << Op->getRHS()->getSourceRange();
228 S.
FFDiag(Op, diag::note_expr_divide_by_zero)
229 << Op->getRHS()->getSourceRange();
233 if constexpr (!std::is_same_v<T, FixedPoint>) {
234 if (LHS.isSigned() && LHS.isMin() && RHS.isNegative() && RHS.isMinusOne()) {
235 APSInt LHSInt = LHS.toAPSInt();
237 (-LHSInt.extend(LHSInt.getBitWidth() + 1)).toString(Trunc, 10);
240 S.
CCEDiag(Loc, diag::note_constexpr_overflow) << Trunc << E->
getType();
261 APFloat::opStatus Status,
FPOptions FPO);
266bool CheckFloatStatus(InterpState &S, CodePtr OpPC, APFloat::opStatus Status,
288template <PrimType Name, class T = typename PrimConv<Name>::T>
336 template <typename U>
class OpAP>
341 assert(LHS.isNumber() && RHS.isNumber());
357 if constexpr (std::is_same_v<T, FixedPoint>)
373 .toString(Trunc, 10,
Result.isSigned(),
false,
387template <
typename T,
template <
typename U>
class Op>
389 assert(!LHS.isNumber() || !RHS.isNumber());
393 typename T::ReprT Offset;
395 if (LHS.isNumber()) {
399 Number =
static_cast<typename T::ReprT
>(LHS);
401 Offset = RHS.getOffset();
402 Kind = RHS.getKind();
404 assert(RHS.isNumber());
408 Number =
static_cast<typename T::ReprT
>(RHS);
410 Offset = LHS.getOffset();
411 Kind = LHS.getKind();
418template <PrimType Name, class T = typename PrimConv<Name>::T>
422 const unsigned Bits = RHS.bitWidth() + 1;
425 if (LHS.isNumber() != RHS.isNumber())
427 else if (LHS.isNumber() && RHS.isNumber())
447template <PrimType Name, class T = typename PrimConv<Name>::T>
451 const unsigned Bits = RHS.bitWidth() + 1;
460 ?
reinterpret_cast<const Expr *
>(LHS.getPtr())
463 ?
reinterpret_cast<const Expr *
>(RHS.getPtr())
465 if (!isa_and_nonnull<AddrLabelExpr>(A) ||
466 !isa_and_nonnull<AddrLabelExpr>(B))
471 if (LHSAddrExpr->getLabel()->getDeclContext() !=
472 RHSAddrExpr->getLabel()->getDeclContext())
475 S.
Stk.
push<
T>(LHSAddrExpr, RHSAddrExpr);
479 if (!LHS.isNumber() && RHS.isNumber())
481 else if (LHS.isNumber() && RHS.isNumber())
501template <PrimType Name, class T = typename PrimConv<Name>::T>
505 const unsigned Bits = RHS.bitWidth() * 2;
508 if (!LHS.isNumber() || !RHS.isNumber())
528template <PrimType Name, class T = typename PrimConv<Name>::T>
534 if constexpr (std::is_same_v<T, Floating>) {
540 APFloat ResR(A.getSemantics());
541 APFloat ResI(A.getSemantics());
552 Result.initializeAllElements();
555 const T &LHSR = LHS.elem<
T>(0);
556 const T &LHSI = LHS.elem<
T>(1);
557 const T &RHSR = RHS.
elem<
T>(0);
558 const T &RHSI = RHS.
elem<
T>(1);
559 unsigned Bits = LHSR.bitWidth();
562 if (!LHSR.isNumber() || !LHSI.isNumber() || !RHSR.isNumber() ||
570 if (T::mul(LHSR, RHSR,
Bits, &A))
576 if (T::mul(LHSI, RHSI,
Bits, &B))
585 if (T::mul(LHSR, RHSI,
Bits, &A))
587 if (T::mul(LHSI, RHSR,
Bits, &B))
595 Result.initializeAllElements();
601template <PrimType Name, class T = typename PrimConv<Name>::T>
607 if constexpr (std::is_same_v<T, Floating>) {
613 APFloat ResR(A.getSemantics());
614 APFloat ResI(A.getSemantics());
626 Result.initializeAllElements();
629 const T &LHSR = LHS.elem<
T>(0);
630 const T &LHSI = LHS.elem<
T>(1);
631 const T &RHSR = RHS.
elem<
T>(0);
632 const T &RHSI = RHS.
elem<
T>(1);
633 unsigned Bits = LHSR.bitWidth();
635 if (RHSR.isZero() && RHSI.isZero()) {
637 S.
FFDiag(E, diag::note_expr_divide_by_zero);
648 if (T::mul(RHSR, RHSR,
Bits, &A) || T::mul(RHSI, RHSI,
Bits, &B)) {
655 if (T::add(A, B,
Bits, &Den))
660 S.
FFDiag(E, diag::note_expr_divide_by_zero);
671 if (T::mul(LHSR, RHSR,
Bits, &A) || T::mul(LHSI, RHSI,
Bits, &B))
673 if (T::add(A, B,
Bits, &ResultR))
675 if (T::div(ResultR, Den,
Bits, &ResultR))
679 if (T::mul(LHSI, RHSR,
Bits, &A) || T::mul(LHSR, RHSI,
Bits, &B))
681 if (T::sub(A, B,
Bits, &ResultI))
683 if (T::div(ResultI, Den,
Bits, &ResultI))
685 Result.initializeAllElements();
694template <PrimType Name, class T = typename PrimConv<Name>::T>
698 unsigned Bits = RHS.bitWidth();
701 if (!LHS.isNumber() || !RHS.isNumber())
719template <PrimType Name, class T = typename PrimConv<Name>::T>
723 unsigned Bits = RHS.bitWidth();
726 if (!LHS.isNumber() || !RHS.isNumber())
744template <PrimType Name, class T = typename PrimConv<Name>::T>
748 unsigned Bits = RHS.bitWidth();
751 if (!LHS.isNumber() || !RHS.isNumber())
769template <PrimType Name, class T = typename PrimConv<Name>::T>
773 const unsigned Bits = RHS.bitWidth() * 2;
792template <PrimType Name, class T = typename PrimConv<Name>::T>
796 const unsigned Bits = RHS.bitWidth() * 2;
810 if constexpr (std::is_same_v<T, FixedPoint>) {
849template <PrimType Name, class T = typename PrimConv<Name>::T>
853 if constexpr (std::is_same_v<T, Floating>) {
872 "don't expect other types to fail at constexpr negation");
883 NegatedValue.trunc(
Result.bitWidth())
884 .toString(Trunc, 10,
Result.isSigned(),
false,
904template <
typename T, IncDecOp Op, PushVal DoPush>
914 if constexpr (std::is_same_v<T, Boolean>) {
923 if (!
Value.isNumber())
935 if (!T::increment(
Value, &
Result) || !CanOverflow) {
943 if (!T::decrement(
Value, &
Result) || !CanOverflow) {
972 APResult.trunc(
Result.bitWidth())
973 .toString(Trunc, 10,
Result.isSigned(),
false,
986template <PrimType Name, class T = typename PrimConv<Name>::T>
998template <PrimType Name, class T = typename PrimConv<Name>::T>
1000 unsigned BitWidth) {
1014template <PrimType Name, class T = typename PrimConv<Name>::T>
1025template <PrimType Name, class T = typename PrimConv<Name>::T>
1027 uint32_t BitWidth) {
1038template <PrimType Name, class T = typename PrimConv<Name>::T>
1049template <PrimType Name, class T = typename PrimConv<Name>::T>
1051 uint32_t BitWidth) {
1066template <PrimType Name, class T = typename PrimConv<Name>::T>
1077template <PrimType Name, class T = typename PrimConv<Name>::T>
1079 uint32_t BitWidth) {
1093template <PrimType Name, class T = typename PrimConv<Name>::T>
1104template <PrimType Name, class T = typename PrimConv<Name>::T>
1106 uint32_t BitWidth) {
1117template <PrimType Name, class T = typename PrimConv<Name>::T>
1127template <PrimType Name, class T = typename PrimConv<Name>::T>
1129 uint32_t BitWidth) {
1139template <IncDecOp Op, PushVal DoPush>
1149 llvm::APFloat::opStatus Status;
1202template <PrimType Name, class T = typename PrimConv<Name>::T>
1210 if (!T::comp(Val, &
Result)) {
1223template <
typename T>
1225 assert((!std::is_same_v<T, MemberPointer>) &&
1226 "Non-equality comparisons on member pointer types should already be "
1227 "rejected in Sema.");
1233 if (!LHS.isNumber() || !RHS.isNumber())
1237 S.
Stk.
push<BoolT>(BoolT::from(
Fn(LHS.compare(RHS))));
1241template <
typename T>
1256 S.
FFDiag(Loc, diag::note_constexpr_pointer_comparison_unspecified)
1269 S.
FFDiag(Loc, diag::note_constexpr_pointer_comparison_unspecified)
1277 if (std::optional<std::pair<PtrView, PtrView>> Split =
1279 const FieldDecl *LF = Split->first.getField();
1280 const FieldDecl *RF = Split->second.getField();
1283 diag::note_constexpr_pointer_comparison_base_classes);
1286 diag::note_constexpr_pointer_comparison_base_field)
1287 << Split->first.getRecord()->getDecl() << RF->
getParent() << RF;
1290 diag::note_constexpr_pointer_comparison_base_field)
1291 << Split->second.getRecord()->getDecl() << LF->
getParent() << LF;
1295 diag::note_constexpr_pointer_comparison_differing_access)
1310 return (
Builtin == Builtin::BI__builtin___CFStringMakeConstantString ||
1311 Builtin == Builtin::BI__builtin___NSStringMakeConstantString ||
1312 Builtin == Builtin::BI__builtin_ptrauth_sign_constant ||
1313 Builtin == Builtin::BI__builtin_function_start);
1325 if (LHS.isZero() && RHS.
isZero()) {
1331 for (
const auto &P : {LHS, RHS}) {
1336 S.
FFDiag(Loc, diag::note_constexpr_pointer_weak_comparison)
1343 if (RHS.
isZero() || LHS.isZero()) {
1348 assert(!LHS.isZero());
1367 S.
FFDiag(Loc, diag::note_constexpr_literal_comparison)
1375 std::optional<size_t> A = LHS.computeOffsetForComparison(S.
getASTContext());
1388 S.
FFDiag(Loc, diag::note_constexpr_pointer_comparison_past_end)
1392 if (RHS.
isOnePastEnd() && !LHS.isOnePastEnd() && LHS.isBlockPointer() &&
1393 LHS.getOffset() == 0) {
1395 S.
FFDiag(Loc, diag::note_constexpr_pointer_comparison_past_end)
1401 for (
const auto &P : {LHS, RHS}) {
1404 if (P.pointsToLiteral()) {
1405 const Expr *E = P.getRootExpr();
1408 S.
FFDiag(Loc, diag::note_constexpr_literal_comparison);
1411 if (
const auto *CE = dyn_cast<CallExpr>(E);
1414 S.
FFDiag(Loc, diag::note_constexpr_opaque_call_comparison)
1418 }
else if (P.isIntegralPointer()) {
1420 S.
FFDiag(Loc, diag::note_constexpr_pointer_constant_comparison)
1429 S.
FFDiag(Loc, diag::note_constexpr_pointer_comparison_zero_sized)
1438 diag::note_constexpr_pointer_comparison_unspecified)
1456 for (
const auto &MP : {LHS, RHS}) {
1459 S.
FFDiag(Loc, diag::note_constexpr_mem_pointer_weak_comparison)
1460 << MP.getMemberFunction();
1468 if (LHS.
isZero() && RHS.isZero()) {
1472 if (LHS.
isZero() || RHS.isZero()) {
1478 for (
const auto &MP : {LHS, RHS}) {
1482 S.
CCEDiag(Loc, diag::note_constexpr_compare_virtual_mem_ptr) << MD;
1490template <PrimType Name, class T = typename PrimConv<Name>::T>
1497template <PrimType Name, class T = typename PrimConv<Name>::T>
1504 if constexpr (std::is_same_v<T, Pointer>) {
1507 S.
FFDiag(Loc, diag::note_constexpr_pointer_comparison_unspecified)
1515 const auto *CmpValueInfo =
1517 assert(CmpValueInfo);
1518 assert(CmpValueInfo->hasValidIntValue());
1522template <PrimType Name, class T = typename PrimConv<Name>::T>
1529template <PrimType Name, class T = typename PrimConv<Name>::T>
1536template <PrimType Name, class T = typename PrimConv<Name>::T>
1544template <PrimType Name, class T = typename PrimConv<Name>::T>
1551template <PrimType Name, class T = typename PrimConv<Name>::T>
1563template <PrimType Name, class T = typename PrimConv<Name>::T>
1569template <PrimType Name, class T = typename PrimConv<Name>::T>
1580 const auto &Top = S.
Stk.
pop<TopT>();
1581 const auto &Bottom = S.
Stk.
pop<BottomT>();
1593template <PrimType Name, class T = typename PrimConv<Name>::T>
1597 Result.copy(Arg.toAPSInt());
1602 if constexpr (std::is_same_v<T, uint16_t>) {
1604 }
else if constexpr (std::is_same_v<T, int16_t>) {
1606 }
else if constexpr (std::is_same_v<T, uint32_t>) {
1608 }
else if constexpr (std::is_same_v<T, int32_t>) {
1610 }
else if constexpr (std::is_same_v<T, uint64_t>) {
1612 }
else if constexpr (std::is_same_v<T, int64_t>) {
1633template <PrimType Name, class T = typename PrimConv<Name>::T>
1643bool PseudoDtor(InterpState &S, CodePtr OpPC);
1651template <PrimType Name, class T = typename PrimConv<Name>::T>
1657template <PrimType Name, class T = typename PrimConv<Name>::T>
1666template <PrimType Name, class T = typename PrimConv<Name>::T>
1674template <PrimType Name, class T = typename PrimConv<Name>::T>
1697template <PrimType Name, class T = typename PrimConv<Name>::T>
1718template <PrimType Name, class T = typename PrimConv<Name>::T>
1730 Field.deref<
T>() =
Value;
1734template <PrimType Name, class T = typename PrimConv<Name>::T>
1748template <PrimType Name, class T = typename PrimConv<Name>::T>
1759 Field.deref<
T>() =
Value;
1763template <PrimType Name, class T = typename PrimConv<Name>::T>
1775template <PrimType Name, class T = typename PrimConv<Name>::T>
1786template <PrimType Name, class T = typename PrimConv<Name>::T>
1792template <PrimType Name, class T = typename PrimConv<Name>::T>
1798 if constexpr (std::is_same_v<T, Floating>) {
1800 if (!Val.singleWord()) {
1801 uint64_t *NewMemory =
new (S.
P) uint64_t[Val.numWords()];
1802 Val.take(NewMemory);
1805 }
else if constexpr (std::is_same_v<T, MemberPointer>) {
1809 for (
unsigned I = 0; I != PathLength; ++I) {
1810 NewPath[I] = Val.getPathEntry(I);
1812 Val.takePath(NewPath);
1814 auto &Val = P.
deref<
T>();
1815 if (!Val.singleWord()) {
1816 uint64_t *NewMemory =
new (S.
P) uint64_t[Val.numWords()];
1817 Val.take(NewMemory);
1828template <PrimType Name, class T = typename PrimConv<Name>::T>
1858template <PrimType Name, class T = typename PrimConv<Name>::T>
1865 if (!
This.isDereferencable())
1869 assert(Field.canBeInitialized());
1875template <PrimType Name, class T = typename PrimConv<Name>::T>
1882 if (!
This.isDereferencable())
1886 assert(Field.canBeInitialized());
1893template <PrimType Name, class T = typename PrimConv<Name>::T>
1895 uint32_t FieldBitWidth) {
1901 if (!
This.isDereferencable())
1905 assert(Field.canBeInitialized());
1909 if (!
Value.isNumber())
1913 Field.deref<
T>() =
Value.truncate(FieldBitWidth);
1918template <PrimType Name, class T = typename PrimConv<Name>::T>
1920 uint32_t FieldOffset, uint32_t FieldBitWidth) {
1926 if (!
This.isDereferencable())
1930 assert(Field.canBeInitialized());
1934 if (!
Value.isNumber())
1938 Field.deref<
T>() =
Value.truncate(FieldBitWidth);
1947template <PrimType Name, class T = typename PrimConv<Name>::T>
1951 if (!Ptr.isDereferencable())
1965template <PrimType Name, class T = typename PrimConv<Name>::T>
1969 if (!Ptr.isDereferencable())
1983template <PrimType Name, class T = typename PrimConv<Name>::T>
1985 uint32_t FieldBitWidth) {
1988 if (!Ptr.isDereferencable())
1992 if (!
Value.isNumber())
2002 unsigned BitWidth = std::min(FieldBitWidth,
Value.bitWidth());
2005 if constexpr (T::isSigned())
2007 Value.toAPSInt().trunc(BitWidth).sextOrTrunc(
Value.bitWidth()));
2010 Value.toAPSInt().trunc(BitWidth).zextOrTrunc(
Value.bitWidth()));
2014 Field.deref<
T>() =
Value.truncate(FieldBitWidth);
2020template <PrimType Name, class T = typename PrimConv<Name>::T>
2022 uint32_t FieldBitWidth) {
2025 if (!Ptr.isDereferencable())
2029 if (!
Value.isNumber())
2039 unsigned BitWidth = std::min(FieldBitWidth,
Value.bitWidth());
2042 if constexpr (T::isSigned())
2044 Value.toAPSInt().trunc(BitWidth).sextOrTrunc(
Value.bitWidth()));
2047 Value.toAPSInt().trunc(BitWidth).zextOrTrunc(
Value.bitWidth()));
2051 Field.deref<
T>() =
Value.truncate(FieldBitWidth);
2119bool GetPtrBasePop(InterpState &S, CodePtr OpPC, uint32_t
Off,
bool NullOK);
2122 const Type *TargetType);
2187 diag::note_constexpr_dereferencing_null);
2200 const Record::Base *VirtBase =
Base.getRecord()->getVirtualBase(
Decl);
2239template <PrimType Name, class T = typename PrimConv<Name>::T>
2252template <PrimType Name, class T = typename PrimConv<Name>::T>
2265template <PrimType Name, class T = typename PrimConv<Name>::T>
2271 if (!Ptr.canDeref(Name))
2273 if (Ptr.canBeInitialized())
2279template <PrimType Name, class T = typename PrimConv<Name>::T>
2285 if (!Ptr.canDeref(Name))
2287 if (Ptr.canBeInitialized())
2312template <PrimType Name, class T = typename PrimConv<Name>::T>
2319 if (Ptr.canBeInitialized()) {
2327template <PrimType Name, class T = typename PrimConv<Name>::T>
2334 if (Ptr.canBeInitialized()) {
2342template <PrimType Name, class T = typename PrimConv<Name>::T>
2349 if (Ptr.canBeInitialized())
2351 if (
const auto *FD = Ptr.getField())
2352 Ptr.deref<
T>() =
Value.truncate(FD->getBitWidthValue());
2358template <PrimType Name, class T = typename PrimConv<Name>::T>
2364 if (Ptr.canBeInitialized())
2366 if (
const auto *FD = Ptr.getField())
2367 Ptr.deref<
T>() =
Value.truncate(FD->getBitWidthValue());
2373template <PrimType Name, class T = typename PrimConv<Name>::T>
2380 if (Ptr.canBeInitialized()) {
2384 if (
const auto *FD = Ptr.getField())
2385 Ptr.
deref<
T>() =
Value.truncate(FD->getBitWidthValue());
2391template <PrimType Name, class T = typename PrimConv<Name>::T>
2398 if (Ptr.canBeInitialized()) {
2402 if (
const auto *FD = Ptr.getField())
2403 Ptr.
deref<
T>() =
Value.truncate(FD->getBitWidthValue());
2409template <PrimType Name, class T = typename PrimConv<Name>::T>
2416 new (&Ptr.deref<
T>())
T(
Value);
2420template <PrimType Name, class T = typename PrimConv<Name>::T>
2427 new (&Ptr.deref<
T>())
T(
Value);
2434template <PrimType Name, class T = typename PrimConv<Name>::T>
2439 if (Ptr.isConstexprUnknown())
2448 if (Idx == 0 && !Desc->
isArray()) {
2450 new (&Ptr.deref<
T>())
T(
Value);
2460 S.
FFDiag(Loc, diag::note_constexpr_access_past_end)
2465 Ptr.initializeElement(Idx);
2466 new (&Ptr.elem<
T>(Idx))
T(
Value);
2471template <PrimType Name, class T = typename PrimConv<Name>::T>
2476 if (Ptr.isConstexprUnknown())
2485 if (Idx == 0 && !Desc->
isArray()) {
2487 new (&Ptr.deref<
T>())
T(
Value);
2497 S.
FFDiag(Loc, diag::note_constexpr_access_past_end)
2502 Ptr.initializeElement(Idx);
2503 new (&Ptr.elem<
T>(Idx))
T(
Value);
2516 return DoMemcpy(S, OpPC, Src, Dest);
2530 if (std::optional<Pointer> Ptr = MP.toPointer(S.
Ctx)) {
2541template <
class T, ArithOp Op>
2543 const T &Offset,
const Pointer &Ptr,
2544 bool IsPointerArith =
false) {
2546 if (Offset.isZero())
2553 return std::nullopt;
2558 return std::nullopt;
2568 uint64_t O =
static_cast<uint64_t
>(Offset) * ElemSize;
2574 uint64_t O =
static_cast<uint64_t
>(Offset);
2586 return std::nullopt;
2591 uint64_t MaxIndex =
static_cast<uint64_t
>(Ptr.
getNumElems());
2600 auto DiagInvalidOffset = [&]() ->
void {
2601 const unsigned Bits = Offset.bitWidth();
2602 APSInt APOffset(Offset.toAPSInt().extend(
Bits + 2),
false);
2606 (Op ==
ArithOp::Add) ? (APIndex + APOffset) : (APIndex - APOffset);
2608 << NewIndex <<
static_cast<int>(!Ptr.
inArray()) << MaxIndex;
2613 uint64_t IOffset =
static_cast<uint64_t
>(Offset);
2614 uint64_t MaxOffset = MaxIndex - Index;
2618 if (Offset.isNegative() && (Offset.isMin() || -IOffset > Index))
2619 DiagInvalidOffset();
2622 if (Offset.isPositive() && IOffset > MaxOffset)
2623 DiagInvalidOffset();
2626 if (Offset.isPositive() && Index < IOffset)
2627 DiagInvalidOffset();
2630 if (Offset.isNegative() && (Offset.isMin() || -IOffset > MaxOffset))
2631 DiagInvalidOffset();
2636 return std::nullopt;
2639 int64_t WideIndex =
static_cast<int64_t
>(Index);
2640 int64_t WideOffset =
static_cast<int64_t
>(Offset);
2643 Result = WideIndex + WideOffset;
2645 Result = WideIndex - WideOffset;
2659template <PrimType Name, class T = typename PrimConv<Name>::T>
2665 S, OpPC, Offset, Ptr,
true)) {
2672template <PrimType Name, class T = typename PrimConv<Name>::T>
2678 S, OpPC, Offset, Ptr,
true)) {
2685template <ArithOp Op>
2701 OneT One = OneT::from(1);
2702 if (std::optional<Pointer>
Result =
2732template <PrimType Name, class T = typename PrimConv<Name>::T>
2741 if (!LHSAddrExpr || !RHSAddrExpr) {
2743 diag::note_constexpr_pointer_arith_unspecified)
2753 S.
Stk.
push<
T>(LHSAddrExpr, RHSAddrExpr);
2762 diag::note_constexpr_pointer_arith_unspecified)
2768 if (ElemSize == 0) {
2773 diag::note_constexpr_pointer_subtraction_zero_size)
2790 diag::note_constexpr_pointer_subtraction_not_same_array);
2799 assert(((int64_t)*VL - (int64_t)*VR) % ElemSize == 0);
2801 (
static_cast<int64_t
>(*VL) -
static_cast<int64_t
>(*VR)) / ElemSize;
2802 if (
static_cast<int64_t
>(T::from(R64)) != R64)
2848 if (!(U::bitWidth() >= 32 && U::bitWidth() <= In.bitWidth()))
2860 llvm::RoundingMode RM) {
2870 FixedPointSemantics::getFromOpaqueInt(FPS);
2885template <PrimType Name, class T = typename PrimConv<Name>::T>
2890 if (!Source.isNumber())
2897 APInt SourceInt = Source.toAPSInt().extOrTrunc(BitWidth);
2904template <PrimType Name, class T = typename PrimConv<Name>::T>
2909 if (!Source.isNumber())
2916 APInt SourceInt = Source.toAPSInt().extOrTrunc(BitWidth);
2926template <PrimType Name, class T = typename PrimConv<Name>::T>
2929 APSInt Val = Source.toAPSInt();
2930 if (Val.isNegative() || Val.getActiveBits() > 63)
2937template <PrimType Name, class T = typename PrimConv<Name>::T>
2939 const llvm::fltSemantics *Sem, uint32_t FPOI) {
2943 if (!From.isNumber())
2947 APSInt FromAP = From.toAPSInt();
2958template <PrimType Name, class T = typename PrimConv<Name>::T>
2962 if constexpr (std::is_same_v<T, Boolean>) {
2971 if ((Status & APFloat::opStatus::opInvalidOp)) {
2990 const Pointer &Ptr,
unsigned BitWidth);
2995template <PrimType Name, class T = typename PrimConv<Name>::T>
3001 if constexpr (std::is_same_v<T, Boolean>) {
3016 PtrVal = Ptr.
block();
3032template <PrimType Name, class T = typename PrimConv<Name>::T>
3066 const llvm::fltSemantics *Sem) {
3069 Result.copy(Fixed.toFloat(Sem));
3074template <PrimType Name, class T = typename PrimConv<Name>::T>
3079 APSInt Int = Fixed.toInt(T::bitWidth(), T::isSigned(), &Overflow);
3090 S.
CCEDiag(E, diag::note_constexpr_invalid_cast)
3091 << diag::ConstexprInvalidCastKind::ThisConversionOrReinterpret
3100 bool HasValidResult = !Ptr.isZero();
3102 if (HasValidResult) {
3109 E->getType()->getPointeeType()))
3112 S.
CCEDiag(E, diag::note_constexpr_invalid_void_star_cast)
3113 << E->getSubExpr()->getType() << S.
getLangOpts().CPlusPlus26
3114 << Ptr.getType().getCanonicalType() << E->getType()->getPointeeType();
3117 S.
CCEDiag(E, diag::note_constexpr_invalid_cast)
3118 << diag::ConstexprInvalidCastKind::CastFrom <<
"'void *'"
3123 S.
CCEDiag(E, diag::note_constexpr_invalid_cast)
3124 << diag::ConstexprInvalidCastKind::ThisConversionOrReinterpret
3135template <PrimType Name, class T = typename PrimConv<Name>::T>
3143 if (!
Result.singleWord())
3144 std::memset(
Result.Memory, 0,
Result.numWords() *
sizeof(uint64_t));
3151 if (!
Result.singleWord())
3152 std::memset(
Result.Memory, 0,
Result.numWords() *
sizeof(uint64_t));
3157template <PrimType Name, class T = typename PrimConv<Name>::T>
3165template <PrimType Name, class T = typename PrimConv<Name>::T>
3167 const auto &P = S.
Stk.
pop<
T>();
3187 if (!
This.isDummy()) {
3189 if (!
This.isTypeidPointer()) {
3190 [[maybe_unused]]
const Record *R =
This.getRecord();
3192 R =
This.narrow().getRecord();
3195 assert(R->getDecl() ==
3217template <
class LT,
class RT, ShiftDir Dir>
3221 const unsigned Bits = LHS.bitWidth();
3225 RT::bitAnd(RHS, RT::from(LHS.bitWidth() - 1, RHS.bitWidth()),
3226 RHS.bitWidth(), &RHS);
3228 if (RHS.isNegative()) {
3232 S.
CCEDiag(Loc, diag::note_constexpr_negative_shift) << RHS.toAPSInt();
3236 RHS = RHS.isMin() ? RT(APSInt::getMaxValue(RHS.bitWidth(),
false)) : -RHS;
3240 S, OpPC, LHS, RHS,
Result);
3252 typename LT::AsUnsigned R;
3253 unsigned MaxShiftAmount = LHS.bitWidth() - 1;
3255 if (
Compare(RHS, RT::from(MaxShiftAmount, RHS.bitWidth())) ==
3257 if (LHS.isNegative())
3258 R = LT::AsUnsigned::zero(LHS.bitWidth());
3260 RHS = RT::from(LHS.countLeadingZeros(), RHS.bitWidth());
3261 LT::AsUnsigned::shiftLeft(LT::AsUnsigned::from(LHS),
3262 LT::AsUnsigned::from(RHS,
Bits),
Bits, &R);
3264 }
else if (LHS.isNegative()) {
3266 R = LT::AsUnsigned::zero(LHS.bitWidth());
3269 typename LT::AsUnsigned LHSU = LT::AsUnsigned::from(-LHS);
3270 LT::AsUnsigned::shiftLeft(LHSU, LT::AsUnsigned::from(RHS,
Bits),
Bits,
3276 LT::AsUnsigned::shiftLeft(LT::AsUnsigned::from(LHS),
3277 LT::AsUnsigned::from(RHS,
Bits),
Bits, &R);
3284 if (
Compare(RHS, RT::from(MaxShiftAmount, RHS.bitWidth())) ==
3286 R = LT::AsUnsigned::from(0);
3290 LT::shiftRight(LHS, LT::from(RHS,
Bits),
Bits, &A);
3291 R = LT::AsUnsigned::from(A);
3299template <
class LT,
class RT, ShiftDir Dir>
3302 const unsigned Bits = LHS.getBitWidth();
3307 APSInt(llvm::APInt(RHS.getBitWidth(),
static_cast<uint64_t
>(
Bits - 1)),
3310 if (RHS.isNegative()) {
3314 S.
CCEDiag(Loc, diag::note_constexpr_negative_shift) << RHS;
3319 S, OpPC, LHS, -(RHS.extend(RHS.getBitWidth() + 1)),
Result);
3343template <PrimType NameL, PrimType NameR>
3347 auto RHS = S.
Stk.
pop<RT>();
3355 RHS.toAPSInt(), &
Result);
3362template <PrimType NameL, PrimType NameR>
3366 auto RHS = S.
Stk.
pop<RT>();
3374 RHS.toAPSInt(), &
Result);
3384 llvm::FixedPointSemantics LHSSema = LHS.
getSemantics();
3386 unsigned ShiftBitWidth =
3387 LHSSema.getWidth() - (
unsigned)LHSSema.hasUnsignedPadding() - 1;
3392 if (RHS.isNegative()) {
3395 }
else if (
static_cast<unsigned>(RHS.toAPSInt().getLimitedValue(
3396 ShiftBitWidth)) != RHS.toAPSInt()) {
3398 S.
CCEDiag(E, diag::note_constexpr_large_shift)
3399 << RHS.toAPSInt() << E->
getType() << ShiftBitWidth;
3422 S.
FFDiag(EndLoc, diag::note_constexpr_no_return);
3453template <PrimType Name, class T = typename PrimConv<Name>::T>
3458 if (Offset.isZero()) {
3459 if (
const Descriptor *Desc = Ptr.getFieldDesc();
3460 Desc && Desc->
isArray() && Ptr.getIndex() == 0) {
3468 assert(!Offset.isZero());
3470 if (std::optional<Pointer>
Result =
3479template <PrimType Name, class T = typename PrimConv<Name>::T>
3484 if (Offset.isZero()) {
3485 if (
const Descriptor *Desc = Ptr.getFieldDesc();
3486 Desc && Desc->
isArray() && Ptr.getIndex() == 0) {
3494 assert(!Offset.isZero());
3496 if (std::optional<Pointer>
Result =
3504template <PrimType Name, class T = typename PrimConv<Name>::T>
3516template <PrimType Name, class T = typename PrimConv<Name>::T>
3528template <PrimType Name, class T = typename PrimConv<Name>::T>
3530 uint32_t DestIndex, uint32_t Size) {
3534 if (SrcPtr.isDummy() || DestPtr.
isDummy())
3540 const Descriptor *SrcDesc = SrcPtr.getFieldDesc();
3546 for (uint32_t I = 0; I != Size; ++I) {
3552 DestPtr.
elem<
T>(DestIndex + I) = SrcPtr.elem<
T>(SrcIndex + I);
3579 S.
FFDiag(E, diag::note_constexpr_unsupported_unsized_array);
3590template <PrimType Name, class T = typename PrimConv<Name>::T>
3595 << diag::ConstexprInvalidCastKind::ThisConversionOrReinterpret
3600 if (IntVal.getOffset() != 0)
3606 if (IntVal.getOffset() != 0)
3609 const Block *B = (
const Block *)IntVal.getPtr();
3635 S.
FFDiag(Loc, diag::note_constexpr_stmt_expr_unsupported)
3733 diag::note_constexpr_access_volatile_type)
3745 S.
CCEDiag(E, diag::note_constexpr_non_const_vectorelements) << ArgRange;
3753 diag::note_constexpr_pseudo_destructor);
3765 S.
CCEDiag(Loc, diag::note_constexpr_assumption_failed);
3769template <PrimType Name, class T = typename PrimConv<Name>::T>
3773 ArrayIndices.emplace_back(
3785template <PrimType Name, class T = typename PrimConv<Name>::T>
3792 S.
CCEDiag(Loc, diag::note_non_null_attribute_failed);
3798 const APSInt &
Value);
3800template <PrimType Name, class T = typename PrimConv<Name>::T>
3818 const FromT &OldPtr = S.
Stk.
pop<FromT>();
3820 if constexpr (std::is_same_v<FromT, FunctionPointer> &&
3821 std::is_same_v<ToT, Pointer>) {
3824 }
else if constexpr (std::is_same_v<FromT, Pointer> &&
3825 std::is_same_v<ToT, FunctionPointer>) {
3826 if (OldPtr.isFunctionPointer()) {
3828 OldPtr.getByteOffset());
3833 S.
Stk.
push<ToT>(ToT(OldPtr.getIntegerRepresentation(),
nullptr));
3886template <PrimType Name, class SizeT = typename PrimConv<Name>::T>
3901 if (NumElements.isNegative()) {
3911 if (!
CheckArraySize(S, OpPC,
static_cast<uint64_t
>(NumElements)))
3915 Block *B = Allocator.
allocate(Source,
T,
static_cast<size_t>(NumElements),
3918 if (NumElements.isZero())
3925template <PrimType Name, class SizeT = typename PrimConv<Name>::T>
3944 if (NumElements.isNegative()) {
3954 if (!
CheckArraySize(S, OpPC,
static_cast<uint64_t
>(NumElements)))
3958 Block *B = Allocator.
allocate(ElementDesc,
static_cast<size_t>(NumElements),
3961 if (NumElements.isZero())
3969bool Free(InterpState &S, CodePtr OpPC,
bool DeleteIsArrayForm,
3970 bool IsGlobalDelete);
3984 std::optional<uint64_t> ArraySize = std::nullopt);
3986template <PrimType Name, class T = typename PrimConv<Name>::T>
3988 const auto &Size = S.
Stk.
pop<
T>();
3993template <PrimType Name, class T = typename PrimConv<Name>::T>
3995 uint32_t ResultBitWidth,
const llvm::fltSemantics *Sem,
3996 const Type *TargetType) {
4002 if constexpr (std::is_same_v<T, Pointer>) {
4005 diag::note_constexpr_bit_cast_invalid_type)
4006 <<
true <<
false << 1 ;
4012 }
else if constexpr (std::is_same_v<T, MemberPointer>) {
4014 diag::note_constexpr_bit_cast_invalid_type)
4015 <<
true <<
false << 2 ;
4019 size_t BuffSize = ResultBitWidth / 8;
4021 bool HasIndeterminateBits =
false;
4023 Bits FullBitWidth(ResultBitWidth);
4024 Bits BitWidth = FullBitWidth;
4026 if constexpr (std::is_same_v<T, Floating>) {
4028 BitWidth =
Bits(llvm::APFloatBase::getSizeInBits(*Sem));
4031 if (!
DoBitCast(S, OpPC, FromPtr, Buff.data(), BitWidth, FullBitWidth,
4032 HasIndeterminateBits))
4035 if (!
CheckBitCast(S, OpPC, HasIndeterminateBits, TargetIsUCharOrByte))
4038 if constexpr (std::is_same_v<T, Floating>) {
4045 T::bitcastFromMemory(Buff.data(), ResultBitWidth, &
Result);
4047 }
else if constexpr (std::is_same_v<T, Boolean>) {
4051 auto Val =
static_cast<unsigned int>(Buff[0]);
4054 diag::note_constexpr_bit_cast_unrepresentable_value)
4058 S.
Stk.
push<
T>(T::bitcastFromMemory(Buff.data(), ResultBitWidth));
4061 S.
Stk.
push<
T>(T::bitcastFromMemory(Buff.data(), ResultBitWidth));
4072 if (D->isPrimitiveArray() && FromPtr.
isArrayRoot())
4087bool DiagTypeid(InterpState &S, CodePtr OpPC);
4104 if constexpr (std::is_pointer<T>::value) {
4105 uint32_t ID = OpPC.
read<uint32_t>();
4108 return OpPC.
read<
T>();
4118 OpPC +=
align(F.bytesToSerialize());
4127 assert(
Result.bitWidth() == BitWidth);
4139 assert(
Result.bitWidth() == BitWidth);
Defines the clang::ASTContext interface.
void HandleComplexComplexDiv(APFloat A, APFloat B, APFloat C, APFloat D, APFloat &ResR, APFloat &ResI)
void HandleComplexComplexMul(APFloat A, APFloat B, APFloat C, APFloat D, APFloat &ResR, APFloat &ResI)
Result
Implement __builtin_bit_cast and related operations.
QualType getConstantArrayType(QualType EltTy, const llvm::APInt &ArySize, const Expr *SizeExpr, ArraySizeModifier ASM, unsigned IndexTypeQuals) const
Return the unique reference to the type for a constant array of the specified element type.
QualType getBaseElementType(const ArrayType *VAT) const
Return the innermost element type of an array type.
CharUnits getTypeSizeInChars(QualType T) const
Return the size of the specified (complete) type T, in characters.
bool hasSimilarType(QualType T1, QualType T2) const
Determine if two types are similar, according to the C++ rules.
AddrLabelExpr - The GNU address of label extension, representing &&label.
LabelDecl * getLabel() const
Represents a static or instance method of a struct/union/class.
Represents a C++ struct/union/class.
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
unsigned getBuiltinCallee() const
getBuiltinCallee - If this is a call to a builtin, return the builtin ID of the callee.
QuantityType getQuantity() const
getQuantity - Get the raw integer representation of this quantity.
const ValueInfo * getValueInfo(ComparisonCategoryResult ValueKind) const
ComparisonCategoryResult makeWeakResult(ComparisonCategoryResult Res) const
Converts the specified result kind into the correct result kind for this category.
A reference to a declared variable, function, enum, etc.
Decl - This represents one declaration (or definition), e.g.
SourceLocation getEndLoc() const LLVM_READONLY
SourceLocation getLocation() const
DeclContext * getDeclContext()
AccessSpecifier getAccess() const
bool isFixed() const
Returns true if this is an Objective-C, C++11, or Microsoft-style enumeration with a fixed underlying...
This represents one expression.
SourceLocation getExprLoc() const LLVM_READONLY
getExprLoc - Return the preferred location for the arrow when diagnosing a problem with a generic exp...
static FPOptions getFromOpaqueInt(storage_type Value)
Represents a member of a struct/union/class.
const RecordDecl * getParent() const
Returns the parent of this field declaration, which is the struct in which this field is defined.
Represents a function declaration or definition.
Implicit declaration of a temporary that was materialized by a MaterializeTemporaryExpr and lifetime-...
OffsetOfExpr - [C99 7.17] - This represents an expression of the form offsetof(record-type,...
unsigned getNumExpressions() const
A (possibly-)qualified type.
bool isNull() const
Return true if this QualType doesn't point to a type yet.
QualType withVolatile() const
bool isWrapType() const
Returns true if it is a OverflowBehaviorType of Wrap kind.
Represents a struct/union/class.
Encodes a location in the source.
A trivial tuple used to represent a source range.
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
The base class of the type hierarchy.
bool isNullPtrType() const
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
Represents a variable declaration or definition.
bool isStaticLocal() const
Returns true if a variable with function scope is a static local variable.
ThreadStorageClassSpecifier getTSCSpec() const
bool isLocalVarDecl() const
Returns true for local variable declarations other than parameters.
bool isUsableInConstantExpressions(const ASTContext &C) const
Determine whether this variable's value can be used in a constant expression, according to the releva...
A memory block, either on the stack or in the heap.
bool isExtern() const
Checks if the block is extern.
const Descriptor * getDescriptor() const
Returns the block's descriptor.
Wrapper around boolean types.
static Boolean from(T Value)
Pointer into the code segment.
std::enable_if_t<!std::is_pointer< T >::value, T > read()
Reads data and advances the pointer.
Manages dynamic memory allocations done during bytecode interpretation.
Block * allocate(const Descriptor *D, unsigned EvalID, Form AllocForm)
Allocate ONE element of the given descriptor.
Wrapper around fixed point types.
llvm::FixedPointSemantics getSemantics() const
static bool shiftRight(const FixedPoint A, const FixedPoint B, unsigned OpBits, FixedPoint *R)
static FixedPoint deserialize(const std::byte *Buff)
static bool shiftLeft(const FixedPoint A, const FixedPoint B, unsigned OpBits, FixedPoint *R)
static FixedPoint from(const APSInt &I, llvm::FixedPointSemantics Sem, bool *Overflow)
size_t bytesToSerialize() const
If a Floating is constructed from Memory, it DOES NOT OWN THAT MEMORY.
static APFloat::opStatus div(const Floating &A, const Floating &B, llvm::RoundingMode RM, Floating *R)
static llvm::APFloatBase::Semantics deserializeSemantics(const std::byte *Buff)
void copy(const APFloat &F)
static APFloat::opStatus fromIntegral(APSInt Val, const llvm::fltSemantics &Sem, llvm::RoundingMode RM, Floating *Result)
static APFloat::opStatus sub(const Floating &A, const Floating &B, llvm::RoundingMode RM, Floating *R)
static APFloat::opStatus increment(const Floating &A, llvm::RoundingMode RM, Floating *R)
static APFloat::opStatus add(const Floating &A, const Floating &B, llvm::RoundingMode RM, Floating *R)
static void deserialize(const std::byte *Buff, Floating *Result)
static APFloat::opStatus mul(const Floating &A, const Floating &B, llvm::RoundingMode RM, Floating *R)
void toSemantics(const llvm::fltSemantics *Sem, llvm::RoundingMode RM, Floating *Result) const
const llvm::fltSemantics & getSemantics() const
static APFloat::opStatus decrement(const Floating &A, llvm::RoundingMode RM, Floating *R)
APFloat::opStatus convertToInteger(APSInt &Result) const
static void bitcastFromMemory(const std::byte *Buff, const llvm::fltSemantics &Sem, Floating *Result)
APFloat getAPFloat() const
const FunctionDecl * getDecl() const
Returns the original FunctionDecl.
bool hasRVO() const
Checks if the first argument is a RVO pointer.
If an IntegralAP is constructed from Memory, it DOES NOT OWN THAT MEMORY.
static uint32_t deserializeSize(const std::byte *Buff)
static void deserialize(const std::byte *Buff, IntegralAP< Signed > *Result)
Wrapper around numeric types.
static std::enable_if_t<!std::is_same_v< ValT, IntegralKind >, Integral > from(ValT V, unsigned NumBits=0)
Frame storing local variables.
static void free(InterpFrame *F)
const Expr * getExpr(CodePtr PC) const
bool isLocalEnabled(unsigned Idx) const
void setParam(unsigned Index, const T &Value)
Mutates a local copy of a parameter.
InterpFrame * Caller
The frame of the previous function.
SourceInfo getSource(CodePtr PC) const
Map a location to a source.
CodePtr getRetPC() const
Returns the return address of the frame.
void enableLocal(unsigned Idx)
Block * getLocalBlock(unsigned Offset) const
SourceLocation getLocation(CodePtr PC) const
const Pointer & getThis() const
Returns the 'this' pointer.
unsigned MSVCConstexprAllowed
const Function * getFunction() const
Returns the current function.
size_t getFrameOffset() const
Returns the offset on the stack at which the frame starts.
SourceRange getRange(CodePtr PC) const
void setLocal(unsigned Offset, const T &Value)
Mutates a local variable.
bool isBottomFrame() const
bool hasThisPointer() const
Pointer getLocalPointer(unsigned Offset) const
Returns a pointer to a local variables.
const T & getParam(unsigned Index) const
Returns the value of an argument.
const Pointer & getRVOPtr() const
Returns the RVO pointer, if the Function has one.
Pointer getParamPointer(unsigned Offset)
Returns a pointer to an argument - lazily creates a block.
const FunctionDecl * getCallee() const override
Returns the caller.
void initScope(unsigned Idx)
T pop()
Returns the value from the top of the stack and removes it.
void push(Tys &&...Args)
Constructs a value in place on the top of the stack.
void dump() const
dump the stack contents to stderr.
size_t size() const
Returns the size of the stack in bytes.
void discard()
Discards the top value from the stack.
T & peek() const
Returns a reference to the value on the top of the stack.
SmallVectorImpl< PartialDiagnosticAt > * PrevDiags
Things needed to do speculative execution.
DynamicAllocator & getAllocator()
Context & Ctx
Interpreter Context.
Floating allocFloat(const llvm::fltSemantics &Sem)
const unsigned EvalID
ID identifying this evaluation.
llvm::SmallVector< std::pair< const Expr *, const LifetimeExtendedTemporaryDecl * > > SeenGlobalTemporaries
InterpStack & Stk
Temporary stack.
bool maybeDiagnoseDanglingAllocations()
Diagnose any dynamic allocations that haven't been freed yet.
const VarDecl * EvaluatingDecl
Declaration we're initializing/evaluting, if any.
InterpFrame * Current
The current frame.
std::optional< bool > ConstantContextOverride
llvm::SmallVector< PtrView > InitializingPtrs
List of blocks we're currently running either constructors or destructors for.
T allocAP(unsigned BitWidth)
unsigned SpeculationDepth
StdAllocatorCaller getStdAllocatorCaller(StringRef Name) const
bool inConstantContext() const
Program & P
Reference to the module containing all bytecode.
unsigned getPathLength() const
Return the length of the cast path.
ComparisonCategoryResult compare(const MemberPointer &RHS) const
A pointer to a memory block, live or dead.
static bool hasSameBase(const Pointer &A, const Pointer &B)
Checks if two pointers are comparable.
Pointer narrow() const
Restricts the scope of an array element pointer.
Pointer stripBaseCasts() const
Strip base casts from this Pointer.
const Expr * getRootExpr() const
bool isInitialized() const
Checks if an object was initialized.
bool pointsToLabel() const
Whether this points to a block created for an AddrLabelExpr.
bool isZeroSizeArray() const
Checks if the pointer is pointing to a zero-size array.
Pointer atIndex(uint64_t Idx) const
Offsets a pointer inside an array.
bool isDummy() const
Checks if the pointer points to a dummy value.
const AddrLabelExpr * getPointedToLabel() const
Returns the AddrLabelExpr the Pointer points to, if any.
int64_t getIndex() const
Returns the index into an array.
bool canDeref(PrimType T) const
Checks whether the pointer can be dereferenced to the given PrimType.
Pointer atField(unsigned Off) const
Creates a pointer to a field.
T & deref() const
Dereferences the pointer, if it's live.
unsigned getNumElems() const
Returns the number of elements.
bool isUnknownSizeArray() const
Checks if the structure is an array of unknown size.
bool isIntegralPointer() const
QualType getType() const
Returns the type of the innermost field.
bool pointsToStringLiteral() const
void initialize() const
Initializes a field.
std::optional< size_t > computeOffsetForComparison(const ASTContext &ASTCtx) const
Compute an integer that can be used to compare this pointer to another one.
bool isArrayRoot() const
Whether this array refers to an array, but not to the first element.
static bool elemsOfSameArray(const Pointer &A, const Pointer &B)
Checks if two pointers can be subtracted.
bool inArray() const
Checks if the innermost field is an array.
T & elem(unsigned I) const
Dereferences the element at index I.
std::optional< size_t > computeLayoutOffset(const ASTContext &ASTCtx) const
Compute the pointer offset as given by the ASTRecordLayout.
uint64_t getByteOffset() const
Returns the byte offset from the start.
bool isTypeidPointer() const
std::string toDiagnosticString(const ASTContext &Ctx) const
Converts the pointer to a string usable in diagnostics.
bool isZero() const
Checks if the pointer is null.
bool isConstexprUnknown() const
const IntPointer & asIntPointer() const
bool isRoot() const
Pointer points directly to a block.
const Descriptor * getDeclDesc() const
Accessor for information about the declaration site.
void activate() const
Activates a field.
unsigned getOffset() const
Returns the offset into an array.
bool isOnePastEnd() const
Checks if the index is one past end.
uint64_t getIntegerRepresentation() const
Pointer expand() const
Expands a pointer to the containing array, undoing narrowing.
bool isDereferencable() const
Whether this block can be read from at all.
bool isBlockPointer() const
const FunctionPointer & asFunctionPointer() const
const Block * block() const
void initializeElement(unsigned Index) const
Initialized the given element of a primitive array.
bool isFunctionPointer() const
const Descriptor * getFieldDesc() const
Accessors for information about the innermost field.
bool isBaseClass() const
Checks if a structure is a base class.
bool canBeInitialized() const
If this pointer has an InlineDescriptor we can use to initialize.
const BlockPointer & asBlockPointer() const
static std::optional< std::pair< PtrView, PtrView > > computeSplitPoint(const Pointer &A, const Pointer &B)
const Record * getRecord() const
Returns the record descriptor of a class.
Function * getFunction(const FunctionDecl *F)
Returns a function.
Block * getGlobal(unsigned Idx)
Returns the value of a global.
UnsignedOrNone getOrCreateGlobal(const ValueDecl *VD, const Expr *Init=nullptr)
Returns or creates a global an creates an index to it.
Pointer getPtrGlobal(unsigned Idx) const
Returns a pointer to a global.
const void * getNativePointer(unsigned Idx) const
Returns the value of a marshalled native pointer.
Structure/Class descriptor.
bool isAnonymousUnion() const
Checks if the record is an anonymous union.
Describes the statement/declaration an opcode was generated from.
bool checkingForUndefinedBehavior() const
Are we checking an expression for overflow?
Expr::EvalStatus & getEvalStatus() const
DiagnosticBuilder report(SourceLocation Loc, diag::kind DiagId)
Directly reports a diagnostic message.
OptionalDiagnostic FFDiag(SourceLocation Loc, diag::kind DiagId=diag::note_invalid_subexpr_in_const_expr, unsigned ExtraNotes=0)
Diagnose that the evaluation could not be folded (FF => FoldFailure)
bool noteSideEffect() const
Note that we have had a side-effect, and determine whether we should keep evaluating.
ASTContext & getASTContext() const
bool noteUndefinedBehavior() const
Note that we hit something that was technically undefined behavior, but that we can evaluate past it ...
OptionalDiagnostic CCEDiag(SourceLocation Loc, diag::kind DiagId=diag::note_invalid_subexpr_in_const_expr, unsigned ExtraNotes=0)
Diagnose that the evaluation does not produce a C++11 core constant expression.
const LangOptions & getLangOpts() const
bool checkingPotentialConstantExpression() const
Are we checking whether the expression is a potential constant expression?
bool arePotentiallyOverlappingStringLiterals(const Pointer &LHS, const Pointer &RHS)
static bool ShiftFixedPoint(InterpState &S, CodePtr OpPC, bool Left)
bool GetPtrFieldPop(InterpState &S, CodePtr OpPC, uint32_t Off)
bool GetMemberPtrBase(InterpState &S)
bool PseudoDtor(InterpState &S, CodePtr OpPC)
Ends the lifetime of the pop'd pointer.
bool InitPop(InterpState &S, CodePtr OpPC)
bool Shr(InterpState &S, CodePtr OpPC)
bool CheckDestruction(InterpState &S, CodePtr OpPC)
bool ArrayElemPop(InterpState &S, CodePtr OpPC, uint32_t Index)
bool Flip(InterpState &S)
[Value1, Value2] -> [Value2, Value1]
bool GetTypeid(InterpState &S, const Type *TypePtr, const Type *TypeInfoType)
Typeid support.
bool GetLocalEnabled(InterpState &S, uint32_t I)
bool CastPointerIntegralAPS(InterpState &S, CodePtr OpPC, uint32_t BitWidth)
bool CastAPToOffsetIndex(InterpState &S, CodePtr OpPC)
bool ArrayElem(InterpState &S, CodePtr OpPC, uint32_t Index)
bool GT(InterpState &S, CodePtr OpPC)
bool CastPointerIntegralAP(InterpState &S, CodePtr OpPC, uint32_t BitWidth)
bool CheckInit(InterpState &S, CodePtr OpPC, const Pointer &Ptr)
Checks if a value can be initialized.
bool GetPtrParam(InterpState &S, uint32_t Index)
bool GetThisField(InterpState &S, CodePtr OpPC, uint32_t I)
bool PushCC(InterpState &S, bool Value)
bool PreInc(InterpState &S, CodePtr OpPC, bool CanOverflow)
bool CheckFunctionDecl(InterpState &S, CodePtr OpPC, const FunctionDecl *FD)
Opcode. Check if the function decl can be called at compile time.
bool InitThisField(InterpState &S, CodePtr OpPC, uint32_t I)
bool BitCastPrim(InterpState &S, CodePtr OpPC, bool TargetIsUCharOrByte, uint32_t ResultBitWidth, const llvm::fltSemantics *Sem, const Type *TargetType)
bool handleOverflow(InterpState &S, CodePtr OpPC, const T &SrcValue)
Floating ReadArg< Floating >(InterpState &S, CodePtr &OpPC)
bool GetPtrLocal(InterpState &S, uint32_t I)
bool Incf(InterpState &S, CodePtr OpPC, uint32_t FPOI)
bool DoShift(InterpState &S, CodePtr OpPC, LT &LHS, RT &RHS, LT *Result)
bool StartThisLifetime(InterpState &S)
void cleanupAfterFunctionCall(InterpState &S, const Function *Func)
bool CheckConstant(InterpState &S, CodePtr OpPC, const Descriptor *Desc, AccessKinds AK)
Checks if the Descriptor is of a constexpr or const global variable.
bool Sub(InterpState &S, CodePtr OpPC)
bool GetTypeidPtr(InterpState &S, CodePtr OpPC, const Type *TypeInfoType)
bool Mulf(InterpState &S, CodePtr OpPC, uint32_t FPOI)
bool InitElemPop(InterpState &S, CodePtr OpPC, uint32_t Idx)
The same as InitElem, but pops the pointer as well.
bool StoreBitField(InterpState &S, CodePtr OpPC)
bool LT(InterpState &S, CodePtr OpPC)
bool CheckDowncast(InterpState &S, CodePtr OpPC, const Pointer &Ptr, uint32_t Offset)
Checks if the dowcast using the given offset is possible with the given pointer.
bool BitCast(InterpState &S, CodePtr OpPC)
bool LoadPop(InterpState &S, CodePtr OpPC)
bool SubPtr(InterpState &S, CodePtr OpPC, uint32_t ElemSize)
1) Pops a Pointer from the stack.
bool PushIgnoreDiags(InterpState &S)
bool CheckGlobalLoad(InterpState &S, CodePtr OpPC, const Block *B)
Checks a direct load of a primitive value from a global or local variable.
static llvm::RoundingMode getRoundingMode(FPOptions FPO)
static bool IncPtr(InterpState &S, CodePtr OpPC)
bool CheckDeclRef(InterpState &S, CodePtr OpPC, const DeclRefExpr *DR)
We aleady know the given DeclRefExpr is invalid for some reason, now figure out why and print appropr...
bool EndLifetime(InterpState &S, CodePtr OpPC)
Ends the lifetime of the peek'd pointer.
PRESERVE_NONE bool NoRet(InterpState &S)
bool InitBitFieldActivate(InterpState &S, CodePtr OpPC, uint32_t FieldOffset, uint32_t FieldBitWidth)
bool CtorCheck(InterpState &S)
Abort without a diagnostic if we're checking for a potential constant expression and this is not the ...
bool SetField(InterpState &S, CodePtr OpPC, uint32_t I)
bool CheckNonNullArg(InterpState &S, CodePtr OpPC)
bool SetThreeWayComparisonField(InterpState &S, CodePtr OpPC, const Pointer &Ptr, const APSInt &IntValue)
Sets the given integral value to the pointer, which is of a std::{weak,partial,strong}...
bool CastMemberPtrDerivedPop(InterpState &S, int32_t Off, const RecordDecl *BaseDecl)
BaseToDerivedMemberPointer.
bool InitBitField(InterpState &S, CodePtr OpPC, uint32_t FieldOffset, uint32_t FieldBitWidth)
static bool IncDecPtrHelper(InterpState &S, CodePtr OpPC, const Pointer &Ptr)
bool Addf(InterpState &S, CodePtr OpPC, uint32_t FPOI)
bool CheckDivRem(InterpState &S, CodePtr OpPC, const T &LHS, const T &RHS)
Checks if Div/Rem operation on LHS and RHS is valid.
static bool IsOpaqueConstantCall(const CallExpr *E)
bool CheckPointerToIntegralCast(InterpState &S, CodePtr OpPC, const Pointer &Ptr, unsigned BitWidth)
bool CheckDecl(InterpState &S, const VarDecl *VD)
bool AddSubMulHelper(InterpState &S, CodePtr OpPC, unsigned Bits, const T &LHS, const T &RHS)
bool EnableLocal(InterpState &S, uint32_t I)
bool GetPtrField(InterpState &S, CodePtr OpPC, uint32_t Off)
1) Peeks a Pointer 2) Pushes Pointer.atField(Off) on the stack
static bool CheckAllocations(InterpState &S)
bool StoreActivate(InterpState &S, CodePtr OpPC)
bool CheckActive(InterpState &S, CodePtr OpPC, const Pointer &Ptr, AccessKinds AK, bool WillActivate)
bool Div(InterpState &S, CodePtr OpPC)
1) Pops the RHS from the stack.
PRESERVE_NONE bool Ret(InterpState &S)
bool InitThisBitFieldActivate(InterpState &S, CodePtr OpPC, uint32_t FieldOffset, uint32_t FieldBitWidth)
bool GetIntPtr(InterpState &S, CodePtr OpPC, const Type *Ty)
bool BitOr(InterpState &S)
1) Pops the RHS from the stack.
static bool CastFixedPointFloating(InterpState &S, const llvm::fltSemantics *Sem)
bool GetGlobalUnchecked(InterpState &S, CodePtr OpPC, uint32_t I)
Same as GetGlobal, but without the checks.
bool CheckSubobject(InterpState &S, CodePtr OpPC, const Pointer &Ptr, CheckSubobjectKind CSK)
Checks if Ptr is a one-past-the-end pointer.
bool handleFixedPointOverflow(InterpState &S, CodePtr OpPC, const FixedPoint &FP)
bool PopIgnoreDiags(InterpState &S)
constexpr bool isIntegralOrPointer()
bool ArrayElemPtr(InterpState &S, CodePtr OpPC)
bool GetMemberPtrDecl(InterpState &S)
bool NE(InterpState &S, CodePtr OpPC)
bool handleReference(InterpState &S, CodePtr OpPC, Block *B)
bool StartSpeculation(InterpState &S)
bool CheckBitCast(InterpState &S, CodePtr OpPC, const Type *TargetType, bool SrcIsVoidPtr)
bool CopyMemberPtrPath(InterpState &S, const RecordDecl *Entry, bool IsDerived)
Just append the given Entry to the MemberPointer's path.
llvm::FixedPointSemantics FixedPointSemantics
bool CheckLoad(InterpState &S, CodePtr OpPC, const Pointer &Ptr, AccessKinds AK)
Checks if a value can be loaded from a block.
static bool FnPtrCast(InterpState &S, CodePtr OpPC)
static bool ZeroIntAPS(InterpState &S, uint32_t BitWidth)
bool Shl(InterpState &S, CodePtr OpPC)
bool CastPointerIntegral(InterpState &S, CodePtr OpPC)
constexpr bool isPtrType(PrimType T)
bool DecfPop(InterpState &S, CodePtr OpPC, uint32_t FPOI)
bool InterpretOffsetOf(InterpState &S, CodePtr OpPC, const OffsetOfExpr *E, ArrayRef< int64_t > ArrayIndices, int64_t &IntResult)
Interpret an offsetof operation.
bool SubOffset(InterpState &S, CodePtr OpPC)
constexpr size_t align(size_t Size)
Aligns a size to the pointer alignment.
bool CheckBCPResult(InterpState &S, const Pointer &Ptr)
bool SetLocal(InterpState &S, uint32_t I)
1) Pops the value from the stack.
PRESERVE_NONE bool EndSpeculation(InterpState &S)
bool diagnoseShiftFailure(InterpState &S, CodePtr OpPC, ShiftFailure Failure, const APSInt *Value, unsigned Bits)
bool GetFnPtr(InterpState &S, const Function *Func)
bool Store(InterpState &S, CodePtr OpPC)
bool Divc(InterpState &S, CodePtr OpPC)
bool DoBitCastPtr(InterpState &S, CodePtr OpPC, const Pointer &FromPtr, Pointer &ToPtr)
bool GetField(InterpState &S, CodePtr OpPC, uint32_t I)
1) Peeks a pointer on the stack 2) Pushes the value of the pointer's field on the stack
bool ArrayElemPtrPop(InterpState &S, CodePtr OpPC)
bool This(InterpState &S, CodePtr OpPC)
bool FinishInitActivate(InterpState &S)
bool CheckDynamicMemoryAllocation(InterpState &S, CodePtr OpPC)
Checks if dynamic memory allocation is available in the current language mode.
bool InitField(InterpState &S, CodePtr OpPC, uint32_t I)
1) Pops the value from the stack 2) Peeks a pointer from the stack 3) Pushes the value to field I of ...
bool Dump(InterpState &S)
bool FinishInitPop(InterpState &S)
bool CmpHelperEQ(InterpState &S, CodePtr OpPC, CompareFn Fn)
bool InitScope(InterpState &S, uint32_t I)
T ReadArg(InterpState &S, CodePtr &OpPC)
bool CastFP(InterpState &S, const llvm::fltSemantics *Sem, llvm::RoundingMode RM)
1) Pops a Floating from the stack.
bool PreDecBitfield(InterpState &S, CodePtr OpPC, bool CanOverflow, uint32_t BitWidth)
bool CheckLive(InterpState &S, CodePtr OpPC, const Pointer &Ptr, AccessKinds AK)
Checks if a pointer is live and accessible.
bool CastFloatingIntegral(InterpState &S, CodePtr OpPC, uint32_t FPOI)
bool ArrayDecay(InterpState &S, CodePtr OpPC)
Just takes a pointer and checks if it's an incomplete array type.
bool GetPtrDerivedPop(InterpState &S, CodePtr OpPC, uint32_t Off, bool NullOK, const Type *TargetType)
bool DiagTypeid(InterpState &S, CodePtr OpPC)
bool diagnoseUninitialized(InterpState &S, CodePtr OpPC, const Pointer &Ptr, AccessKinds AK)
bool CheckFinalLoad(InterpState &S, CodePtr OpPC, const Pointer &Ptr)
This is not used by any of the opcodes directly.
bool InitGlobalTempComp(InterpState &S, const LifetimeExtendedTemporaryDecl *Temp)
1) Converts the value on top of the stack to an APValue 2) Sets that APValue on \Temp 3) Initialized ...
bool CheckRefInit(InterpState &S, CodePtr OpPC)
bool GetLocal(InterpState &S, CodePtr OpPC, uint32_t I)
bool OffsetOf(InterpState &S, CodePtr OpPC, const OffsetOfExpr *E)
bool CheckShift(InterpState &S, CodePtr OpPC, const LT &LHS, const RT &RHS, unsigned Bits)
Checks if the shift operation is legal.
bool SetParam(InterpState &S, uint32_t I)
FixedPoint ReadArg< FixedPoint >(InterpState &S, CodePtr &OpPC)
bool IsNonNull(InterpState &S)
static bool CastFloatingFixedPoint(InterpState &S, CodePtr OpPC, uint32_t FPS)
void diagnoseEnumValue(InterpState &S, CodePtr OpPC, const EnumDecl *ED, const APSInt &Value)
@ BlockAddress
A pointer to an interp::Block.
@ AddrLabelDiff
Difference between two AddrLabelExpr.
@ Number
Just a number, nothing else.
@ Address
A pointer to a ValueDecl.
@ LabelAddress
A pointer to a AddrLabelExpr.
@ FunctionAddress
A pointer to a FunctionDecl.
bool LE(InterpState &S, CodePtr OpPC)
bool isConstexprUnknown(const Block *B)
bool CheckNewTypeMismatchArray(InterpState &S, CodePtr OpPC, const Expr *E)
bool StartThisLifetime1(InterpState &S)
bool RVOPtr(InterpState &S)
bool Unsupported(InterpState &S, CodePtr OpPC)
Just emit a diagnostic.
bool InvalidDeclRef(InterpState &S, CodePtr OpPC, const DeclRefExpr *DR, bool InitializerFailed)
bool DecPop(InterpState &S, CodePtr OpPC, bool CanOverflow)
1) Pops a pointer from the stack 2) Load the value from the pointer 3) Writes the value decreased by ...
bool CheckNull(InterpState &S, CodePtr OpPC, const Pointer &Ptr, CheckSubobjectKind CSK)
Checks if a pointer is null.
bool CheckDeleteSource(InterpState &S, CodePtr OpPC, const Expr *Source, const Pointer &Ptr)
Check the source of the pointer passed to delete/delete[] has actually been heap allocated by us.
bool CheckFloatResult(InterpState &S, CodePtr OpPC, const Floating &Result, APFloat::opStatus Status, FPOptions FPO)
Checks if the result of a floating-point operation is valid in the current context.
ComparisonCategoryResult Compare(const T &X, const T &Y)
Helper to compare two comparable types.
PrimType
Enumeration of the primitive types of the VM.
bool DecPopBitfield(InterpState &S, CodePtr OpPC, bool CanOverflow, uint32_t BitWidth)
bool SetThisField(InterpState &S, CodePtr OpPC, uint32_t I)
bool StoreBitFieldPop(InterpState &S, CodePtr OpPC)
bool IncDecHelper(InterpState &S, CodePtr OpPC, const Pointer &Ptr, bool CanOverflow, UnsignedOrNone BitWidth=std::nullopt)
bool CallVar(InterpState &S, CodePtr OpPC, const Function *Func, uint32_t VarArgSize)
static bool DecPtr(InterpState &S, CodePtr OpPC)
constexpr bool needsAlloc()
bool CastAPS(InterpState &S, uint32_t BitWidth)
bool Alloc(InterpState &S, CodePtr OpPC, const Descriptor *Desc)
bool InvalidShuffleVectorIndex(InterpState &S, CodePtr OpPC, uint32_t Index)
static bool CastIntegralFixedPoint(InterpState &S, CodePtr OpPC, uint32_t FPS)
bool Rem(InterpState &S, CodePtr OpPC)
1) Pops the RHS from the stack.
bool ExpandPtr(InterpState &S)
bool NarrowPtr(InterpState &S)
bool InitGlobalTemp(InterpState &S, uint32_t I, const LifetimeExtendedTemporaryDecl *Temp)
1) Converts the value on top of the stack to an APValue 2) Sets that APValue on \Temp 3) Initializes ...
bool CheckNewTypeMismatch(InterpState &S, CodePtr OpPC, const Expr *E, std::optional< uint64_t > ArraySize)
Check if the initializer and storage types of a placement-new expression match.
bool Mulc(InterpState &S)
bool checkDestructor(InterpState &S, CodePtr OpPC, const Pointer &Ptr)
bool InitThisBitField(InterpState &S, CodePtr OpPC, uint32_t FieldOffset, uint32_t FieldBitWidth)
bool SizelessVectorElementSize(InterpState &S, CodePtr OpPC)
static bool Activate(InterpState &S)
bool CheckRange(InterpState &S, CodePtr OpPC, PtrView Ptr, AccessKinds AK)
Checks if a pointer is in range.
static bool PtrPtrCast(InterpState &S, CodePtr OpPC, bool SrcIsVoidPtr)
bool CheckLiteralType(InterpState &S, CodePtr OpPC, const Type *T)
bool SideEffect(InterpState &S)
bool BitAnd(InterpState &S)
1) Pops the RHS from the stack.
bool GetRefGlobal(InterpState &S, CodePtr OpPC, uint32_t I)
bool EndInit(InterpState &S)
PRESERVE_NONE bool RetVoid(InterpState &S)
bool GetPtrThisField(InterpState &S, CodePtr OpPC, uint32_t Off)
bool Comp(InterpState &S)
1) Pops the value from the stack.
bool CheckArray(InterpState &S, CodePtr OpPC, const Pointer &Ptr)
Checks if the array is offsetable.
bool InitThisFieldActivate(InterpState &S, CodePtr OpPC, uint32_t I)
bool CheckFloatStatus(InterpState &S, CodePtr OpPC, APFloat::opStatus Status, FPOptions FPO)
Check if the given floating-point evaluation status is allowed for compile-time constant folding duri...
bool CastAP(InterpState &S, uint32_t BitWidth)
Like Cast(), but we cast to an arbitrary-bitwidth integral, so we need to know what bitwidth the resu...
bool IncBitfield(InterpState &S, CodePtr OpPC, bool CanOverflow, unsigned BitWidth)
bool GetPtrBase(InterpState &S, CodePtr OpPC, uint32_t Off)
bool StoreActivatePop(InterpState &S, CodePtr OpPC)
bool Null(InterpState &S, uint64_t Value, const Type *Ty)
bool StartInit(InterpState &S)
bool Divf(InterpState &S, CodePtr OpPC, uint32_t FPOI)
bool GetRefLocal(InterpState &S, CodePtr OpPC, uint32_t I)
bool CheckThis(InterpState &S, CodePtr OpPC)
Checks the 'this' pointer.
static bool ActivateThisField(InterpState &S, uint32_t I)
bool Const(InterpState &S, const T &Arg)
bool CastFloatingIntegralAPS(InterpState &S, CodePtr OpPC, uint32_t BitWidth, uint32_t FPOI)
bool GetPtrVirtBasePop(InterpState &S, CodePtr OpPC, const RecordDecl *D)
bool StorePop(InterpState &S, CodePtr OpPC)
bool CheckIntegralAddressCast(InterpState &S, CodePtr OpPC, unsigned BitWidth)
bool InvalidStore(InterpState &S, CodePtr OpPC, const Type *T)
bool ConstFloat(InterpState &S, const Floating &F)
bool Mul(InterpState &S, CodePtr OpPC)
bool InitElem(InterpState &S, CodePtr OpPC, uint32_t Idx)
1) Pops the value from the stack 2) Peeks a pointer and gets its index \Idx 3) Sets the value on the ...
bool Destroy(InterpState &S, CodePtr OpPC, uint32_t I)
static bool IsConstantContext(InterpState &S)
bool DecBitfield(InterpState &S, CodePtr OpPC, bool CanOverflow, uint32_t BitWidth)
size_t primSize(PrimType Type)
Returns the size of a primitive type in bytes.
bool ToMemberPtr(InterpState &S)
bool GetPtrVirtBase(InterpState &S, CodePtr OpPC, const RecordDecl *D)
bool PreIncBitfield(InterpState &S, CodePtr OpPC, bool CanOverflow, uint32_t BitWidth)
bool Dec(InterpState &S, CodePtr OpPC, bool CanOverflow)
1) Pops a pointer from the stack 2) Load the value from the pointer 3) Writes the value decreased by ...
bool StoreBitFieldActivate(InterpState &S, CodePtr OpPC)
bool BitXor(InterpState &S)
1) Pops the RHS from the stack.
bool CheckPseudoDtor(InterpState &S, CodePtr OpPC)
bool Free(InterpState &S, CodePtr OpPC, bool DeleteIsArrayForm, bool IsGlobalDelete)
bool IsBaseClass(InterpState &S)
bool PreDec(InterpState &S, CodePtr OpPC, bool CanOverflow)
bool InvalidNewDeleteExpr(InterpState &S, CodePtr OpPC, const Expr *E)
bool CheckArraySize(InterpState &S, CodePtr OpPC, uint64_t NumElems)
bool InitGlobal(InterpState &S, uint32_t I)
bool CheckArrayDestSize(InterpState &S, CodePtr OpPC, size_t NumElems)
Check if the destination array we're initializing can hold the NumElems elements.
bool CallBI(InterpState &S, CodePtr OpPC, const CallExpr *CE, uint32_t BuiltinID)
bool CheckLocalLoad(InterpState &S, CodePtr OpPC, const Block *B)
bool Neg(InterpState &S, CodePtr OpPC)
bool DecayPtr(InterpState &S)
OldPtr -> Integer -> NewPtr.
bool CheckExtern(InterpState &S, CodePtr OpPC, const Pointer &Ptr)
Checks if the variable has externally defined storage.
std::optional< Pointer > OffsetHelper(InterpState &S, CodePtr OpPC, const T &Offset, const Pointer &Ptr, bool IsPointerArith=false)
bool FinishInit(InterpState &S)
llvm::function_ref< bool(ComparisonCategoryResult)> CompareFn
bool CheckStore(InterpState &S, CodePtr OpPC, const Pointer &Ptr, bool WillBeActivated)
Checks if a value can be stored in a block.
bool Load(InterpState &S, CodePtr OpPC)
bool SetGlobal(InterpState &S, CodePtr OpPC, uint32_t I)
bool Cast(InterpState &S, CodePtr OpPC)
bool StoreBitFieldActivatePop(InterpState &S, CodePtr OpPC)
bool Inc(InterpState &S, CodePtr OpPC, bool CanOverflow)
1) Pops a pointer from the stack 2) Load the value from the pointer 3) Writes the value increased by ...
bool FinishInitGlobal(InterpState &S)
bool EQ(InterpState &S, CodePtr OpPC)
bool IncfPop(InterpState &S, CodePtr OpPC, uint32_t FPOI)
bool GetPtrBasePop(InterpState &S, CodePtr OpPC, uint32_t Off, bool NullOK)
bool GetFieldPop(InterpState &S, CodePtr OpPC, uint32_t I)
1) Pops a pointer from the stack 2) Pushes the value of the pointer's field on the stack
bool Add(InterpState &S, CodePtr OpPC)
bool CmpHelperEQ< MemberPointer >(InterpState &S, CodePtr OpPC, CompareFn Fn)
bool AddOffset(InterpState &S, CodePtr OpPC)
bool DoMemcpy(InterpState &S, CodePtr OpPC, const Pointer &Src, Pointer &Dest)
Copy the contents of Src into Dest.
bool IncPop(InterpState &S, CodePtr OpPC, bool CanOverflow)
1) Pops a pointer from the stack 2) Load the value from the pointer 3) Writes the value increased by ...
constexpr bool isIntegerType(PrimType T)
static bool AddSubNonNumber(InterpState &S, CodePtr OpPC, T LHS, T RHS)
bool Memcpy(InterpState &S, CodePtr OpPC)
bool GE(InterpState &S, CodePtr OpPC)
bool DoBitCast(InterpState &S, CodePtr OpPC, const Pointer &Ptr, std::byte *Buff, Bits BitWidth, Bits FullBitWidth, bool &HasIndeterminateBits)
bool CallPtr(InterpState &S, CodePtr OpPC, uint32_t ArgSize, const CallExpr *CE)
bool CmpHelperEQ< Pointer >(InterpState &S, CodePtr OpPC, CompareFn Fn)
bool PushMSVCCE(InterpState &S)
bool CastFloatingIntegralAP(InterpState &S, CodePtr OpPC, uint32_t BitWidth, uint32_t FPOI)
static bool CastFixedPointIntegral(InterpState &S, CodePtr OpPC)
bool MarkDestroyed(InterpState &S, CodePtr OpPC)
bool CallVirt(InterpState &S, CodePtr OpPC, const Function *Func, uint32_t VarArgSize)
bool CastIntegralFloating(InterpState &S, CodePtr OpPC, const llvm::fltSemantics *Sem, uint32_t FPOI)
bool CmpHelper(InterpState &S, CodePtr OpPC, CompareFn Fn)
bool CheckConst(InterpState &S, CodePtr OpPC, const Pointer &Ptr)
Checks if a pointer points to const storage.
bool PopMSVCCE(InterpState &S)
bool CastFixedPoint(InterpState &S, CodePtr OpPC, uint32_t FPS)
bool AllocCN(InterpState &S, CodePtr OpPC, const Descriptor *ElementDesc, bool IsNoThrow)
bool GetGlobal(InterpState &S, CodePtr OpPC, uint32_t I)
bool Subf(InterpState &S, CodePtr OpPC, uint32_t FPOI)
bool GetMemberPtr(InterpState &S, const ValueDecl *D)
bool GetPtrThisVirtBase(InterpState &S, CodePtr OpPC, const RecordDecl *D)
bool CastMemberPtrBasePop(InterpState &S, int32_t Off, const RecordDecl *BaseDecl)
DerivedToBaseMemberPointer.
bool InvalidCast(InterpState &S, CodePtr OpPC, CastKind Kind, bool Fatal)
bool DoShiftAP(InterpState &S, CodePtr OpPC, const APSInt &LHS, APSInt RHS, LT *Result)
A version of DoShift that works on IntegralAP.
bool CastMemberPtrPtr(InterpState &S, CodePtr OpPC)
bool VirtBaseHelper(InterpState &S, const RecordDecl *Decl, const Pointer &Ptr)
bool InitFieldActivate(InterpState &S, CodePtr OpPC, uint32_t I)
bool IncPopBitfield(InterpState &S, CodePtr OpPC, bool CanOverflow, uint32_t BitWidth)
bool CMP3(InterpState &S, CodePtr OpPC, const ComparisonCategoryInfo *CmpInfo)
bool Invalid(InterpState &S, CodePtr OpPC)
bool CmpHelper< Pointer >(InterpState &S, CodePtr OpPC, CompareFn Fn)
bool Decf(InterpState &S, CodePtr OpPC, uint32_t FPOI)
bool Assume(InterpState &S, CodePtr OpPC)
bool PopCC(InterpState &S)
bool GetPtrThisBase(InterpState &S, CodePtr OpPC, uint32_t Off)
bool GetParam(InterpState &S, uint32_t Index)
bool GetPtrGlobal(InterpState &S, uint32_t I)
bool FinishInitActivatePop(InterpState &S)
bool DynamicCast(InterpState &S, CodePtr OpPC, const Type *DestTypePtr, bool IsReferenceCast)
bool IncDecFloatHelper(InterpState &S, CodePtr OpPC, const Pointer &Ptr, uint32_t FPOI)
bool AllocN(InterpState &S, CodePtr OpPC, PrimType T, const Expr *Source, bool IsNoThrow)
bool CheckEnumValue(InterpState &S, CodePtr OpPC, const EnumDecl *ED)
static bool ZeroIntAP(InterpState &S, uint32_t BitWidth)
Top level wrappers for InstallAPI frontend operations.
bool isa(CodeGen::Address addr)
ComparisonCategoryResult
An enumeration representing the possible results of a three-way comparison.
CheckSubobjectKind
The order of this enum is important for diagnostics.
@ Result
The result type of a method or function.
AccessKinds
Kinds of access we can perform on an object, for diagnostics.
OptionalUnsigned< unsigned > UnsignedOrNone
const FunctionProtoType * T
@ Off
Never emit colors regardless of the output stream.
@ ConstantFold
Fold the expression to a constant.
U cast(CodeGen::Address addr)
__packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 __packed_splat2 __packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 uint32_t
SmallVectorImpl< PartialDiagnosticAt > * Diag
Diag - If this is non-null, it will be filled in with a stack of notes indicating why evaluation fail...
bool DiagEmitted
Whether any diagnostic has been emitted.
size_t getQuantity() const
unsigned Base
Start of the current subfield.
Block * Pointee
The block the pointer is pointing to.
Describes a memory block created by an allocation site.
unsigned getNumElems() const
Returns the number of elements stored in the block.
unsigned getSize() const
Returns the size of the object without metadata.
const Decl * asDecl() const
bool isUnknownSizeArray() const
Checks if the descriptor is of an array of unknown size.
bool isPrimitiveArray() const
Checks if the descriptor is of an array of primitives.
const VarDecl * asVarDecl() const
PrimType getPrimType() const
bool isRecord() const
Checks if the descriptor is of a record.
const Expr * asExpr() const
bool isArray() const
Checks if the descriptor is of an array.
Descriptor used for global variables.
QualType getPointeeType() const
Mapping from primitive types to their representation.