[clang] 0f4db1a - [clang][bytecode] Fix incorrect offset in elem() (#155157)
via cfe-commits
cfe-commits at lists.llvm.org
Mon Aug 25 05:10:02 PDT 2025
Author: Timm Baeder
Date: 2025-08-25T14:09:59+02:00
New Revision: 0f4db1a7955e511844d7a685103aa32617fc279d
URL: https://github.com/llvm/llvm-project/commit/0f4db1a7955e511844d7a685103aa32617fc279d
DIFF: https://github.com/llvm/llvm-project/commit/0f4db1a7955e511844d7a685103aa32617fc279d.diff
LOG: [clang][bytecode] Fix incorrect offset in elem() (#155157)
We need to use the base offset in both cases.
Also, add additional assertions to make sure we don't miss this case
again.
Fixes #155132
Added:
Modified:
clang/lib/AST/ByteCode/EvaluationResult.cpp
clang/lib/AST/ByteCode/Pointer.h
clang/test/AST/ByteCode/invalid.cpp
Removed:
################################################################################
diff --git a/clang/lib/AST/ByteCode/EvaluationResult.cpp b/clang/lib/AST/ByteCode/EvaluationResult.cpp
index b11531f4296a2..5110e243d167c 100644
--- a/clang/lib/AST/ByteCode/EvaluationResult.cpp
+++ b/clang/lib/AST/ByteCode/EvaluationResult.cpp
@@ -178,8 +178,8 @@ bool EvaluationResult::checkFullyInitialized(InterpState &S,
static void collectBlocks(const Pointer &Ptr,
llvm::SetVector<const Block *> &Blocks) {
auto isUsefulPtr = [](const Pointer &P) -> bool {
- return P.isLive() && !P.isZero() && !P.isDummy() && P.isDereferencable() &&
- !P.isUnknownSizeArray() && !P.isOnePastEnd();
+ return P.isLive() && P.isBlockPointer() && !P.isZero() && !P.isDummy() &&
+ P.isDereferencable() && !P.isUnknownSizeArray() && !P.isOnePastEnd();
};
if (!isUsefulPtr(Ptr))
diff --git a/clang/lib/AST/ByteCode/Pointer.h b/clang/lib/AST/ByteCode/Pointer.h
index 66e85f93a124e..4ac913f5b74cc 100644
--- a/clang/lib/AST/ByteCode/Pointer.h
+++ b/clang/lib/AST/ByteCode/Pointer.h
@@ -694,15 +694,20 @@ class Pointer {
assert(asBlockPointer().Pointee);
assert(isDereferencable());
assert(getFieldDesc()->isPrimitiveArray());
+ assert(I < getFieldDesc()->getNumElems());
unsigned ElemByteOffset = I * getFieldDesc()->getElemSize();
- if (isArrayRoot())
- return *reinterpret_cast<T *>(asBlockPointer().Pointee->rawData() +
- asBlockPointer().Base + sizeof(InitMapPtr) +
- ElemByteOffset);
+ if (isArrayRoot()) {
+ unsigned ReadOffset = BS.Base + sizeof(InitMapPtr) + ElemByteOffset;
+ assert(ReadOffset + sizeof(T) <=
+ BS.Pointee->getDescriptor()->getAllocSize());
+ return *reinterpret_cast<T *>(BS.Pointee->rawData() + ReadOffset);
+ }
- return *reinterpret_cast<T *>(asBlockPointer().Pointee->rawData() + Offset +
- ElemByteOffset);
+ unsigned ReadOffset = BS.Base + ElemByteOffset;
+ assert(ReadOffset + sizeof(T) <=
+ BS.Pointee->getDescriptor()->getAllocSize());
+ return *reinterpret_cast<T *>(BS.Pointee->rawData() + ReadOffset);
}
/// Whether this block can be read from at all. This is only true for
diff --git a/clang/test/AST/ByteCode/invalid.cpp b/clang/test/AST/ByteCode/invalid.cpp
index 2a6c2d13e8467..affb40eada870 100644
--- a/clang/test/AST/ByteCode/invalid.cpp
+++ b/clang/test/AST/ByteCode/invalid.cpp
@@ -58,3 +58,11 @@ namespace Casts {
/// Just make sure this doesn't crash.
float PR9558 = reinterpret_cast<const float&>("asd");
}
+
+
+/// This used to crash in collectBlock().
+struct S {
+};
+S s;
+S *sp[2] = {&s, &s};
+S *&spp = sp[1];
More information about the cfe-commits
mailing list