Lines Matching refs:l
469 syntax_error (const location_type& l, const std::string& m) in syntax_error()
471 , location (l) in syntax_error()
862 basic_symbol (typename Base::kind_type t, location_type&& l) in basic_symbol()
864 , location (std::move (l)) in basic_symbol()
867 basic_symbol (typename Base::kind_type t, const location_type& l) in basic_symbol()
869 , location (l) in basic_symbol()
873 basic_symbol (typename Base::kind_type t, bool&& v, location_type&& l) in basic_symbol()
876 , location (std::move (l)) in basic_symbol()
879 basic_symbol (typename Base::kind_type t, const bool& v, const location_type& l) in basic_symbol()
882 , location (l) in basic_symbol()
886 basic_symbol (typename Base::kind_type t, enum condition&& v, location_type&& l) in basic_symbol()
889 , location (std::move (l)) in basic_symbol()
892 basic_symbol (typename Base::kind_type t, const enum condition& v, const location_type& l) in basic_symbol()
895 , location (l) in basic_symbol()
899 basic_symbol (typename Base::kind_type t, enum fifo_config&& v, location_type&& l) in basic_symbol()
902 , location (std::move (l)) in basic_symbol()
905 basic_symbol (typename Base::kind_type t, const enum fifo_config& v, const location_type& l) in basic_symbol()
908 , location (l) in basic_symbol()
912 basic_symbol (typename Base::kind_type t, enum in_out_set&& v, location_type&& l) in basic_symbol()
915 , location (std::move (l)) in basic_symbol()
918 basic_symbol (typename Base::kind_type t, const enum in_out_set& v, const location_type& l) in basic_symbol()
921 , location (l) in basic_symbol()
925 basic_symbol (typename Base::kind_type t, enum irq&& v, location_type&& l) in basic_symbol()
928 , location (std::move (l)) in basic_symbol()
931 basic_symbol (typename Base::kind_type t, const enum irq& v, const location_type& l) in basic_symbol()
934 , location (l) in basic_symbol()
938 basic_symbol (typename Base::kind_type t, enum mov_op&& v, location_type&& l) in basic_symbol()
941 , location (std::move (l)) in basic_symbol()
944 basic_symbol (typename Base::kind_type t, const enum mov_op& v, const location_type& l) in basic_symbol()
947 , location (l) in basic_symbol()
951 basic_symbol (typename Base::kind_type t, extended_mov&& v, location_type&& l) in basic_symbol()
954 , location (std::move (l)) in basic_symbol()
957 basic_symbol (typename Base::kind_type t, const extended_mov& v, const location_type& l) in basic_symbol()
960 , location (l) in basic_symbol()
964 basic_symbol (typename Base::kind_type t, float&& v, location_type&& l) in basic_symbol()
967 , location (std::move (l)) in basic_symbol()
970 basic_symbol (typename Base::kind_type t, const float& v, const location_type& l) in basic_symbol()
973 , location (l) in basic_symbol()
977 basic_symbol (typename Base::kind_type t, int&& v, location_type&& l) in basic_symbol()
980 , location (std::move (l)) in basic_symbol()
983 basic_symbol (typename Base::kind_type t, const int& v, const location_type& l) in basic_symbol()
986 , location (l) in basic_symbol()
990 basic_symbol (typename Base::kind_type t, std::shared_ptr<instruction>&& v, location_type&& l) in basic_symbol()
993 , location (std::move (l)) in basic_symbol()
996 …_symbol (typename Base::kind_type t, const std::shared_ptr<instruction>& v, const location_type& l) in basic_symbol()
999 , location (l) in basic_symbol()
1003 basic_symbol (typename Base::kind_type t, std::shared_ptr<resolvable>&& v, location_type&& l) in basic_symbol()
1006 , location (std::move (l)) in basic_symbol()
1009 …c_symbol (typename Base::kind_type t, const std::shared_ptr<resolvable>& v, const location_type& l) in basic_symbol()
1012 , location (l) in basic_symbol()
1016 basic_symbol (typename Base::kind_type t, std::shared_ptr<symbol>&& v, location_type&& l) in basic_symbol()
1019 , location (std::move (l)) in basic_symbol()
1022 …basic_symbol (typename Base::kind_type t, const std::shared_ptr<symbol>& v, const location_type& l) in basic_symbol()
1025 , location (l) in basic_symbol()
1029 basic_symbol (typename Base::kind_type t, std::shared_ptr<wait_source>&& v, location_type&& l) in basic_symbol()
1032 , location (std::move (l)) in basic_symbol()
1035 …_symbol (typename Base::kind_type t, const std::shared_ptr<wait_source>& v, const location_type& l) in basic_symbol()
1038 , location (l) in basic_symbol()
1042 basic_symbol (typename Base::kind_type t, std::string&& v, location_type&& l) in basic_symbol()
1045 , location (std::move (l)) in basic_symbol()
1048 basic_symbol (typename Base::kind_type t, const std::string& v, const location_type& l) in basic_symbol()
1051 , location (l) in basic_symbol()
1055 basic_symbol (typename Base::kind_type t, uint&& v, location_type&& l) in basic_symbol()
1058 , location (std::move (l)) in basic_symbol()
1061 basic_symbol (typename Base::kind_type t, const uint& v, const location_type& l) in basic_symbol()
1064 , location (l) in basic_symbol()
1255 symbol_type (int tok, location_type l) in symbol_type()
1256 : super_type(token_type (tok), std::move (l)) in symbol_type()
1261 symbol_type (int tok, const location_type& l) in symbol_type()
1262 : super_type(token_type (tok), l) in symbol_type()
1268 symbol_type (int tok, float v, location_type l) in symbol_type()
1269 : super_type(token_type (tok), std::move (v), std::move (l)) in symbol_type()
1274 symbol_type (int tok, const float& v, const location_type& l) in symbol_type()
1275 : super_type(token_type (tok), v, l) in symbol_type()
1281 symbol_type (int tok, int v, location_type l) in symbol_type()
1282 : super_type(token_type (tok), std::move (v), std::move (l)) in symbol_type()
1287 symbol_type (int tok, const int& v, const location_type& l) in symbol_type()
1288 : super_type(token_type (tok), v, l) in symbol_type()
1294 symbol_type (int tok, std::string v, location_type l) in symbol_type()
1295 : super_type(token_type (tok), std::move (v), std::move (l)) in symbol_type()
1300 symbol_type (int tok, const std::string& v, const location_type& l) in symbol_type()
1301 : super_type(token_type (tok), v, l) in symbol_type()
1338 void set_debug_level (debug_level_type l);
1357 make_END (location_type l) in make_END() argument
1359 return symbol_type (token::TOK_END, std::move (l)); in make_END()
1364 make_END (const location_type& l) in make_END() argument
1366 return symbol_type (token::TOK_END, l); in make_END()
1372 make_YYerror (location_type l) in make_YYerror() argument
1374 return symbol_type (token::TOK_YYerror, std::move (l)); in make_YYerror()
1379 make_YYerror (const location_type& l) in make_YYerror() argument
1381 return symbol_type (token::TOK_YYerror, l); in make_YYerror()
1387 make_YYUNDEF (location_type l) in make_YYUNDEF() argument
1389 return symbol_type (token::TOK_YYUNDEF, std::move (l)); in make_YYUNDEF()
1394 make_YYUNDEF (const location_type& l) in make_YYUNDEF() argument
1396 return symbol_type (token::TOK_YYUNDEF, l); in make_YYUNDEF()
1402 make_NEWLINE (location_type l) in make_NEWLINE() argument
1404 return symbol_type (token::TOK_NEWLINE, std::move (l)); in make_NEWLINE()
1409 make_NEWLINE (const location_type& l) in make_NEWLINE() argument
1411 return symbol_type (token::TOK_NEWLINE, l); in make_NEWLINE()
1417 make_COMMA (location_type l) in make_COMMA() argument
1419 return symbol_type (token::TOK_COMMA, std::move (l)); in make_COMMA()
1424 make_COMMA (const location_type& l) in make_COMMA() argument
1426 return symbol_type (token::TOK_COMMA, l); in make_COMMA()
1432 make_COLON (location_type l) in make_COLON() argument
1434 return symbol_type (token::TOK_COLON, std::move (l)); in make_COLON()
1439 make_COLON (const location_type& l) in make_COLON() argument
1441 return symbol_type (token::TOK_COLON, l); in make_COLON()
1447 make_LPAREN (location_type l) in make_LPAREN() argument
1449 return symbol_type (token::TOK_LPAREN, std::move (l)); in make_LPAREN()
1454 make_LPAREN (const location_type& l) in make_LPAREN() argument
1456 return symbol_type (token::TOK_LPAREN, l); in make_LPAREN()
1462 make_RPAREN (location_type l) in make_RPAREN() argument
1464 return symbol_type (token::TOK_RPAREN, std::move (l)); in make_RPAREN()
1469 make_RPAREN (const location_type& l) in make_RPAREN() argument
1471 return symbol_type (token::TOK_RPAREN, l); in make_RPAREN()
1477 make_LBRACKET (location_type l) in make_LBRACKET() argument
1479 return symbol_type (token::TOK_LBRACKET, std::move (l)); in make_LBRACKET()
1484 make_LBRACKET (const location_type& l) in make_LBRACKET() argument
1486 return symbol_type (token::TOK_LBRACKET, l); in make_LBRACKET()
1492 make_RBRACKET (location_type l) in make_RBRACKET() argument
1494 return symbol_type (token::TOK_RBRACKET, std::move (l)); in make_RBRACKET()
1499 make_RBRACKET (const location_type& l) in make_RBRACKET() argument
1501 return symbol_type (token::TOK_RBRACKET, l); in make_RBRACKET()
1507 make_PLUS (location_type l) in make_PLUS() argument
1509 return symbol_type (token::TOK_PLUS, std::move (l)); in make_PLUS()
1514 make_PLUS (const location_type& l) in make_PLUS() argument
1516 return symbol_type (token::TOK_PLUS, l); in make_PLUS()
1522 make_MINUS (location_type l) in make_MINUS() argument
1524 return symbol_type (token::TOK_MINUS, std::move (l)); in make_MINUS()
1529 make_MINUS (const location_type& l) in make_MINUS() argument
1531 return symbol_type (token::TOK_MINUS, l); in make_MINUS()
1537 make_MULTIPLY (location_type l) in make_MULTIPLY() argument
1539 return symbol_type (token::TOK_MULTIPLY, std::move (l)); in make_MULTIPLY()
1544 make_MULTIPLY (const location_type& l) in make_MULTIPLY() argument
1546 return symbol_type (token::TOK_MULTIPLY, l); in make_MULTIPLY()
1552 make_DIVIDE (location_type l) in make_DIVIDE() argument
1554 return symbol_type (token::TOK_DIVIDE, std::move (l)); in make_DIVIDE()
1559 make_DIVIDE (const location_type& l) in make_DIVIDE() argument
1561 return symbol_type (token::TOK_DIVIDE, l); in make_DIVIDE()
1567 make_OR (location_type l) in make_OR() argument
1569 return symbol_type (token::TOK_OR, std::move (l)); in make_OR()
1574 make_OR (const location_type& l) in make_OR() argument
1576 return symbol_type (token::TOK_OR, l); in make_OR()
1582 make_AND (location_type l) in make_AND() argument
1584 return symbol_type (token::TOK_AND, std::move (l)); in make_AND()
1589 make_AND (const location_type& l) in make_AND() argument
1591 return symbol_type (token::TOK_AND, l); in make_AND()
1597 make_XOR (location_type l) in make_XOR() argument
1599 return symbol_type (token::TOK_XOR, std::move (l)); in make_XOR()
1604 make_XOR (const location_type& l) in make_XOR() argument
1606 return symbol_type (token::TOK_XOR, l); in make_XOR()
1612 make_SHL (location_type l) in make_SHL() argument
1614 return symbol_type (token::TOK_SHL, std::move (l)); in make_SHL()
1619 make_SHL (const location_type& l) in make_SHL() argument
1621 return symbol_type (token::TOK_SHL, l); in make_SHL()
1627 make_SHR (location_type l) in make_SHR() argument
1629 return symbol_type (token::TOK_SHR, std::move (l)); in make_SHR()
1634 make_SHR (const location_type& l) in make_SHR() argument
1636 return symbol_type (token::TOK_SHR, l); in make_SHR()
1642 make_POST_DECREMENT (location_type l) in make_POST_DECREMENT() argument
1644 return symbol_type (token::TOK_POST_DECREMENT, std::move (l)); in make_POST_DECREMENT()
1649 make_POST_DECREMENT (const location_type& l) in make_POST_DECREMENT() argument
1651 return symbol_type (token::TOK_POST_DECREMENT, l); in make_POST_DECREMENT()
1657 make_NOT_EQUAL (location_type l) in make_NOT_EQUAL() argument
1659 return symbol_type (token::TOK_NOT_EQUAL, std::move (l)); in make_NOT_EQUAL()
1664 make_NOT_EQUAL (const location_type& l) in make_NOT_EQUAL() argument
1666 return symbol_type (token::TOK_NOT_EQUAL, l); in make_NOT_EQUAL()
1672 make_NOT (location_type l) in make_NOT() argument
1674 return symbol_type (token::TOK_NOT, std::move (l)); in make_NOT()
1679 make_NOT (const location_type& l) in make_NOT() argument
1681 return symbol_type (token::TOK_NOT, l); in make_NOT()
1687 make_REVERSE (location_type l) in make_REVERSE() argument
1689 return symbol_type (token::TOK_REVERSE, std::move (l)); in make_REVERSE()
1694 make_REVERSE (const location_type& l) in make_REVERSE() argument
1696 return symbol_type (token::TOK_REVERSE, l); in make_REVERSE()
1702 make_ASSIGN (location_type l) in make_ASSIGN() argument
1704 return symbol_type (token::TOK_ASSIGN, std::move (l)); in make_ASSIGN()
1709 make_ASSIGN (const location_type& l) in make_ASSIGN() argument
1711 return symbol_type (token::TOK_ASSIGN, l); in make_ASSIGN()
1717 make_LESSTHAN (location_type l) in make_LESSTHAN() argument
1719 return symbol_type (token::TOK_LESSTHAN, std::move (l)); in make_LESSTHAN()
1724 make_LESSTHAN (const location_type& l) in make_LESSTHAN() argument
1726 return symbol_type (token::TOK_LESSTHAN, l); in make_LESSTHAN()
1732 make_PROGRAM (location_type l) in make_PROGRAM() argument
1734 return symbol_type (token::TOK_PROGRAM, std::move (l)); in make_PROGRAM()
1739 make_PROGRAM (const location_type& l) in make_PROGRAM() argument
1741 return symbol_type (token::TOK_PROGRAM, l); in make_PROGRAM()
1747 make_WRAP_TARGET (location_type l) in make_WRAP_TARGET() argument
1749 return symbol_type (token::TOK_WRAP_TARGET, std::move (l)); in make_WRAP_TARGET()
1754 make_WRAP_TARGET (const location_type& l) in make_WRAP_TARGET() argument
1756 return symbol_type (token::TOK_WRAP_TARGET, l); in make_WRAP_TARGET()
1762 make_WRAP (location_type l) in make_WRAP() argument
1764 return symbol_type (token::TOK_WRAP, std::move (l)); in make_WRAP()
1769 make_WRAP (const location_type& l) in make_WRAP() argument
1771 return symbol_type (token::TOK_WRAP, l); in make_WRAP()
1777 make_DEFINE (location_type l) in make_DEFINE() argument
1779 return symbol_type (token::TOK_DEFINE, std::move (l)); in make_DEFINE()
1784 make_DEFINE (const location_type& l) in make_DEFINE() argument
1786 return symbol_type (token::TOK_DEFINE, l); in make_DEFINE()
1792 make_SIDE_SET (location_type l) in make_SIDE_SET() argument
1794 return symbol_type (token::TOK_SIDE_SET, std::move (l)); in make_SIDE_SET()
1799 make_SIDE_SET (const location_type& l) in make_SIDE_SET() argument
1801 return symbol_type (token::TOK_SIDE_SET, l); in make_SIDE_SET()
1807 make_WORD (location_type l) in make_WORD() argument
1809 return symbol_type (token::TOK_WORD, std::move (l)); in make_WORD()
1814 make_WORD (const location_type& l) in make_WORD() argument
1816 return symbol_type (token::TOK_WORD, l); in make_WORD()
1822 make_ORIGIN (location_type l) in make_ORIGIN() argument
1824 return symbol_type (token::TOK_ORIGIN, std::move (l)); in make_ORIGIN()
1829 make_ORIGIN (const location_type& l) in make_ORIGIN() argument
1831 return symbol_type (token::TOK_ORIGIN, l); in make_ORIGIN()
1837 make_LANG_OPT (location_type l) in make_LANG_OPT() argument
1839 return symbol_type (token::TOK_LANG_OPT, std::move (l)); in make_LANG_OPT()
1844 make_LANG_OPT (const location_type& l) in make_LANG_OPT() argument
1846 return symbol_type (token::TOK_LANG_OPT, l); in make_LANG_OPT()
1852 make_PIO_VERSION (location_type l) in make_PIO_VERSION() argument
1854 return symbol_type (token::TOK_PIO_VERSION, std::move (l)); in make_PIO_VERSION()
1859 make_PIO_VERSION (const location_type& l) in make_PIO_VERSION() argument
1861 return symbol_type (token::TOK_PIO_VERSION, l); in make_PIO_VERSION()
1867 make_CLOCK_DIV (location_type l) in make_CLOCK_DIV() argument
1869 return symbol_type (token::TOK_CLOCK_DIV, std::move (l)); in make_CLOCK_DIV()
1874 make_CLOCK_DIV (const location_type& l) in make_CLOCK_DIV() argument
1876 return symbol_type (token::TOK_CLOCK_DIV, l); in make_CLOCK_DIV()
1882 make_FIFO (location_type l) in make_FIFO() argument
1884 return symbol_type (token::TOK_FIFO, std::move (l)); in make_FIFO()
1889 make_FIFO (const location_type& l) in make_FIFO() argument
1891 return symbol_type (token::TOK_FIFO, l); in make_FIFO()
1897 make_MOV_STATUS (location_type l) in make_MOV_STATUS() argument
1899 return symbol_type (token::TOK_MOV_STATUS, std::move (l)); in make_MOV_STATUS()
1904 make_MOV_STATUS (const location_type& l) in make_MOV_STATUS() argument
1906 return symbol_type (token::TOK_MOV_STATUS, l); in make_MOV_STATUS()
1912 make_DOT_SET (location_type l) in make_DOT_SET() argument
1914 return symbol_type (token::TOK_DOT_SET, std::move (l)); in make_DOT_SET()
1919 make_DOT_SET (const location_type& l) in make_DOT_SET() argument
1921 return symbol_type (token::TOK_DOT_SET, l); in make_DOT_SET()
1927 make_DOT_OUT (location_type l) in make_DOT_OUT() argument
1929 return symbol_type (token::TOK_DOT_OUT, std::move (l)); in make_DOT_OUT()
1934 make_DOT_OUT (const location_type& l) in make_DOT_OUT() argument
1936 return symbol_type (token::TOK_DOT_OUT, l); in make_DOT_OUT()
1942 make_DOT_IN (location_type l) in make_DOT_IN() argument
1944 return symbol_type (token::TOK_DOT_IN, std::move (l)); in make_DOT_IN()
1949 make_DOT_IN (const location_type& l) in make_DOT_IN() argument
1951 return symbol_type (token::TOK_DOT_IN, l); in make_DOT_IN()
1957 make_JMP (location_type l) in make_JMP() argument
1959 return symbol_type (token::TOK_JMP, std::move (l)); in make_JMP()
1964 make_JMP (const location_type& l) in make_JMP() argument
1966 return symbol_type (token::TOK_JMP, l); in make_JMP()
1972 make_WAIT (location_type l) in make_WAIT() argument
1974 return symbol_type (token::TOK_WAIT, std::move (l)); in make_WAIT()
1979 make_WAIT (const location_type& l) in make_WAIT() argument
1981 return symbol_type (token::TOK_WAIT, l); in make_WAIT()
1987 make_IN (location_type l) in make_IN() argument
1989 return symbol_type (token::TOK_IN, std::move (l)); in make_IN()
1994 make_IN (const location_type& l) in make_IN() argument
1996 return symbol_type (token::TOK_IN, l); in make_IN()
2002 make_OUT (location_type l) in make_OUT() argument
2004 return symbol_type (token::TOK_OUT, std::move (l)); in make_OUT()
2009 make_OUT (const location_type& l) in make_OUT() argument
2011 return symbol_type (token::TOK_OUT, l); in make_OUT()
2017 make_PUSH (location_type l) in make_PUSH() argument
2019 return symbol_type (token::TOK_PUSH, std::move (l)); in make_PUSH()
2024 make_PUSH (const location_type& l) in make_PUSH() argument
2026 return symbol_type (token::TOK_PUSH, l); in make_PUSH()
2032 make_PULL (location_type l) in make_PULL() argument
2034 return symbol_type (token::TOK_PULL, std::move (l)); in make_PULL()
2039 make_PULL (const location_type& l) in make_PULL() argument
2041 return symbol_type (token::TOK_PULL, l); in make_PULL()
2047 make_MOV (location_type l) in make_MOV() argument
2049 return symbol_type (token::TOK_MOV, std::move (l)); in make_MOV()
2054 make_MOV (const location_type& l) in make_MOV() argument
2056 return symbol_type (token::TOK_MOV, l); in make_MOV()
2062 make_IRQ (location_type l) in make_IRQ() argument
2064 return symbol_type (token::TOK_IRQ, std::move (l)); in make_IRQ()
2069 make_IRQ (const location_type& l) in make_IRQ() argument
2071 return symbol_type (token::TOK_IRQ, l); in make_IRQ()
2077 make_SET (location_type l) in make_SET() argument
2079 return symbol_type (token::TOK_SET, std::move (l)); in make_SET()
2084 make_SET (const location_type& l) in make_SET() argument
2086 return symbol_type (token::TOK_SET, l); in make_SET()
2092 make_NOP (location_type l) in make_NOP() argument
2094 return symbol_type (token::TOK_NOP, std::move (l)); in make_NOP()
2099 make_NOP (const location_type& l) in make_NOP() argument
2101 return symbol_type (token::TOK_NOP, l); in make_NOP()
2107 make_PIN (location_type l) in make_PIN() argument
2109 return symbol_type (token::TOK_PIN, std::move (l)); in make_PIN()
2114 make_PIN (const location_type& l) in make_PIN() argument
2116 return symbol_type (token::TOK_PIN, l); in make_PIN()
2122 make_GPIO (location_type l) in make_GPIO() argument
2124 return symbol_type (token::TOK_GPIO, std::move (l)); in make_GPIO()
2129 make_GPIO (const location_type& l) in make_GPIO() argument
2131 return symbol_type (token::TOK_GPIO, l); in make_GPIO()
2137 make_OSRE (location_type l) in make_OSRE() argument
2139 return symbol_type (token::TOK_OSRE, std::move (l)); in make_OSRE()
2144 make_OSRE (const location_type& l) in make_OSRE() argument
2146 return symbol_type (token::TOK_OSRE, l); in make_OSRE()
2152 make_JMPPIN (location_type l) in make_JMPPIN() argument
2154 return symbol_type (token::TOK_JMPPIN, std::move (l)); in make_JMPPIN()
2159 make_JMPPIN (const location_type& l) in make_JMPPIN() argument
2161 return symbol_type (token::TOK_JMPPIN, l); in make_JMPPIN()
2167 make_PREV (location_type l) in make_PREV() argument
2169 return symbol_type (token::TOK_PREV, std::move (l)); in make_PREV()
2174 make_PREV (const location_type& l) in make_PREV() argument
2176 return symbol_type (token::TOK_PREV, l); in make_PREV()
2182 make_NEXT (location_type l) in make_NEXT() argument
2184 return symbol_type (token::TOK_NEXT, std::move (l)); in make_NEXT()
2189 make_NEXT (const location_type& l) in make_NEXT() argument
2191 return symbol_type (token::TOK_NEXT, l); in make_NEXT()
2197 make_PINS (location_type l) in make_PINS() argument
2199 return symbol_type (token::TOK_PINS, std::move (l)); in make_PINS()
2204 make_PINS (const location_type& l) in make_PINS() argument
2206 return symbol_type (token::TOK_PINS, l); in make_PINS()
2212 make_NULL (location_type l) in make_NULL() argument
2214 return symbol_type (token::TOK_NULL, std::move (l)); in make_NULL()
2219 make_NULL (const location_type& l) in make_NULL() argument
2221 return symbol_type (token::TOK_NULL, l); in make_NULL()
2227 make_PINDIRS (location_type l) in make_PINDIRS() argument
2229 return symbol_type (token::TOK_PINDIRS, std::move (l)); in make_PINDIRS()
2234 make_PINDIRS (const location_type& l) in make_PINDIRS() argument
2236 return symbol_type (token::TOK_PINDIRS, l); in make_PINDIRS()
2242 make_BLOCK (location_type l) in make_BLOCK() argument
2244 return symbol_type (token::TOK_BLOCK, std::move (l)); in make_BLOCK()
2249 make_BLOCK (const location_type& l) in make_BLOCK() argument
2251 return symbol_type (token::TOK_BLOCK, l); in make_BLOCK()
2257 make_NOBLOCK (location_type l) in make_NOBLOCK() argument
2259 return symbol_type (token::TOK_NOBLOCK, std::move (l)); in make_NOBLOCK()
2264 make_NOBLOCK (const location_type& l) in make_NOBLOCK() argument
2266 return symbol_type (token::TOK_NOBLOCK, l); in make_NOBLOCK()
2272 make_IFEMPTY (location_type l) in make_IFEMPTY() argument
2274 return symbol_type (token::TOK_IFEMPTY, std::move (l)); in make_IFEMPTY()
2279 make_IFEMPTY (const location_type& l) in make_IFEMPTY() argument
2281 return symbol_type (token::TOK_IFEMPTY, l); in make_IFEMPTY()
2287 make_IFFULL (location_type l) in make_IFFULL() argument
2289 return symbol_type (token::TOK_IFFULL, std::move (l)); in make_IFFULL()
2294 make_IFFULL (const location_type& l) in make_IFFULL() argument
2296 return symbol_type (token::TOK_IFFULL, l); in make_IFFULL()
2302 make_NOWAIT (location_type l) in make_NOWAIT() argument
2304 return symbol_type (token::TOK_NOWAIT, std::move (l)); in make_NOWAIT()
2309 make_NOWAIT (const location_type& l) in make_NOWAIT() argument
2311 return symbol_type (token::TOK_NOWAIT, l); in make_NOWAIT()
2317 make_CLEAR (location_type l) in make_CLEAR() argument
2319 return symbol_type (token::TOK_CLEAR, std::move (l)); in make_CLEAR()
2324 make_CLEAR (const location_type& l) in make_CLEAR() argument
2326 return symbol_type (token::TOK_CLEAR, l); in make_CLEAR()
2332 make_REL (location_type l) in make_REL() argument
2334 return symbol_type (token::TOK_REL, std::move (l)); in make_REL()
2339 make_REL (const location_type& l) in make_REL() argument
2341 return symbol_type (token::TOK_REL, l); in make_REL()
2347 make_X (location_type l) in make_X() argument
2349 return symbol_type (token::TOK_X, std::move (l)); in make_X()
2354 make_X (const location_type& l) in make_X() argument
2356 return symbol_type (token::TOK_X, l); in make_X()
2362 make_Y (location_type l) in make_Y() argument
2364 return symbol_type (token::TOK_Y, std::move (l)); in make_Y()
2369 make_Y (const location_type& l) in make_Y() argument
2371 return symbol_type (token::TOK_Y, l); in make_Y()
2377 make_EXEC (location_type l) in make_EXEC() argument
2379 return symbol_type (token::TOK_EXEC, std::move (l)); in make_EXEC()
2384 make_EXEC (const location_type& l) in make_EXEC() argument
2386 return symbol_type (token::TOK_EXEC, l); in make_EXEC()
2392 make_PC (location_type l) in make_PC() argument
2394 return symbol_type (token::TOK_PC, std::move (l)); in make_PC()
2399 make_PC (const location_type& l) in make_PC() argument
2401 return symbol_type (token::TOK_PC, l); in make_PC()
2407 make_ISR (location_type l) in make_ISR() argument
2409 return symbol_type (token::TOK_ISR, std::move (l)); in make_ISR()
2414 make_ISR (const location_type& l) in make_ISR() argument
2416 return symbol_type (token::TOK_ISR, l); in make_ISR()
2422 make_OSR (location_type l) in make_OSR() argument
2424 return symbol_type (token::TOK_OSR, std::move (l)); in make_OSR()
2429 make_OSR (const location_type& l) in make_OSR() argument
2431 return symbol_type (token::TOK_OSR, l); in make_OSR()
2437 make_OPTIONAL (location_type l) in make_OPTIONAL() argument
2439 return symbol_type (token::TOK_OPTIONAL, std::move (l)); in make_OPTIONAL()
2444 make_OPTIONAL (const location_type& l) in make_OPTIONAL() argument
2446 return symbol_type (token::TOK_OPTIONAL, l); in make_OPTIONAL()
2452 make_SIDE (location_type l) in make_SIDE() argument
2454 return symbol_type (token::TOK_SIDE, std::move (l)); in make_SIDE()
2459 make_SIDE (const location_type& l) in make_SIDE() argument
2461 return symbol_type (token::TOK_SIDE, l); in make_SIDE()
2467 make_STATUS (location_type l) in make_STATUS() argument
2469 return symbol_type (token::TOK_STATUS, std::move (l)); in make_STATUS()
2474 make_STATUS (const location_type& l) in make_STATUS() argument
2476 return symbol_type (token::TOK_STATUS, l); in make_STATUS()
2482 make_PUBLIC (location_type l) in make_PUBLIC() argument
2484 return symbol_type (token::TOK_PUBLIC, std::move (l)); in make_PUBLIC()
2489 make_PUBLIC (const location_type& l) in make_PUBLIC() argument
2491 return symbol_type (token::TOK_PUBLIC, l); in make_PUBLIC()
2497 make_RP2040 (location_type l) in make_RP2040() argument
2499 return symbol_type (token::TOK_RP2040, std::move (l)); in make_RP2040()
2504 make_RP2040 (const location_type& l) in make_RP2040() argument
2506 return symbol_type (token::TOK_RP2040, l); in make_RP2040()
2512 make_RP2350 (location_type l) in make_RP2350() argument
2514 return symbol_type (token::TOK_RP2350, std::move (l)); in make_RP2350()
2519 make_RP2350 (const location_type& l) in make_RP2350() argument
2521 return symbol_type (token::TOK_RP2350, l); in make_RP2350()
2527 make_RXFIFO (location_type l) in make_RXFIFO() argument
2529 return symbol_type (token::TOK_RXFIFO, std::move (l)); in make_RXFIFO()
2534 make_RXFIFO (const location_type& l) in make_RXFIFO() argument
2536 return symbol_type (token::TOK_RXFIFO, l); in make_RXFIFO()
2542 make_TXFIFO (location_type l) in make_TXFIFO() argument
2544 return symbol_type (token::TOK_TXFIFO, std::move (l)); in make_TXFIFO()
2549 make_TXFIFO (const location_type& l) in make_TXFIFO() argument
2551 return symbol_type (token::TOK_TXFIFO, l); in make_TXFIFO()
2557 make_TXRX (location_type l) in make_TXRX() argument
2559 return symbol_type (token::TOK_TXRX, std::move (l)); in make_TXRX()
2564 make_TXRX (const location_type& l) in make_TXRX() argument
2566 return symbol_type (token::TOK_TXRX, l); in make_TXRX()
2572 make_TX (location_type l) in make_TX() argument
2574 return symbol_type (token::TOK_TX, std::move (l)); in make_TX()
2579 make_TX (const location_type& l) in make_TX() argument
2581 return symbol_type (token::TOK_TX, l); in make_TX()
2587 make_RX (location_type l) in make_RX() argument
2589 return symbol_type (token::TOK_RX, std::move (l)); in make_RX()
2594 make_RX (const location_type& l) in make_RX() argument
2596 return symbol_type (token::TOK_RX, l); in make_RX()
2602 make_TXPUT (location_type l) in make_TXPUT() argument
2604 return symbol_type (token::TOK_TXPUT, std::move (l)); in make_TXPUT()
2609 make_TXPUT (const location_type& l) in make_TXPUT() argument
2611 return symbol_type (token::TOK_TXPUT, l); in make_TXPUT()
2617 make_TXGET (location_type l) in make_TXGET() argument
2619 return symbol_type (token::TOK_TXGET, std::move (l)); in make_TXGET()
2624 make_TXGET (const location_type& l) in make_TXGET() argument
2626 return symbol_type (token::TOK_TXGET, l); in make_TXGET()
2632 make_PUTGET (location_type l) in make_PUTGET() argument
2634 return symbol_type (token::TOK_PUTGET, std::move (l)); in make_PUTGET()
2639 make_PUTGET (const location_type& l) in make_PUTGET() argument
2641 return symbol_type (token::TOK_PUTGET, l); in make_PUTGET()
2647 make_LEFT (location_type l) in make_LEFT() argument
2649 return symbol_type (token::TOK_LEFT, std::move (l)); in make_LEFT()
2654 make_LEFT (const location_type& l) in make_LEFT() argument
2656 return symbol_type (token::TOK_LEFT, l); in make_LEFT()
2662 make_RIGHT (location_type l) in make_RIGHT() argument
2664 return symbol_type (token::TOK_RIGHT, std::move (l)); in make_RIGHT()
2669 make_RIGHT (const location_type& l) in make_RIGHT() argument
2671 return symbol_type (token::TOK_RIGHT, l); in make_RIGHT()
2677 make_AUTO (location_type l) in make_AUTO() argument
2679 return symbol_type (token::TOK_AUTO, std::move (l)); in make_AUTO()
2684 make_AUTO (const location_type& l) in make_AUTO() argument
2686 return symbol_type (token::TOK_AUTO, l); in make_AUTO()
2692 make_MANUAL (location_type l) in make_MANUAL() argument
2694 return symbol_type (token::TOK_MANUAL, std::move (l)); in make_MANUAL()
2699 make_MANUAL (const location_type& l) in make_MANUAL() argument
2701 return symbol_type (token::TOK_MANUAL, l); in make_MANUAL()
2707 make_ID (std::string v, location_type l) in make_ID() argument
2709 return symbol_type (token::TOK_ID, std::move (v), std::move (l)); in make_ID()
2714 make_ID (const std::string& v, const location_type& l) in make_ID() argument
2716 return symbol_type (token::TOK_ID, v, l); in make_ID()
2722 make_STRING (std::string v, location_type l) in make_STRING() argument
2724 return symbol_type (token::TOK_STRING, std::move (v), std::move (l)); in make_STRING()
2729 make_STRING (const std::string& v, const location_type& l) in make_STRING() argument
2731 return symbol_type (token::TOK_STRING, v, l); in make_STRING()
2737 make_NON_WS (std::string v, location_type l) in make_NON_WS() argument
2739 return symbol_type (token::TOK_NON_WS, std::move (v), std::move (l)); in make_NON_WS()
2744 make_NON_WS (const std::string& v, const location_type& l) in make_NON_WS() argument
2746 return symbol_type (token::TOK_NON_WS, v, l); in make_NON_WS()
2752 make_CODE_BLOCK_START (std::string v, location_type l) in make_CODE_BLOCK_START() argument
2754 return symbol_type (token::TOK_CODE_BLOCK_START, std::move (v), std::move (l)); in make_CODE_BLOCK_START()
2759 make_CODE_BLOCK_START (const std::string& v, const location_type& l) in make_CODE_BLOCK_START() argument
2761 return symbol_type (token::TOK_CODE_BLOCK_START, v, l); in make_CODE_BLOCK_START()
2767 make_CODE_BLOCK_CONTENTS (std::string v, location_type l) in make_CODE_BLOCK_CONTENTS() argument
2769 return symbol_type (token::TOK_CODE_BLOCK_CONTENTS, std::move (v), std::move (l)); in make_CODE_BLOCK_CONTENTS()
2774 make_CODE_BLOCK_CONTENTS (const std::string& v, const location_type& l) in make_CODE_BLOCK_CONTENTS() argument
2776 return symbol_type (token::TOK_CODE_BLOCK_CONTENTS, v, l); in make_CODE_BLOCK_CONTENTS()
2782 make_UNKNOWN_DIRECTIVE (std::string v, location_type l) in make_UNKNOWN_DIRECTIVE() argument
2784 return symbol_type (token::TOK_UNKNOWN_DIRECTIVE, std::move (v), std::move (l)); in make_UNKNOWN_DIRECTIVE()
2789 make_UNKNOWN_DIRECTIVE (const std::string& v, const location_type& l) in make_UNKNOWN_DIRECTIVE() argument
2791 return symbol_type (token::TOK_UNKNOWN_DIRECTIVE, v, l); in make_UNKNOWN_DIRECTIVE()
2797 make_INT (int v, location_type l) in make_INT() argument
2799 return symbol_type (token::TOK_INT, std::move (v), std::move (l)); in make_INT()
2804 make_INT (const int& v, const location_type& l) in make_INT() argument
2806 return symbol_type (token::TOK_INT, v, l); in make_INT()
2812 make_FLOAT (float v, location_type l) in make_FLOAT() argument
2814 return symbol_type (token::TOK_FLOAT, std::move (v), std::move (l)); in make_FLOAT()
2819 make_FLOAT (const float& v, const location_type& l) in make_FLOAT() argument
2821 return symbol_type (token::TOK_FLOAT, v, l); in make_FLOAT()