2018-12-08 00:05:58 +08:00
|
|
|
// RUN: rm -rf %t && mkdir %t
|
|
|
|
// RUN: mkdir -p %t/ctudir2
|
|
|
|
// RUN: %clang_cc1 -triple x86_64-pc-linux-gnu \
|
|
|
|
// RUN: -emit-pch -o %t/ctudir2/ctu-other.c.ast %S/Inputs/ctu-other.c
|
[analyzer] On-demand parsing capability for CTU
Summary:
Introduce on-demand parsing of needed ASTs during CTU analysis.
The index-file format is extended, and analyzer-option CTUInvocationList
is added to specify the exact invocations needed to parse the needed
source-files.
Reviewers: martong, balazske, Szelethus, xazax.hun, whisperity
Reviewed By: martong, xazax.hun
Subscribers: gribozavr2, thakis, ASDenysPetrov, ormris, mgorny, whisperity, xazax.hun, baloghadamsoftware, szepet, rnkovacs, a.sidorin, mikhail.ramalho, Szelethus, donat.nagy, dkrupp, Charusso, steakhal, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D75665
2020-06-10 14:59:04 +08:00
|
|
|
// RUN: cp %S/Inputs/ctu-other.c.externalDefMap.ast-dump.txt %t/ctudir2/externalDefMap.txt
|
2018-12-08 00:05:58 +08:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -fsyntax-only -std=c89 -analyze \
|
|
|
|
// RUN: -analyzer-checker=core,debug.ExprInspection \
|
|
|
|
// RUN: -analyzer-config experimental-enable-naive-ctu-analysis=true \
|
|
|
|
// RUN: -analyzer-config ctu-dir=%t/ctudir2 \
|
|
|
|
// RUN: -verify %s
|
|
|
|
|
|
|
|
void clang_analyzer_eval(int);
|
|
|
|
|
|
|
|
// Test typedef and global variable in function.
|
|
|
|
typedef struct {
|
|
|
|
int a;
|
|
|
|
int b;
|
|
|
|
} FooBar;
|
|
|
|
extern FooBar fb;
|
|
|
|
int f(int);
|
2022-02-12 20:23:43 +08:00
|
|
|
void testGlobalVariable(void) {
|
2018-12-08 00:05:58 +08:00
|
|
|
clang_analyzer_eval(f(5) == 1); // expected-warning{{TRUE}}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test enums.
|
|
|
|
int enumCheck(void);
|
|
|
|
enum A { x,
|
|
|
|
y,
|
|
|
|
z };
|
2022-02-12 20:23:43 +08:00
|
|
|
void testEnum(void) {
|
2018-12-08 00:05:58 +08:00
|
|
|
clang_analyzer_eval(x == 0); // expected-warning{{TRUE}}
|
|
|
|
clang_analyzer_eval(enumCheck() == 42); // expected-warning{{TRUE}}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that asm import does not fail.
|
2022-02-12 20:23:43 +08:00
|
|
|
int inlineAsm(void);
|
|
|
|
int testInlineAsm(void) {
|
2018-12-08 00:05:58 +08:00
|
|
|
return inlineAsm();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test reporting error in a macro.
|
|
|
|
struct S;
|
|
|
|
int g(struct S *);
|
|
|
|
void testMacro(void) {
|
|
|
|
g(0); // expected-warning@Inputs/ctu-other.c:29 {{Access to field 'a' results in a dereference of a null pointer (loaded from variable 'ctx')}}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The external function prototype is incomplete.
|
|
|
|
// warning:implicit functions are prohibited by c99
|
2022-02-12 20:23:43 +08:00
|
|
|
void testImplicit(void) {
|
2018-12-08 00:05:58 +08:00
|
|
|
int res = identImplicit(6); // external implicit functions are not inlined
|
|
|
|
clang_analyzer_eval(res == 6); // expected-warning{{TRUE}}
|
[analyzer] On-demand parsing capability for CTU
Summary:
Introduce on-demand parsing of needed ASTs during CTU analysis.
The index-file format is extended, and analyzer-option CTUInvocationList
is added to specify the exact invocations needed to parse the needed
source-files.
Reviewers: martong, balazske, Szelethus, xazax.hun, whisperity
Reviewed By: martong, xazax.hun
Subscribers: gribozavr2, thakis, ASDenysPetrov, ormris, mgorny, whisperity, xazax.hun, baloghadamsoftware, szepet, rnkovacs, a.sidorin, mikhail.ramalho, Szelethus, donat.nagy, dkrupp, Charusso, steakhal, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D75665
2020-06-10 14:59:04 +08:00
|
|
|
// Call something with uninitialized from the same function in which the implicit was called.
|
|
|
|
// This is necessary to reproduce a special bug in NoStoreFuncVisitor.
|
|
|
|
int uninitialized;
|
|
|
|
h(uninitialized); // expected-warning{{1st function call argument is an uninitialized value}}
|
2018-12-08 00:05:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Tests the import of functions that have a struct parameter
|
|
|
|
// defined in its prototype.
|
|
|
|
struct DataType {
|
|
|
|
int a;
|
|
|
|
int b;
|
|
|
|
};
|
|
|
|
int structInProto(struct DataType *d);
|
2022-02-12 20:23:43 +08:00
|
|
|
void testStructDefInArgument(void) {
|
2018-12-08 00:05:58 +08:00
|
|
|
struct DataType d;
|
|
|
|
d.a = 1;
|
|
|
|
d.b = 0;
|
|
|
|
clang_analyzer_eval(structInProto(&d) == 0); // expected-warning{{TRUE}} expected-warning{{FALSE}}
|
|
|
|
}
|
[AST][PCH][ASTImporter] Fix UB caused by uninited SwitchStmt member
The SwitchStmt::FirstCase member is not initialized when the AST is
built by the ASTStmtReader. See the below code of
ASTStmtReader::VisitSwitchStmt in the case where the for loop does not
have any iterations:
```
// ... more code ...
SwitchCase *PrevSC = nullptr;
for (auto E = Record.size(); Record.getIdx() != E; ) {
SwitchCase *SC = Record.getSwitchCaseWithID(Record.readInt());
if (PrevSC)
PrevSC->setNextSwitchCase(SC);
else
S->setSwitchCaseList(SC); // Sets FirstCase !!!
PrevSC = SC;
}
} // return
```
Later, in ASTNodeImporter::VisitSwitchStmt,
we have a condition that depends on this uninited value:
```
for (SwitchCase *SC = S->getSwitchCaseList(); SC != nullptr;
SC = SC->getNextSwitchCase()) {
// ... more code ...
}
```
This is clearly an UB. This causes non-deterministic crashes when
ClangSA analyzes some code with CTU. See the below report by valgrind
(the whole valgrind output is attached):
```
==31019== Conditional jump or move depends on uninitialised value(s)
==31019== at 0x12ED1983: clang::ASTNodeImporter::VisitSwitchStmt(clang::SwitchStmt*) (ASTImporter.cpp:6195)
==31019== by 0x12F1D509: clang::StmtVisitorBase<std::add_pointer, clang::ASTNodeImporter, llvm::Expected<clang::Stmt*>>::Visit(clang::Stmt*) (StmtNodes.inc:591)
==31019== by 0x12EE4FDF: clang::ASTImporter::Import(clang::Stmt*) (ASTImporter.cpp:8484)
==31019== by 0x12F09498: llvm::Expected<clang::Stmt*> clang::ASTNodeImporter::import<clang::Stmt>(clang::Stmt*) (ASTImporter.cpp:164)
==31019== by 0x12F3A1F5: llvm::Error clang::ASTNodeImporter::ImportArrayChecked<clang::Stmt**, clang::Stmt**>(clang::Stmt**, clang::Stmt**, clang::Stmt**) (ASTImporter.cpp:653)
==31019== by 0x12F13152: llvm::Error clang::ASTNodeImporter::ImportContainerChecked<llvm::iterator_range<clang::Stmt**>, llvm::SmallVector<clang::Stmt*, 8u> >(llvm::iterator_range<clang::Stmt**> const&, llvm::SmallVector<clang::Stmt*, 8u>&) (ASTImporter.cpp:669)
==31019== by 0x12ED099F: clang::ASTNodeImporter::VisitCompoundStmt(clang::CompoundStmt*) (ASTImporter.cpp:6077)
==31019== by 0x12F1CC2D: clang::StmtVisitorBase<std::add_pointer, clang::ASTNodeImporter, llvm::Expected<clang::Stmt*>>::Visit(clang::Stmt*) (StmtNodes.inc:73)
==31019== by 0x12EE4FDF: clang::ASTImporter::Import(clang::Stmt*) (ASTImporter.cpp:8484)
==31019== by 0x12F09498: llvm::Expected<clang::Stmt*> clang::ASTNodeImporter::import<clang::Stmt>(clang::Stmt*) (ASTImporter.cpp:164)
==31019== by 0x12F13275: clang::Stmt* clang::ASTNodeImporter::importChecked<clang::Stmt*>(llvm::Error&, clang::Stmt* const&) (ASTImporter.cpp:197)
==31019== by 0x12ED0CE6: clang::ASTNodeImporter::VisitCaseStmt(clang::CaseStmt*) (ASTImporter.cpp:6098)
```
Differential Revision: https://reviews.llvm.org/D97849
2021-03-03 20:35:13 +08:00
|
|
|
|
|
|
|
int switchWithoutCases(int);
|
|
|
|
void testSwitchStmtCrash(int x) {
|
|
|
|
switchWithoutCases(x);
|
|
|
|
}
|