Home
last modified time | relevance | path

Searched refs:StringLen (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DMachineOutliner.cpp714 unsigned StringLen, std::vector<Candidate> &CandidatesForRepeatedSeq,
829 unsigned StringLen, std::vector<Candidate> &CandidatesForRepeatedSeq, in emitNotOutliningCheaperRemark() argument
836 R << "Did not outline " << NV("Length", StringLen) << " instructions" in emitNotOutliningCheaperRemark()
909 unsigned StringLen = Leaf->ConcatLen - (unsigned)Leaf->size(); in findCandidates() local
914 if (StringLen < 2) in findCandidates()
929 unsigned EndIdx = StartIdx + StringLen - 1; in findCandidates()
965 CandidatesForRepeatedSeq.emplace_back(StartIdx, StringLen, StartIt, in findCandidates()
991 for (unsigned i = Leaf->SuffixIdx; i < Leaf->SuffixIdx + StringLen; i++) in findCandidates()
998 emitNotOutliningCheaperRemark(StringLen, CandidatesForRepeatedSeq, OF); in findCandidates()
1002 if (StringLen > MaxLen) in findCandidates()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
DWasmObjectFile.cpp109 uint32_t StringLen = readULEB128(Ctx); in readString() local
110 if (Ctx.Ptr + StringLen > Ctx.End) in readString()
113 StringRef(reinterpret_cast<const char *>(Ctx.Ptr), StringLen); in readString()
114 Ctx.Ptr += StringLen; in readString()