HomeSort by: relevance | last modified time | path
    Searched defs:Refs (Results 1 - 16 of 16) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
TypeRecordHelpers.cpp 49 SmallVector<TypeIndex, 1> Refs;
50 discoverTypeIndices(CVT, Refs);
51 return Refs.front();
TypeHashing.cpp 36 SmallVector<TiReference, 4> Refs;
37 discoverTypeIndices(RecordData, Refs);
43 for (const auto &Ref : Refs) {
TypeIndexDiscovery.cpp 70 SmallVectorImpl<TiReference> &Refs) {
86 Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1});
96 SmallVectorImpl<TiReference> &Refs) {
101 Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1});
106 SmallVectorImpl<TiReference> &Refs) {
116 SmallVectorImpl<TiReference> &Refs) {
122 Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1});
128 SmallVectorImpl<TiReference> &Refs) {
133 Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1});
138 SmallVectorImpl<TiReference> &Refs) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
ExecutionDomainFix.h 53 unsigned Refs = 0;
167 ++DV->Refs;
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransProtectedScope.cpp 27 SmallVectorImpl<DeclRefExpr *> &Refs;
30 LocalRefsCollector(SmallVectorImpl<DeclRefExpr *> &refs)
31 : Refs(refs) { }
36 Refs.push_back(E);
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);
420 ExprSet Refs;
Transforms.cpp 216 ExprSet &Refs;
218 ReferenceClear(ExprSet &refs) : Refs(refs) { }
219 bool VisitDeclRefExpr(DeclRefExpr *E) { Refs.erase(E); return true; }
224 ExprSet &Refs;
227 ReferenceCollector(ValueDecl *D, ExprSet &refs)
228 : Dcl(D), Refs(refs) { }
232 Refs.insert(E)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ModuleSummaryIndexYAML.h 141 std::vector<uint64_t> Refs;
186 io.mapOptional("Refs", summary.Refs);
219 std::vector<ValueInfo> Refs;
220 for (auto &RefGUID : FSum.Refs) {
223 Refs.push_back(ValueInfo(/*IsAnalysis=*/false, &*V.find(RefGUID)));
231 /*NumInsts=*/0, FunctionSummary::FFlags{}, /*EntryCount=*/0, Refs,
245 std::vector<uint64_t> Refs;
246 for (auto &VI : FSum->refs())
247 Refs.push_back(VI.getGUID())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonRDFOpt.cpp 200 NodeList Refs = IA.Addr->members(DFG);
201 for (NodeAddr<RefNode*> RA : Refs)
206 for (NodeAddr<RefNode*> RA : Refs) {
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
ExprMutationAnalyzer.cpp 186 const auto Refs =
189 for (const auto &RefNodes : Refs) {
517 const auto Refs = match(
531 return findDeclMutation(Refs);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ModuleSummaryAnalysis.cpp 391 std::vector<ValueInfo> Refs;
437 Refs = RefEdges.takeVector();
439 Refs[RefCnt].setReadOnly();
441 for (; RefCnt < Refs.size(); ++RefCnt)
442 Refs[RefCnt].setWriteOnly();
444 Refs = RefEdges.takeVector();
473 Flags, NumInsts, FunFlags, /*EntryCount=*/0, std::move(Refs),
808 llvm::all_of(Summary->refs(), [&](const ValueInfo &VI) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RDFLiveness.cpp 379 NodeList Refs = I.Addr->members(DFG);
381 // Scan all the refs in I aliased to RefRR, and return the one that
383 for (NodeAddr<RefNode*> R : Refs) {
RDFGraph.cpp 957 // Link all the refs. This will recursively traverse the dominator tree.
1129 NodeList Refs;
1132 Refs.push_back(RA);
1135 return Refs;
1428 // First, remove all R in Refs in such that there exists T in Refs
1429 // such that T covers R. In other words, only leave those refs that
1451 // Sort the refs so that the phis will be created in a deterministic order.
1539 NodeList Refs = PA.Addr->members(*this);
1540 if (HasUsedDef(Refs))
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-lto/
llvm-lto.cpp 343 unsigned Calls = 0, Refs = 0, Functions = 0, Alias = 0, Globals = 0;
346 Refs += Summary->refs().size();
359 << " globals) and " << (Calls + Refs) << " edges (" << Refs
360 << " refs and " << Calls << " calls)\n";
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 5508 return error("Invalid function metadata: outgoing forward refs");
6136 static void setSpecialRefs(std::vector<ValueInfo> &Refs, unsigned ROCnt,
6138 // Readonly and writeonly refs are in the end of the refs list.
6139 assert(ROCnt + WOCnt <= Refs.size());
6140 unsigned FirstWORef = Refs.size() - WOCnt;
6143 Refs[RefNo].setReadOnly();
6144 for (; RefNo < Refs.size(); ++RefNo)
6145 Refs[RefNo].setWriteOnly();
6277 std::vector<ValueInfo> Refs = makeRefList
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
MasmParser.cpp 1361 SmallVector<StringRef, 1> Refs;
1369 Refs.emplace_back(Start, getTok().getLoc().getPointer() - Start);
1379 Refs.emplace_back(Start, getTok().getLoc().getPointer() - Start);
1380 return Refs;
1384 SmallVector<StringRef, 1> Refs = parseStringRefsTo(EndTok);
1386 for (StringRef S : Refs) {

Completed in 87 milliseconds