Searched defs:Refs (Results 1 - 6 of 6) sorted by relevance

/external/clang/lib/ARCMigrate/
H A DTransProtectedScope.cpp27 SmallVectorImpl<DeclRefExpr *> &Refs; member in class:__anon3590::LocalRefsCollector
31 : Refs(refs) { }
36 Refs.push_back(E);
H A DTransAutoreleasePool.cpp94 clearRefsIn(info.Dcl, info.Refs);
99 clearRefsIn(*scope.Begin, info.Refs);
100 clearRefsIn(*scope.End, info.Refs);
101 clearRefsIn(scope.Releases.begin(), scope.Releases.end(), info.Refs);
106 if (info.Refs.empty())
176 collectRefs(VD, S, info.Refs);
421 ExprSet Refs; member in struct:__anon3584::AutoreleasePoolRewriter::PoolVarInfo
H A DTransforms.cpp219 ExprSet &Refs; member in class:__anon3597::ReferenceClear
221 ReferenceClear(ExprSet &refs) : Refs(refs) { }
222 bool VisitDeclRefExpr(DeclRefExpr *E) { Refs.erase(E); return true; }
227 ExprSet &Refs; member in class:__anon3597::ReferenceCollector
231 : Dcl(D), Refs(refs) { }
235 Refs.insert(E);
/external/llvm/include/llvm/Analysis/
H A DAliasSetTracker.h122 /// both. The lattice goes from "NoModRef" to either Refs or Mods, then to
126 NoModRef = 0, Refs = 1, // Ref = bit 1 enumerator in enum:llvm::AliasSet::AccessType
156 bool isRef() const { return AccessTy & Refs; }
/external/llvm/lib/AsmParser/
H A DLLParser.cpp185 std::vector<std::pair<ValID, GlobalValue*> > &Refs,
188 for (unsigned i = 0, e = Refs.size(); i != e; ++i) {
191 if (Refs[i].first.Kind == ValID::t_LocalName)
192 Res = PFS->GetBB(Refs[i].first.StrVal, Refs[i].first.Loc);
194 Res = PFS->GetBB(Refs[i].first.UIntVal, Refs[i].first.Loc);
195 } else if (Refs[i].first.Kind == ValID::t_LocalID) {
196 return Error(Refs[i].first.Loc,
200 TheFn->getValueSymbolTable().lookup(Refs[
184 ResolveForwardRefBlockAddresses(Function *TheFn, std::vector<std::pair<ValID, GlobalValue*> > &Refs, PerFunctionState *PFS) argument
[all...]
/external/llvm/lib/CodeGen/
H A DExecutionDepsFix.cpp53 unsigned Refs; member in struct:__anon9455::DomainValue
97 DomainValue() : Refs(0) { clear(); }
169 if (DV) ++DV->Refs;
206 assert(dv->Refs == 0 && "Reference count wasn't cleared");
215 assert(DV->Refs && "Bad DomainValue");
216 if (--DV->Refs)
305 if (LiveRegs && dv->Refs > 1)

Completed in 172 milliseconds