[clang] 7490901 - [ByteCode] InterpBuiltin.cpp - consistently use castAs<> if dereferencing the result (#174781)
via cfe-commits
cfe-commits at lists.llvm.org
Wed Jan 7 08:23:16 PST 2026
Author: Simon Pilgrim
Date: 2026-01-07T16:23:12Z
New Revision: 7490901ea0f06c696b04374838b083361e8e151b
URL: https://github.com/llvm/llvm-project/commit/7490901ea0f06c696b04374838b083361e8e151b
DIFF: https://github.com/llvm/llvm-project/commit/7490901ea0f06c696b04374838b083361e8e151b.diff
LOG: [ByteCode] InterpBuiltin.cpp - consistently use castAs<> if dereferencing the result (#174781)
castAs<> will at least assert the cast is valid while getAs<> will always just return nullptr and then explode
Added:
Modified:
clang/lib/AST/ByteCode/InterpBuiltin.cpp
Removed:
################################################################################
diff --git a/clang/lib/AST/ByteCode/InterpBuiltin.cpp b/clang/lib/AST/ByteCode/InterpBuiltin.cpp
index b4acb786fa90c..3a68ff0e458b4 100644
--- a/clang/lib/AST/ByteCode/InterpBuiltin.cpp
+++ b/clang/lib/AST/ByteCode/InterpBuiltin.cpp
@@ -148,7 +148,7 @@ static QualType getElemType(const Pointer &P) {
if (Desc->isPrimitive())
return T;
if (T->isPointerType())
- return T->getAs<PointerType>()->getPointeeType();
+ return T->castAs<PointerType>()->getPointeeType();
if (Desc->isArray())
return Desc->getElemQualType();
if (const auto *AT = T->getAsArrayTypeUnsafe())
@@ -2935,7 +2935,7 @@ static bool interp__builtin_select(InterpState &S, CodePtr OpPC,
static bool interp__builtin_select_scalar(InterpState &S,
const CallExpr *Call) {
unsigned N =
- Call->getArg(1)->getType()->getAs<VectorType>()->getNumElements();
+ Call->getArg(1)->getType()->castAs<VectorType>()->getNumElements();
const Pointer &W = S.Stk.pop<Pointer>();
const Pointer &A = S.Stk.pop<Pointer>();
@@ -5213,7 +5213,7 @@ bool InterpretBuiltin(InterpState &S, CodePtr OpPC, const CallExpr *Call,
case X86::BI__builtin_ia32_vperm2f128_si256:
case X86::BI__builtin_ia32_permti256: {
unsigned NumElements =
- Call->getArg(0)->getType()->getAs<VectorType>()->getNumElements();
+ Call->getArg(0)->getType()->castAs<VectorType>()->getNumElements();
unsigned PreservedBitsCnt = NumElements >> 2;
return interp__builtin_ia32_shuffle_generic(
S, OpPC, Call,
More information about the cfe-commits
mailing list