The GDMIndex functions return a pointer that's used as a key for looking up data, but addresses of local statics defined in header files aren't the same across shared library boundaries and the result is that analyzer plugins can't access this data. Event types are uniqued by using the addresses of a local static defined in a header files, but it isn't the same across shared library boundaries and plugins can't currently handle ImplicitNullDerefEvents. Patches by Joe Ranieri! Differential Revision: https://reviews.llvm.org/D52905 Differential Revision: https://reviews.llvm.org/D52906 llvm-svn: 344823
24 lines
641 B
C++
24 lines
641 B
C++
//== TaintManager.cpp ------------------------------------------ -*- C++ -*--=//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h"
|
|
|
|
using namespace clang;
|
|
using namespace ento;
|
|
|
|
void *ProgramStateTrait<TaintMap>::GDMIndex() {
|
|
static int index = 0;
|
|
return &index;
|
|
}
|
|
|
|
void *ProgramStateTrait<DerivedSymTaint>::GDMIndex() {
|
|
static int index;
|
|
return &index;
|
|
}
|