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:__anon16898::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:__anon16892::AutoreleasePoolRewriter::PoolVarInfo
H A DTransforms.cpp225 ExprSet &Refs; member in class:__anon16905::ReferenceClear
227 ReferenceClear(ExprSet &refs) : Refs(refs) { }
228 bool VisitDeclRefExpr(DeclRefExpr *E) { Refs.erase(E); return true; }
233 ExprSet &Refs; member in class:__anon16905::ReferenceCollector
237 : Dcl(D), Refs(refs) { }
241 Refs.insert(E);
/external/llvm/include/llvm/Analysis/
H A DAliasSetTracker.h121 /// both. The lattice goes from "NoModRef" to either Refs or Mods, then to
125 NoModRef = 0, Refs = 1, // Ref = bit 1 enumerator in enum:llvm::AliasSet::AccessType
155 bool isRef() const { return AccessTy & Refs; }
/external/llvm/lib/AsmParser/
H A DLLParser.cpp197 std::vector<std::pair<ValID, GlobalValue*> > &Refs,
200 for (unsigned i = 0, e = Refs.size(); i != e; ++i) {
203 if (Refs[i].first.Kind == ValID::t_LocalName)
204 Res = PFS->GetBB(Refs[i].first.StrVal, Refs[i].first.Loc);
206 Res = PFS->GetBB(Refs[i].first.UIntVal, Refs[i].first.Loc);
207 } else if (Refs[i].first.Kind == ValID::t_LocalID) {
208 return Error(Refs[i].first.Loc,
212 TheFn->getValueSymbolTable().lookup(Refs[
196 ResolveForwardRefBlockAddresses(Function *TheFn, std::vector<std::pair<ValID, GlobalValue*> > &Refs, PerFunctionState *PFS) argument
[all...]
/external/llvm/lib/CodeGen/
H A DExecutionDepsFix.cpp55 unsigned Refs; member in struct:__anon24906::DomainValue
99 DomainValue() : Refs(0) { clear(); }
177 if (DV) ++DV->Refs;
216 assert(dv->Refs == 0 && "Reference count wasn't cleared");
225 assert(DV->Refs && "Bad DomainValue");
226 if (--DV->Refs)
315 if (LiveRegs && dv->Refs > 1)

Completed in 229 milliseconds