Alcuni banali esempi di rilevamento in fase di compilazione / analisi statica:
Su un host RHEL7 con cppcheck 1.77 and 1.49
> cat test.cc
#include <memory>
int main(){char* buf = new char[10];delete buf;}
http://cppcheck.sourceforge.net/
> cppcheck -x c++ test.cc
Checking test.cc ...
[test.cc:2]: (error) Mismatching allocation and deallocation: buf
Con clang++ 3.7.1
su RHEL7
> clang++ --analyze -x c++ test.cc
test.cc:2:37: warning: Memory allocated by 'new[]' should be deallocated by
'delete[]', not 'delete'
int main(){char* buf = new char[10];delete buf;}
^~~~~~~~~~
1 warning generated.
L'analizzatore statico Clang può anche rilevare quando std::unique_ptr
non viene passato<char[]>
> cat test2.cc
#include <memory>
int main(){std::unique_ptr<char> buf(new char[10]);}
https://clang-analyzer.llvm.org/
> clang++ --analyze -x c++ -std=c++11 test2.cc
In file included from test2.cc:1:
In file included from /opt/rh/devtoolset-4/root/usr/lib/gcc/x86_64-redhat-linux/5.3.1/
../../../../include/c++/5.3.1/memory:81:
/opt/rh/devtoolset-4/root/usr/lib/gcc/x86_64-redhat-linux/5.3.1/
../../../../include/c++/5.3.1/bits/unique_ptr.h:76:2:
warning: Memory allocated by
'new[]' should be deallocated by 'delete[]', not 'delete'
delete __ptr;
^~~~~~~~~~~~
1 warning generated.
Aggiorna di seguito con un link al lavoro che ha aggiunto questo a clang, i test e un bug che ho trovato.
Questo è stato aggiunto al clang con recensioni.llvm.org/D4661 - "Rileva gli usi 'new' e 'delete' non corrispondenti" .
I test sono in test / Analisi / Mancata corrispondenzaDeallocator-checker-test.mm
Ho trovato questo bug aperto - bugs.llvm.org/show_bug.cgi?id=24819