[clang] [clang][dataflow] Add context-sensitive test for returning a record by value. (PR #84317)
via cfe-commits
cfe-commits at lists.llvm.org
Thu Mar 7 04:59:59 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang
Author: None (martinboehme)
<details>
<summary>Changes</summary>
I'm making some changes to `Environment::getResultObjectLocation()`, with the
ultimate goal of eliminating `RecordValue` entirely, and I'd like to make sure
I don't break this behavior (and I've realized we don't have a test for it yet).
---
Full diff: https://github.com/llvm/llvm-project/pull/84317.diff
1 Files Affected:
- (modified) clang/unittests/Analysis/FlowSensitive/TransferTest.cpp (+33)
``````````diff
diff --git a/clang/unittests/Analysis/FlowSensitive/TransferTest.cpp b/clang/unittests/Analysis/FlowSensitive/TransferTest.cpp
index f534ccb1254701..33762bc4c13f25 100644
--- a/clang/unittests/Analysis/FlowSensitive/TransferTest.cpp
+++ b/clang/unittests/Analysis/FlowSensitive/TransferTest.cpp
@@ -5672,6 +5672,39 @@ TEST(TransferTest, ContextSensitiveReturnInt) {
{BuiltinOptions{ContextSensitiveOptions{}}});
}
+TEST(TransferTest, ContextSensitiveReturnRecord) {
+ std::string Code = R"(
+ struct S {
+ bool B;
+ };
+
+ S makeS(bool BVal) { return {BVal}; }
+
+ void target() {
+ S FalseS = makeS(false);
+ S TrueS = makeS(true);
+ // [[p]]
+ }
+ )";
+ runDataflow(
+ Code,
+ [](const llvm::StringMap<DataflowAnalysisState<NoopLattice>> &Results,
+ ASTContext &ASTCtx) {
+ const Environment &Env = getEnvironmentAtAnnotation(Results, "p");
+
+ auto &FalseSLoc =
+ getLocForDecl<RecordStorageLocation>(ASTCtx, Env, "FalseS");
+ auto &TrueSLoc =
+ getLocForDecl<RecordStorageLocation>(ASTCtx, Env, "TrueS");
+
+ EXPECT_EQ(getFieldValue(&FalseSLoc, "B", ASTCtx, Env),
+ &Env.getBoolLiteralValue(false));
+ EXPECT_EQ(getFieldValue(&TrueSLoc, "B", ASTCtx, Env),
+ &Env.getBoolLiteralValue(true));
+ },
+ {BuiltinOptions{ContextSensitiveOptions{}}});
+}
+
TEST(TransferTest, ContextSensitiveMethodLiteral) {
std::string Code = R"(
class MyClass {
``````````
</details>
https://github.com/llvm/llvm-project/pull/84317
More information about the cfe-commits
mailing list