[clang] [clang][bytecode][NFC] Consistently use `isBottomFrame()` (PR #204167)
via cfe-commits
cfe-commits at lists.llvm.org
Tue Jun 16 07:29:50 PDT 2026
llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang
Author: Timm Baeder (tbaederr)
<details>
<summary>Changes</summary>
Instead of checking for `getDepth() == 0`.
---
Full diff: https://github.com/llvm/llvm-project/pull/204167.diff
1 Files Affected:
- (modified) clang/lib/AST/ByteCode/Interp.h (+5-5)
``````````diff
diff --git a/clang/lib/AST/ByteCode/Interp.h b/clang/lib/AST/ByteCode/Interp.h
index ad807816aa904..0f9e585e19769 100644
--- a/clang/lib/AST/ByteCode/Interp.h
+++ b/clang/lib/AST/ByteCode/Interp.h
@@ -1836,7 +1836,7 @@ inline bool InitGlobalTempComp(InterpState &S, CodePtr OpPC,
template <PrimType Name, class T = typename PrimConv<Name>::T>
bool InitThisField(InterpState &S, CodePtr OpPC, uint32_t I) {
- if (S.checkingPotentialConstantExpression() && S.Current->getDepth() == 0)
+ if (S.checkingPotentialConstantExpression() && S.Current->isBottomFrame())
return false;
if (!CheckThis(S, OpPC))
return false;
@@ -1853,7 +1853,7 @@ bool InitThisField(InterpState &S, CodePtr OpPC, uint32_t I) {
template <PrimType Name, class T = typename PrimConv<Name>::T>
bool InitThisFieldActivate(InterpState &S, CodePtr OpPC, uint32_t I) {
- if (S.checkingPotentialConstantExpression() && S.Current->getDepth() == 0)
+ if (S.checkingPotentialConstantExpression() && S.Current->isBottomFrame())
return false;
if (!CheckThis(S, OpPC))
return false;
@@ -1872,7 +1872,7 @@ bool InitThisFieldActivate(InterpState &S, CodePtr OpPC, uint32_t I) {
template <PrimType Name, class T = typename PrimConv<Name>::T>
bool InitThisBitField(InterpState &S, CodePtr OpPC, uint32_t FieldOffset,
uint32_t FieldBitWidth) {
- if (S.checkingPotentialConstantExpression() && S.Current->getDepth() == 0)
+ if (S.checkingPotentialConstantExpression() && S.Current->isBottomFrame())
return false;
if (!CheckThis(S, OpPC))
return false;
@@ -1897,7 +1897,7 @@ bool InitThisBitField(InterpState &S, CodePtr OpPC, uint32_t FieldOffset,
template <PrimType Name, class T = typename PrimConv<Name>::T>
bool InitThisBitFieldActivate(InterpState &S, CodePtr OpPC,
uint32_t FieldOffset, uint32_t FieldBitWidth) {
- if (S.checkingPotentialConstantExpression() && S.Current->getDepth() == 0)
+ if (S.checkingPotentialConstantExpression() && S.Current->isBottomFrame())
return false;
if (!CheckThis(S, OpPC))
return false;
@@ -2093,7 +2093,7 @@ bool GetPtrDerivedPop(InterpState &S, CodePtr OpPC, uint32_t Off, bool NullOK,
const Type *TargetType);
inline bool GetPtrThisField(InterpState &S, CodePtr OpPC, uint32_t Off) {
- if (S.checkingPotentialConstantExpression() && S.Current->getDepth() == 0)
+ if (S.checkingPotentialConstantExpression() && S.Current->isBottomFrame())
return false;
if (!CheckThis(S, OpPC))
return false;
``````````
</details>
https://github.com/llvm/llvm-project/pull/204167
More information about the cfe-commits
mailing list