-
Notifications
You must be signed in to change notification settings - Fork 13.6k
[clang][bytecode] Diagnose comparing pointers to fields... #137159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@llvm/pr-subscribers-clang Author: Timm Baeder (tbaederr) Changes... with different access specifiers. Full diff: https://github.com/llvm/llvm-project/pull/137159.diff 4 Files Affected:
diff --git a/clang/lib/AST/ByteCode/Interp.h b/clang/lib/AST/ByteCode/Interp.h
index 99b032bee9e3d..0a52a64240c04 100644
--- a/clang/lib/AST/ByteCode/Interp.h
+++ b/clang/lib/AST/ByteCode/Interp.h
@@ -1007,6 +1007,19 @@ inline bool CmpHelper<Pointer>(InterpState &S, CodePtr OpPC, CompareFn Fn) {
return false;
}
+ // Diagnose comparisons between fields with different access specifiers.
+ if (std::optional<std::pair<Pointer, Pointer>> Split =
+ Pointer::computeSplitPoint(LHS, RHS)) {
+ const FieldDecl *LF = Split->first.getField();
+ const FieldDecl *RF = Split->second.getField();
+ if (LF && RF && !LF->getParent()->isUnion() &&
+ LF->getAccess() != RF->getAccess()) {
+ S.CCEDiag(S.Current->getSource(OpPC),
+ diag::note_constexpr_pointer_comparison_differing_access)
+ << LF << LF->getAccess() << RF << RF->getAccess() << LF->getParent();
+ }
+ }
+
unsigned VL = LHS.getByteOffset();
unsigned VR = RHS.getByteOffset();
S.Stk.push<BoolT>(BoolT::from(Fn(Compare(VL, VR))));
diff --git a/clang/lib/AST/ByteCode/Pointer.cpp b/clang/lib/AST/ByteCode/Pointer.cpp
index 059503cae3561..8adfd7a1f98d8 100644
--- a/clang/lib/AST/ByteCode/Pointer.cpp
+++ b/clang/lib/AST/ByteCode/Pointer.cpp
@@ -571,6 +571,48 @@ bool Pointer::pointsToLiteral() const {
return E && !isa<MaterializeTemporaryExpr, StringLiteral>(E);
}
+std::optional<std::pair<Pointer, Pointer>>
+Pointer::computeSplitPoint(const Pointer &A, const Pointer &B) {
+ if (!A.isBlockPointer() || !B.isBlockPointer())
+ return std::nullopt;
+
+ if (A.asBlockPointer().Pointee != B.asBlockPointer().Pointee)
+ return std::nullopt;
+ if (A.isRoot() && B.isRoot())
+ return std::nullopt;
+
+ if (A == B)
+ return std::make_pair(A, B);
+
+ auto getBase = [](const Pointer &P) -> Pointer {
+ if (P.isArrayElement())
+ return P.getArray();
+ return P.getBase();
+ };
+
+ Pointer IterA = A;
+ Pointer IterB = B;
+ Pointer CurA = IterA;
+ Pointer CurB = IterB;
+ for (;;) {
+ if (IterA.asBlockPointer().Base > IterB.asBlockPointer().Base) {
+ CurA = IterA;
+ IterA = getBase(IterA);
+ } else {
+ CurB = IterB;
+ IterB = getBase(IterB);
+ }
+
+ if (IterA == IterB)
+ return std::make_pair(CurA, CurB);
+
+ if (IterA.isRoot() && IterB.isRoot())
+ return std::nullopt;
+ }
+
+ llvm_unreachable("The loop above should've returned.");
+}
+
std::optional<APValue> Pointer::toRValue(const Context &Ctx,
QualType ResultType) const {
const ASTContext &ASTCtx = Ctx.getASTContext();
diff --git a/clang/lib/AST/ByteCode/Pointer.h b/clang/lib/AST/ByteCode/Pointer.h
index 8ede706f2736f..e168154a55f58 100644
--- a/clang/lib/AST/ByteCode/Pointer.h
+++ b/clang/lib/AST/ByteCode/Pointer.h
@@ -492,7 +492,11 @@ class Pointer {
return ElemDesc ? ElemDesc->ElemRecord : nullptr;
}
/// Returns the field information.
- const FieldDecl *getField() const { return getFieldDesc()->asFieldDecl(); }
+ const FieldDecl *getField() const {
+ if (const Descriptor *FD = getFieldDesc())
+ return FD->asFieldDecl();
+ return nullptr;
+ }
/// Checks if the storage is extern.
bool isExtern() const {
@@ -724,6 +728,9 @@ class Pointer {
/// Checks if both given pointers point to the same block.
static bool pointToSameBlock(const Pointer &A, const Pointer &B);
+ static std::optional<std::pair<Pointer, Pointer>>
+ computeSplitPoint(const Pointer &A, const Pointer &B);
+
/// Whether this points to a block that's been created for a "literal lvalue",
/// i.e. a non-MaterializeTemporaryExpr Expr.
bool pointsToLiteral() const;
diff --git a/clang/test/AST/ByteCode/records.cpp b/clang/test/AST/ByteCode/records.cpp
index da851785323a5..b4059f009b887 100644
--- a/clang/test/AST/ByteCode/records.cpp
+++ b/clang/test/AST/ByteCode/records.cpp
@@ -1787,3 +1787,26 @@ namespace IntegralBaseCast {
static_assert(f() == 0, "");
}
+
+namespace AccessMismatch {
+ struct A {
+ public:
+ constexpr A() : a(0), b(0) {}
+ int a;
+ constexpr bool cmp() const { return &a < &b; } // both-note {{comparison of address of fields 'a' and 'b' of 'A' with differing access specifiers (public vs private) has unspecified value}}
+ private:
+ int b;
+ };
+ static_assert(A().cmp(), ""); // both-error {{constant expression}} \
+ // both-note {{in call}}
+
+ class B {
+ public:
+ A a;
+ constexpr bool cmp() const { return &a.a < &b.a; } // both-note {{comparison of address of fields 'a' and 'b' of 'B' with differing access specifiers (public vs protected) has unspecified value}}
+ protected:
+ A b;
+ };
+ static_assert(B().cmp(), ""); // both-error {{constant expression}} \
+ // both-note {{in call}}
+}
|
... with different access specifiers.
IanWood1
pushed a commit
to IanWood1/llvm-project
that referenced
this pull request
May 6, 2025
... with different access specifiers.
IanWood1
pushed a commit
to IanWood1/llvm-project
that referenced
this pull request
May 6, 2025
... with different access specifiers.
IanWood1
pushed a commit
to IanWood1/llvm-project
that referenced
this pull request
May 6, 2025
... with different access specifiers.
Ankur-0429
pushed a commit
to Ankur-0429/llvm-project
that referenced
this pull request
May 9, 2025
... with different access specifiers.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
clang:bytecode
Issues for the clang bytecode constexpr interpreter
clang:frontend
Language frontend issues, e.g. anything involving "Sema"
clang
Clang issues not falling into any other category
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
... with different access specifiers.