index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
StaticAnalyzer
/
Core
/
ExprEngineCXX.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add missing semicolon.
Simon Pilgrim
2018-08-01
1
-1
/
+1
*
Replace 'FALL-THROUGH' comment with LLVM_FALLTHROUGH to silence warning. NFCI.
Simon Pilgrim
2018-08-01
1
-1
/
+1
*
[CFG] [analyzer] Implement function argument construction contexts.
Artem Dergachev
2018-07-31
1
-11
/
+32
*
[analyzer] Add support for pre-C++17 copy elision.
Artem Dergachev
2018-06-28
1
-4
/
+43
*
[CFG] [analyzer] Simplify lifetime-extended temporary construction contexts.
Artem Dergachev
2018-06-28
1
-8
/
+1
*
[analyzer] Re-enable lifetime extension for temporaries without destructors.
Artem Dergachev
2018-06-28
1
-9
/
+7
*
[CFG] [analyzer] Add construction contexts that explain pre-C++17 copy elision.
Artem Dergachev
2018-06-28
1
-1
/
+5
*
[analyzer] [NFC] A convenient getter for getting a current stack frame
George Karpenkov
2018-06-27
1
-4
/
+4
*
[analyzer] Re-enable C++17-specific RVO construction contexts.
Artem Dergachev
2018-06-14
1
-16
/
+6
*
[analyzer] Re-enable C++17-specific variable and member construction contexts.
Artem Dergachev
2018-06-14
1
-3
/
+3
*
[analyzer] Track class member initializer constructors path-sensitively.
Artem Dergachev
2018-06-14
1
-29
/
+1
*
[analyzer] pr37270: Track constructor target region, even if just a variable.
Artem Dergachev
2018-06-14
1
-3
/
+5
*
[analyzer] NFC: Merge code for finding and tracking construction target.
Artem Dergachev
2018-06-14
1
-46
/
+86
*
[analyzer] Re-enable constructors when lifetime extension through fields occurs.
Artem Dergachev
2018-06-04
1
-14
/
+5
*
[analyzer] NFC: Track all constructed objects in a single state trait.
Artem Dergachev
2018-06-01
1
-33
/
+34
*
[analyzer] pr18953: Split C++ zero-initialization from default initialization.
Artem Dergachev
2018-05-04
1
-4
/
+1
*
Track the result of evaluating a computed noexcept specification on the
Richard Smith
2018-05-03
1
-2
/
+2
*
[analyzer] Fix a crash on lifetime extension through aggregate initialization.
Artem Dergachev
2018-04-25
1
-6
/
+17
*
Fix typos in clang
Alexander Kornienko
2018-04-06
1
-1
/
+1
*
[CFG] [analyzer] Avoid modeling C++17 constructors that aren't fully supported.
Artem Dergachev
2018-03-30
1
-6
/
+17
*
[CFG] [analyzer] Add C++17-specific ctor-initializer construction contexts.
Artem Dergachev
2018-03-22
1
-1
/
+2
*
[analyzer] Remove an assertion that doesn't hold in C++17.
Artem Dergachev
2018-03-22
1
-0
/
+4
*
[CFG] [analyzer] Add C++17-specific variable and return construction contexts.
Artem Dergachev
2018-03-22
1
-1
/
+5
*
[analyzer] NFC: Move the code for setting temp object lifetime into method.
Artem Dergachev
2018-03-12
1
-61
/
+1
*
[analyzer] Destroy and lifetime-extend inlined function return values properly.
Artem Dergachev
2018-03-12
1
-29
/
+58
*
[analyzer] Fix trivial copy for empty objects.
Artem Dergachev
2018-02-27
1
-0
/
+11
*
[analyzer] Disable constructor inlining when lifetime extending through a field.
Artem Dergachev
2018-02-27
1
-0
/
+12
*
[CFG] NFC: Refactor ConstructionContext into a finite set of cases.
Artem Dergachev
2018-02-27
1
-54
/
+76
*
[analyzer] Introduce correct lifetime extension behavior in simple cases.
Artem Dergachev
2018-02-27
1
-2
/
+13
*
Silence some -Wunused-variable warnings; NFC.
Aaron Ballman
2018-02-15
1
-2
/
+2
*
[analyzer] Compute the correct this-region for temporary destructors.
Artem Dergachev
2018-02-15
1
-12
/
+30
*
[analyzer] NFC: Eliminate ParentMap lookup in mayInlineCallKind().
Artem Dergachev
2018-02-15
1
-4
/
+1
*
[analyzer] Inline constructors for destroyable temporaries.
Artem Dergachev
2018-02-15
1
-0
/
+3
*
[analyzer] Decide on inlining destructors via EvalCallOptions.
Artem Dergachev
2018-02-15
1
-31
/
+11
*
[analyzer] Allow inlining constructors into return values.
Artem Dergachev
2018-02-15
1
-1
/
+12
*
[analyzer] NFC: Remove dead checks when computing DeclStmt construction region.
Artem Dergachev
2018-02-15
1
-9
/
+6
*
[analyzer] NFC: Assert that our fix for noreturn destructors keeps working.
Artem Dergachev
2018-02-10
1
-5
/
+15
*
[analyzer] NFC: Use CFG construction contexts instead of homemade lookahead.
Artem Dergachev
2018-02-10
1
-59
/
+11
*
[analyzer] Don't communicate evaluation failures through memregion hierarchy.
Artem Dergachev
2018-02-01
1
-15
/
+28
*
[analyzer] Assume that the allocated value is non-null before construction.
Artem Dergachev
2018-01-24
1
-17
/
+32
*
[analyzer] operator new: Add a new checker callback, check::NewAllocator.
Artem Dergachev
2018-01-17
1
-2
/
+7
*
[analyzer] operator new: Fix memory space for the returned region.
Artem Dergachev
2018-01-17
1
-17
/
+7
*
[analyzer] operator new: Model the cast of returned pointer into object type.
Artem Dergachev
2018-01-17
1
-10
/
+31
*
[analyzer] operator new: Use the correct region for the constructor.
Artem Dergachev
2018-01-17
1
-27
/
+64
*
[analyzer] Fix a crash during C++17 aggregate construction of base objects.
Artem Dergachev
2017-12-20
1
-0
/
+18
*
[analyzer] Enforce super-region classes for various memory regions.
Artem Dergachev
2017-04-13
1
-1
/
+2
*
[analyzer] Add LocationContext as a parameter to checkRegionChanges
Anna Zaks
2017-01-13
1
-3
/
+3
*
[analyzer] Add sink after construction of temporary with no-return destructor.
Devin Coughlin
2016-12-19
1
-0
/
+24
*
[analyzer] Allow undefined values in performTrivialCopy.
Artem Dergachev
2016-10-31
1
-1
/
+1
*
[analyzer][test commit] ExprEngine.cpp: Remove training whitespace; NFC
Aleksei Sidorin
2016-09-01
1
-2
/
+2
[next]