diff options
author | myrtle <gatecat@ds0.me> | 2023-02-10 13:41:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-10 13:41:36 +0100 |
commit | ba3801e010cf01a702c4829a66e955ab2ddc4423 (patch) | |
tree | 74474bd8c46ec7f1e853fa4b06ab12d3f18a60e3 /generic/viaduct/fabulous/fabric_parsing.h | |
parent | 1226fad4f61e8e1696eccdf23c56ded61551f2ab (diff) | |
parent | eb70e950796ccb6b1d44fff2240fe30da5eecf7b (diff) | |
download | nextpnr-ba3801e010cf01a702c4829a66e955ab2ddc4423.tar.gz nextpnr-ba3801e010cf01a702c4829a66e955ab2ddc4423.tar.bz2 nextpnr-ba3801e010cf01a702c4829a66e955ab2ddc4423.zip |
Merge pull request #1097 from YosysHQ/gatecat/fab-bram-fix
fabulous: Improve names for BRAM bels
Diffstat (limited to 'generic/viaduct/fabulous/fabric_parsing.h')
-rw-r--r-- | generic/viaduct/fabulous/fabric_parsing.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/generic/viaduct/fabulous/fabric_parsing.h b/generic/viaduct/fabulous/fabric_parsing.h index 3fa263ca..841b2465 100644 --- a/generic/viaduct/fabulous/fabric_parsing.h +++ b/generic/viaduct/fabulous/fabric_parsing.h @@ -68,6 +68,14 @@ struct parser_view return npos; } + size_t rfind(char tok) const + { + for (size_t i = m_length; i > 0; i--) + if (m_ptr[i - 1] == tok) + return i - 1; + return npos; + } + IdString to_id(const BaseCtx *ctx) { // This isn't really ideal, let's hope one day we can move to C++20 and have proper string_views instead :3 @@ -133,6 +141,12 @@ struct parser_view NPNR_ASSERT(pos != npos); return std::make_pair(parser_view(m_ptr, pos), parser_view(m_ptr + pos + 1, m_length - (pos + 1))); } + std::pair<parser_view, parser_view> rsplit(char delim) const + { + size_t pos = rfind(delim); + NPNR_ASSERT(pos != npos); + return std::make_pair(parser_view(m_ptr, pos), parser_view(m_ptr + pos + 1, m_length - (pos + 1))); + } }; struct CsvParser |