reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/polly/lib/External/isl/isl_ast.c
 1799 	if (!expr)
 1802 	switch (expr->type) {
 1804 		if (expr->u.op.op == isl_ast_op_call) {
 1805 			p = print_call_c(p, expr);
 1808 		if (expr->u.op.op == isl_ast_op_access) {
 1809 			p = print_access_c(p, expr);
 1812 		if (expr->u.op.n_arg == 1) {
 1814 						get_op_str_c(p, expr->u.op.op));
 1815 			p = print_sub_expr_c(p, expr->u.op.op,
 1816 						expr->u.op.args[0], 0);
 1819 		if (expr->u.op.op == isl_ast_op_fdiv_q) {
 1823 			p = print_ast_expr_c(p, expr->u.op.args[0]);
 1825 			p = print_ast_expr_c(p, expr->u.op.args[1]);
 1829 		if (expr->u.op.op == isl_ast_op_max ||
 1830 		    expr->u.op.op == isl_ast_op_min) {
 1831 			p = print_min_max_c(p, expr);
 1834 		if (expr->u.op.op == isl_ast_op_cond ||
 1835 		    expr->u.op.op == isl_ast_op_select) {
 1836 			p = print_ast_expr_c(p, expr->u.op.args[0]);
 1838 			p = print_ast_expr_c(p, expr->u.op.args[1]);
 1840 			p = print_ast_expr_c(p, expr->u.op.args[2]);
 1843 		if (expr->u.op.n_arg != 2)
 1847 		p = print_sub_expr_c(p, expr->u.op.op, expr->u.op.args[0], 1);
 1847 		p = print_sub_expr_c(p, expr->u.op.op, expr->u.op.args[0], 1);
 1848 		if (expr->u.op.op != isl_ast_op_member)
 1850 		p = isl_printer_print_str(p, get_op_str_c(p, expr->u.op.op));
 1851 		if (expr->u.op.op != isl_ast_op_member)
 1853 		p = print_sub_expr_c(p, expr->u.op.op, expr->u.op.args[1], 0);
 1853 		p = print_sub_expr_c(p, expr->u.op.op, expr->u.op.args[1], 0);
 1856 		p = isl_printer_print_str(p, isl_id_get_name(expr->u.id));
 1859 		p = isl_printer_print_val(p, expr->u.v);