Home | History | Annotate | Download | only in Checkers

Lines Matching full:live

11 //  stores to variables that are no longer live.
146 bool isLive(const LiveVariables::LivenessValues &Live, const VarDecl *D) {
147 if (Live.isLive(D))
156 // Treat all VarDecls that occur in EH code as being "always live"
208 const LiveVariables::LivenessValues &Live) {
217 if (!isLive(Live, VD) &&
227 const LiveVariables::LivenessValues& Live) {
229 CheckVarDecl(VD, DR, Val, dsk, Live);
256 const LiveVariables::LivenessValues &Live) {
294 CheckVarDecl(VD, DR, B->getRHS(), dsk, Live);
308 CheckDeclRef(DR, U, DeadIncrement, Live);
312 // expressions that are not live (never used).
344 if (!isLive(Live, V) && V->getAttr<UnusedAttr>() == 0) {