Lines Matching refs:tokidx

1014       int tokidx = 0;
1031 if (tokidx >= ntok)
1042 if (tok[tokidx].X_op != O_register
1043 || !is_ir_num (tok[tokidx].X_add_number))
1047 if (tok[tokidx].X_op != O_register
1048 || !is_fpr_num (tok[tokidx].X_add_number))
1052 if (tok[tokidx].X_op != O_pregister
1053 || !is_ir_num (tok[tokidx].X_add_number))
1057 if (tok[tokidx].X_op != O_cpregister
1058 || !is_ir_num (tok[tokidx].X_add_number))
1065 switch (tok[tokidx].X_op)
1083 ++tokidx;
1087 if (tokidx == ntok)
1861 int tokidx = 0;
1878 if (tokidx >= ntok)
1901 t = &tok[tokidx++];
2652 int r, tokidx = 0;
2655 if (tokidx < ntok && tok[tokidx].X_op == O_register)
2656 r = regno (tok[tokidx++].X_add_number);
2662 if (tokidx < ntok &&
2663 (tok[tokidx].X_op == O_pregister || tok[tokidx].X_op == O_cpregister))
2664 r = regno (tok[tokidx++].X_add_number);
2671 lituse = load_expression (r = AXP_REG_PV, &tok[tokidx], &basereg, NULL);
2680 if (tokidx < ntok)
2681 newtok[2] = tok[tokidx];
2710 int r, tokidx = 0;
2712 if (tokidx < ntok && tok[tokidx].X_op == O_register)
2713 r = regno (tok[tokidx++].X_add_number);
2719 if (tokidx < ntok &&
2720 (tok[tokidx].X_op == O_pregister || tok[tokidx].X_op == O_cpregister))
2721 r = regno (tok[tokidx++].X_add_number);
2727 if (tokidx < ntok)
2728 newtok[2] = tok[tokidx];
2988 int tokidx = 0;
2995 if (tokidx == ntok)
2998 tokidx = 0;
3003 if (tokidx >= ntok || tok[tokidx].X_op != O_register
3004 || !is_ir_num (tok[tokidx].X_add_number))
3006 ++tokidx;
3011 if (tokidx >= ntok || tok[tokidx].X_op != O_pregister
3012 || !is_ir_num (tok[tokidx].X_add_number))
3014 ++tokidx;
3019 if (tokidx < ntok && tok[tokidx].X_op == O_pregister
3020 && is_ir_num (tok[tokidx].X_add_number))
3021 ++tokidx;
3026 if (tokidx >= ntok || tok[tokidx].X_op != O_cpregister
3027 || !is_ir_num (tok[tokidx].X_add_number))
3029 ++tokidx;
3034 if (tokidx >= ntok || tok[tokidx].X_op != O_register
3035 || !is_fpr_num (tok[tokidx].X_add_number))
3037 ++tokidx;
3042 if (tokidx >= ntok)
3044 switch (tok[tokidx].X_op)
3065 ++tokidx;
3071 tokidx = 0;