Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp3495 auto DotPosition = Name.find('.'); in tryParseMatrixRegister() local
3496 if (DotPosition != StringRef::npos) { in tryParseMatrixRegister()
3498 parseVectorKind(Name.drop_front(DotPosition), RegKind::Matrix); in tryParseMatrixRegister()
3521 size_t DotPosition = Name.find('.'); in tryParseMatrixRegister() local
3522 assert(DotPosition != StringRef::npos && "Unexpected register"); in tryParseMatrixRegister()
3524 StringRef Head = Name.take_front(DotPosition); in tryParseMatrixRegister()
3525 StringRef Tail = Name.drop_front(DotPosition); in tryParseMatrixRegister()
4334 size_t DotPosition = Name.find('.'); in tryParseMatrixTileList() local
4335 if (DotPosition == StringRef::npos) in tryParseMatrixTileList()
4342 StringRef Tail = Name.drop_front(DotPosition); in tryParseMatrixTileList()