Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DDebuggerSupportPlugin.cpp145 size_t SepPos = Sec.getName().find(','); in startSynthesis() local
146 if (SepPos > 16 || (Sec.getName().size() - (SepPos + 1) > 16)) { in startSynthesis()
155 DebugSecInfos.push_back({&Sec, Sec.getName().substr(0, SepPos), in startSynthesis()
156 Sec.getName().substr(SepPos + 1), 0, in startSynthesis()
306 size_t SepPos = Sec->getName().find(','); in completeSynthesisAndRegister() local
310 if ((SepPos == StringRef::npos && Sec->getName().size() <= 16)) { in completeSynthesisAndRegister()
314 } else if (SepPos < 16 && (Sec->getName().size() - (SepPos + 1) <= 16)) { in completeSynthesisAndRegister()
316 SegName = Sec->getName().substr(0, SepPos); in completeSynthesisAndRegister()
317 SecName = Sec->getName().substr(SepPos + 1); in completeSynthesisAndRegister()