Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp3588 auto DotPosition = Name.find('.'); in tryParseMatrixRegister() local
3589 if (DotPosition != StringRef::npos) { in tryParseMatrixRegister()
3591 parseVectorKind(Name.drop_front(DotPosition), RegKind::Matrix); in tryParseMatrixRegister()
3614 size_t DotPosition = Name.find('.'); in tryParseMatrixRegister() local
3615 assert(DotPosition != StringRef::npos && "Unexpected register"); in tryParseMatrixRegister()
3617 StringRef Head = Name.take_front(DotPosition); in tryParseMatrixRegister()
3618 StringRef Tail = Name.drop_front(DotPosition); in tryParseMatrixRegister()
4502 size_t DotPosition = Name.find('.'); in tryParseMatrixTileList() local
4503 if (DotPosition == StringRef::npos) in tryParseMatrixTileList()
4510 StringRef Tail = Name.drop_front(DotPosition); in tryParseMatrixTileList()