HomeSort by relevance Sort by last modified time
    Searched refs:Refs (Results 1 - 11 of 11) sorted by null

  /external/clang/lib/ARCMigrate/
Transforms.cpp 188 ExprSet &Refs;
190 ReferenceClear(ExprSet &refs) : Refs(refs) { }
191 bool VisitDeclRefExpr(DeclRefExpr *E) { Refs.erase(E); return true; }
192 bool VisitBlockDeclRefExpr(BlockDeclRefExpr *E) { Refs.erase(E); return true; }
197 ExprSet &Refs;
200 ReferenceCollector(ValueDecl *D, ExprSet &refs)
201 : Dcl(D), Refs(refs) { }
    [all...]
TransAutoreleasePool.cpp 93 clearRefsIn(info.Dcl, info.Refs);
98 clearRefsIn(*scope.Begin, info.Refs);
99 clearRefsIn(*scope.End, info.Refs);
100 clearRefsIn(scope.Releases.begin(), scope.Releases.end(), info.Refs);
105 if (info.Refs.empty())
175 collectRefs(VD, S, info.Refs);
424 ExprSet Refs;
  /external/llvm/lib/CodeGen/
ExecutionDepsFix.cpp 53 unsigned Refs;
98 Refs = AvailableDomains = Dist = 0;
195 assert(LiveRegs[rx]->Refs && "Bad refcount");
196 if (--LiveRegs[rx]->Refs == 0) Recycle(LiveRegs[rx]);
199 if (dv) ++dv->Refs;
209 if (LiveRegs[rx]->Refs == 1 && !LiveRegs[rx]->isCollapsed())
248 if (LiveRegs && dv->Refs > 1)
StackSlotColoring.cpp 52 STATISTIC(NumRegRepl, "Number of stack slot refs replaced with reg refs");
502 SmallVector<MachineOperand*, 4> Refs;
531 Refs.push_back(&MO);
545 for (unsigned i = 0, e = Refs.size(); i != e; ++i)
546 Refs[i]->setReg(NewReg);
552 Refs.push_back(Uses[i]);
VirtRegRewriter.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 123 /// both. The lattice goes from "NoModRef" to either Refs or Mods, then to
127 NoModRef = 0, Refs = 1, // Ref = bit 1
157 bool isRef() const { return AccessTy & Refs; }
  /external/llvm/include/llvm/ADT/
IntervalMap.h     [all...]
  /external/llvm/lib/Analysis/
AliasSetTracker.cpp 131 AccessTy |= Refs;
299 AliasSet::AccessType ATy = AliasSet::Refs;
555 case Refs : OS << "Ref "; break;
  /external/llvm/lib/AsmParser/
LLParser.cpp 132 std::vector<std::pair<ValID, GlobalValue*> > &Refs,
135 for (unsigned i = 0, e = Refs.size(); i != e; ++i) {
138 if (Refs[i].first.Kind == ValID::t_LocalName)
139 Res = PFS->GetBB(Refs[i].first.StrVal, Refs[i].first.Loc);
141 Res = PFS->GetBB(Refs[i].first.UIntVal, Refs[i].first.Loc);
142 } else if (Refs[i].first.Kind == ValID::t_LocalID) {
143 return Error(Refs[i].first.Loc,
147 TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal))
    [all...]
LLParser.h 376 std::vector<std::pair<ValID, GlobalValue*> > &Refs,
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp     [all...]

Completed in 390 milliseconds