Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Support/
H A DRISCVVIntrinsicUtils.cpp409 llvm::StringRef PrototypeDescriptorStr) { in parsePrototypeDescriptor() argument
414 if (PrototypeDescriptorStr.empty()) in parsePrototypeDescriptor()
418 auto PType = PrototypeDescriptorStr.back(); in parsePrototypeDescriptor()
464 PrototypeDescriptorStr = PrototypeDescriptorStr.drop_back(); in parsePrototypeDescriptor()
467 if (PrototypeDescriptorStr.starts_with("(")) { in parsePrototypeDescriptor()
470 size_t Idx = PrototypeDescriptorStr.find(')'); in parsePrototypeDescriptor()
472 StringRef ComplexType = PrototypeDescriptorStr.slice(1, Idx); in parsePrototypeDescriptor()
473 PrototypeDescriptorStr = PrototypeDescriptorStr.drop_front(Idx + 1); in parsePrototypeDescriptor()
474 assert(!PrototypeDescriptorStr.contains('(') && in parsePrototypeDescriptor()
636 for (char I : PrototypeDescriptorStr) { in parsePrototypeDescriptor()