컴파일 타임 / 정적 분석 시간에 감지하는 몇 가지 간단한 예 :
RHEL7 호스트에서 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
clang++ 3.7.1
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.
Clang Static Analyzer는 std::unique_ptr
통과하지 못한 경우도 감지 할 수 있습니다<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.
이것을 clang, 테스트 및 내가 찾은 버그에 추가 한 작업에 대한 링크로 아래를 업데이트하십시오.
이것은 reviews.llvm.org/D4661- "일치하지 않는 '신규'와 '삭제'사용을 감지 하여 clang에 추가되었습니다 .
테스트는 테스트 / 분석 / 미스 매치 된 Deallocator-checker-test.mm에 있습니다.
이 열린 버그를 발견했습니다-bugs.llvm.org/show_bug.cgi?id=24819