Lines Matching refs:debug_printf_parse

59 #define debug_printf_parse(...)  do {} while (0)  macro
67 #ifndef debug_printf_parse
68 # define debug_printf_parse(...) (fprintf(stderr, __VA_ARGS__)) macro
242 if (n & TC_LPAREN ) debug_printf_parse(" LPAREN" ); in debug_parse_print_tc()
243 if (n & TC_RPAREN ) debug_printf_parse(" RPAREN" ); in debug_parse_print_tc()
244 if (n & TC_REGEXP ) debug_printf_parse(" REGEXP" ); in debug_parse_print_tc()
245 if (n & TC_OUTRDR ) debug_printf_parse(" OUTRDR" ); in debug_parse_print_tc()
246 if (n & TC_UOPPOST ) debug_printf_parse(" UOPPOST" ); in debug_parse_print_tc()
247 if (n & TC_UOPPRE1 ) debug_printf_parse(" UOPPRE1" ); in debug_parse_print_tc()
248 if (n & TC_BINOPX ) debug_printf_parse(" BINOPX" ); in debug_parse_print_tc()
249 if (n & TC_IN ) debug_printf_parse(" IN" ); in debug_parse_print_tc()
250 if (n & TC_COMMA ) debug_printf_parse(" COMMA" ); in debug_parse_print_tc()
251 if (n & TC_PIPE ) debug_printf_parse(" PIPE" ); in debug_parse_print_tc()
252 if (n & TC_UOPPRE2 ) debug_printf_parse(" UOPPRE2" ); in debug_parse_print_tc()
253 if (n & TC_ARRTERM ) debug_printf_parse(" ARRTERM" ); in debug_parse_print_tc()
254 if (n & TC_LBRACE ) debug_printf_parse(" LBRACE" ); in debug_parse_print_tc()
255 if (n & TC_RBRACE ) debug_printf_parse(" RBRACE" ); in debug_parse_print_tc()
256 if (n & TC_SEMICOL ) debug_printf_parse(" SEMICOL" ); in debug_parse_print_tc()
257 if (n & TC_NEWLINE ) debug_printf_parse(" NEWLINE" ); in debug_parse_print_tc()
258 if (n & TC_STATX ) debug_printf_parse(" STATX" ); in debug_parse_print_tc()
259 if (n & TC_WHILE ) debug_printf_parse(" WHILE" ); in debug_parse_print_tc()
260 if (n & TC_ELSE ) debug_printf_parse(" ELSE" ); in debug_parse_print_tc()
261 if (n & TC_BUILTIN ) debug_printf_parse(" BUILTIN" ); in debug_parse_print_tc()
262 if (n & TC_LENGTH ) debug_printf_parse(" LENGTH" ); in debug_parse_print_tc()
263 if (n & TC_GETLINE ) debug_printf_parse(" GETLINE" ); in debug_parse_print_tc()
264 if (n & TC_FUNCDECL) debug_printf_parse(" FUNCDECL"); in debug_parse_print_tc()
265 if (n & TC_BEGIN ) debug_printf_parse(" BEGIN" ); in debug_parse_print_tc()
266 if (n & TC_END ) debug_printf_parse(" END" ); in debug_parse_print_tc()
267 if (n & TC_EOF ) debug_printf_parse(" EOF" ); in debug_parse_print_tc()
268 if (n & TC_VARIABLE) debug_printf_parse(" VARIABLE"); in debug_parse_print_tc()
269 if (n & TC_ARRAY ) debug_printf_parse(" ARRAY" ); in debug_parse_print_tc()
270 if (n & TC_FUNCTION) debug_printf_parse(" FUNCTION"); in debug_parse_print_tc()
271 if (n & TC_STRING ) debug_printf_parse(" STRING" ); in debug_parse_print_tc()
272 if (n & TC_NUMBER ) debug_printf_parse(" NUMBER" ); in debug_parse_print_tc()
1100 debug_printf_parse("%s() expected(%x):", __func__, expected); in next_token()
1102 debug_printf_parse("\n"); in next_token()
1105 debug_printf_parse("%s: using rolled-back token\n", __func__); in next_token()
1108 debug_printf_parse("%s: using concat-inserted token\n", __func__); in next_token()
1127 debug_printf_parse("%s: token found: TC_EOF\n", __func__); in next_token()
1142 debug_printf_parse("%s: token found:'%s' TC_STRING\n", __func__, t_string); in next_token()
1164 debug_printf_parse("%s: token found:'%s' TC_REGEXP\n", __func__, t_string); in next_token()
1174 debug_printf_parse("%s: token found:%f TC_NUMBER\n", __func__, t_double); in next_token()
1201 debug_printf_parse("%s: token found:'%.*s' t_info:%x\n", __func__, l, p, t_info); in next_token()
1239 debug_printf_parse("%s: token found:'%s' TC_FUNCTION\n", __func__, t_string); in next_token()
1243 debug_printf_parse("%s: token found:'%s' TC_ARRAY\n", __func__, t_string); in next_token()
1246 debug_printf_parse("%s: token found:'%s' TC_VARIABLE\n", __func__, t_string); in next_token()
1269 debug_printf_parse("%s: concat_inserted if all nonzero: %x %x %x %x\n", __func__, in next_token()
1283 debug_printf_parse("%s: t_tclass=tc=%x\n", __func__, tc); in next_token()
1291 debug_printf_parse("%s: returning, t_double:%f t_tclass:", __func__, t_double); in next_token()
1293 debug_printf_parse("\n"); in next_token()
1343 debug_printf_parse("%s() term_tc(%x):", __func__, term_tc); in parse_expr()
1345 debug_printf_parse("\n"); in parse_expr()
1355 debug_printf_parse("%s: input redir\n", __func__); in parse_expr()
1363 debug_printf_parse("%s: TS_BINOP | TC_UOPPOST tc:%x\n", __func__, tc); in parse_expr()
1402 debug_printf_parse("%s: other, t_info:%x\n", __func__, t_info); in parse_expr()
1416 debug_printf_parse("%s: TS_OPERAND | TC_REGEXP\n", __func__); in parse_expr()
1423 debug_printf_parse("%s: TC_VARIABLE | TC_ARRAY\n", __func__); in parse_expr()
1440 debug_printf_parse("%s: TC_NUMBER | TC_STRING\n", __func__); in parse_expr()
1452 debug_printf_parse("%s: TC_REGEXP\n", __func__); in parse_expr()
1457 debug_printf_parse("%s: TC_FUNCTION\n", __func__); in parse_expr()
1464 debug_printf_parse("%s: TC_LPAREN\n", __func__); in parse_expr()
1472 debug_printf_parse("%s: TC_GETLINE\n", __func__); in parse_expr()
1478 debug_printf_parse("%s: TC_BUILTIN\n", __func__); in parse_expr()
1483 debug_printf_parse("%s: TC_LENGTH\n", __func__); in parse_expr()
1501 debug_printf_parse("%s() returns %p\n", __func__, sn.r.n); in parse_expr()
1569 debug_printf_parse("%s: !TC_RBRACE\n", __func__); in chain_until_rbrace()
1575 debug_printf_parse("%s: TC_RBRACE\n", __func__); in chain_until_rbrace()
1589 debug_printf_parse("%s: TC_LBRACE\n", __func__); in chain_group()
1594 debug_printf_parse("%s: TS_OPSEQ | TC_SEMICOL\n", __func__); in chain_group()
1601 debug_printf_parse("%s: TS_STATEMNT(?)\n", __func__); in chain_group()
1604 debug_printf_parse("%s: ST_IF\n", __func__); in chain_group()
1619 debug_printf_parse("%s: ST_WHILE\n", __func__); in chain_group()
1626 debug_printf_parse("%s: ST_DO\n", __func__); in chain_group()
1635 debug_printf_parse("%s: ST_FOR\n", __func__); in chain_group()
1661 debug_printf_parse("%s: OC_PRINT[F]\n", __func__); in chain_group()
1673 debug_printf_parse("%s: OC_BREAK\n", __func__); in chain_group()
1682 debug_printf_parse("%s: OC_CONTINUE\n", __func__); in chain_group()
1692 debug_printf_parse("%s: default\n", __func__); in chain_group()
1699 debug_printf_parse("%s()\n", __func__); in parse_program()
1710 debug_printf_parse("%s: TC_EOF\n", __func__); in parse_program()
1714 debug_printf_parse("%s: TC_NEWLINE\n", __func__); in parse_program()
1718 debug_printf_parse("%s: TC_BEGIN\n", __func__); in parse_program()
1726 debug_printf_parse("%s: TC_END\n", __func__); in parse_program()
1736 debug_printf_parse("%s: TC_FUNCDECL\n", __func__); in parse_program()
1772 debug_printf_parse("%s: TS_OPSEQ\n", __func__); in parse_program()
1777 debug_printf_parse("%s: TC_LBRACE\n", __func__); in parse_program()
1781 debug_printf_parse("%s: !TC_LBRACE\n", __func__); in parse_program()
1788 debug_printf_parse("%s: TC_LBRACE(?)\n", __func__); in parse_program()