HomeSort by: relevance | last modified time | path
    Searched defs:n_alternatives (Results 1 - 16 of 16) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
genoutput.cc 43 f. `n_alternatives' is the number of alternatives in the constraints
120 unsigned char n_alternatives;
158 int n_alternatives; /* Number of alternatives in each constraint */
402 printf (" %d,\n", d->n_alternatives);
458 d->operand[opno].n_alternatives
479 d->operand[opno].n_alternatives
771 if (i != d->n_alternatives)
798 if (d->operand[start].n_alternatives > 0)
861 n = d->operand[start].n_alternatives;
862 else if (n != d->operand[start].n_alternatives)
119 unsigned char n_alternatives; member in struct:operand_data
157 int n_alternatives; \/* Number of alternatives in each constraint *\/ member in class:data
    [all...]
lra-int.h 185 char n_alternatives; member in struct:lra_static_insn_data
190 /* Array [n_alternatives][n_operand] of static constraint info for
recog.h 390 char n_alternatives; member in struct:recog_data_d
422 recog_data.n_alternatives - 1));
501 const char n_alternatives; member in struct:insn_data_d
ira-lives.cc 726 for (alt1 = 0; alt1 < recog_data.n_alternatives; alt1++)
748 if (alt1 < recog_data.n_alternatives)
783 int n_alternatives = recog_data.n_alternatives; local
786 for (alt = 0; alt < n_alternatives; alt++, op_alt += n_operands)
924 if (op_num < 0 || recog_data.n_alternatives == 0)
1083 for (int alt = 0; alt < recog_data.n_alternatives; alt++)
recog.cc 2614 int n_alternatives = insn_data[INSN_CODE (insn)].n_alternatives;
2615 for (int i = 0; i < n_alternatives; i++)
2763 recog_data.n_alternatives = 0;
2810 recog_data.n_alternatives = 1;
2812 recog_data.n_alternatives += (*p++ == ',');
2829 recog_data.n_alternatives = insn_data[icode].n_alternatives;
2850 gcc_assert (recog_data.n_alternatives <= MAX_RECOG_ALTERNATIVES);
2857 operands, N_ALTERNATIVES alternatives and constraint string
2607 int n_alternatives = insn_data[INSN_CODE (insn)].n_alternatives; local
2994 int n_alternatives = MAX (insn_data[icode].n_alternatives, 1); local
3022 int n_alternatives = recog_data.n_alternatives; local
    [all...]
gensupport.cc 108 static int n_alternatives (const char *);
1595 n_alternatives (const char *s)
1626 i = n_alternatives (XSTR (pattern, 2));
1627 /* n_alternatives returns 1 if constraint string is empty -
1693 i = n_alternatives (XSTR (pattern, code == MATCH_SCRATCH ? 1 : 2));
1752 if (n_alternatives (c) != 1)
1591 n_alternatives (const char *s) function
reload.cc 2656 int n_alternatives;
2738 n_alternatives = recog_data.n_alternatives;
2741 if (noperands == 0 || n_alternatives == 0)
3025 this_alternative_number < n_alternatives;
2643 int n_alternatives; local
  /src/external/gpl3/gcc.old/dist/gcc/
genoutput.cc 43 f. `n_alternatives' is the number of alternatives in the constraints
120 unsigned char n_alternatives;
158 int n_alternatives; /* Number of alternatives in each constraint */
401 printf (" %d,\n", d->n_alternatives);
457 d->operand[opno].n_alternatives
478 d->operand[opno].n_alternatives
731 if (i != d->n_alternatives)
758 if (d->operand[start].n_alternatives > 0)
821 n = d->operand[start].n_alternatives;
822 else if (n != d->operand[start].n_alternatives)
119 unsigned char n_alternatives; member in struct:operand_data
157 int n_alternatives; \/* Number of alternatives in each constraint *\/ member in class:data
    [all...]
lra-int.h 185 char n_alternatives; member in struct:lra_static_insn_data
190 /* Array [n_alternatives][n_operand] of static constraint info for
recog.h 368 char n_alternatives; member in struct:recog_data_d
389 recog_data.n_alternatives - 1));
467 const char n_alternatives; member in struct:insn_data_d
ira-lives.cc 725 for (alt1 = 0; alt1 < recog_data.n_alternatives; alt1++)
747 if (alt1 < recog_data.n_alternatives)
782 int n_alternatives = recog_data.n_alternatives; local
785 for (alt = 0; alt < n_alternatives; alt++, op_alt += n_operands)
923 if (op_num < 0 || recog_data.n_alternatives == 0)
recog.cc 2593 int n_alternatives = insn_data[INSN_CODE (insn)].n_alternatives;
2594 for (int i = 0; i < n_alternatives; i++)
2742 recog_data.n_alternatives = 0;
2789 recog_data.n_alternatives = 1;
2791 recog_data.n_alternatives += (*p++ == ',');
2808 recog_data.n_alternatives = insn_data[icode].n_alternatives;
2829 gcc_assert (recog_data.n_alternatives <= MAX_RECOG_ALTERNATIVES);
2836 operands, N_ALTERNATIVES alternatives and constraint string
2586 int n_alternatives = insn_data[INSN_CODE (insn)].n_alternatives; local
2967 int n_alternatives = MAX (insn_data[icode].n_alternatives, 1); local
2995 int n_alternatives = recog_data.n_alternatives; local
    [all...]
gensupport.cc 104 static int n_alternatives (const char *);
1051 n_alternatives (const char *s)
1082 i = n_alternatives (XSTR (pattern, 2));
1083 /* n_alternatives returns 1 if constraint string is empty -
1149 i = n_alternatives (XSTR (pattern, code == MATCH_SCRATCH ? 1 : 2));
1208 if (n_alternatives (c) != 1)
1047 n_alternatives (const char *s) function
reload.cc 2655 int n_alternatives;
2737 n_alternatives = recog_data.n_alternatives;
2740 if (noperands == 0 || n_alternatives == 0)
3024 this_alternative_number < n_alternatives;
2642 int n_alternatives; local
  /src/external/gpl3/gcc/dist/gcc/config/i386/
i386.cc 1443 int n_alternatives = recog_data.n_alternatives;
1475 win = !n_alternatives;
1478 for (j = 0; j < n_alternatives; j++, op_alt += n_operands)
11581 for (int i = 0; i < recog_data.n_alternatives; i++)
1433 int n_alternatives = recog_data.n_alternatives; local
  /src/external/gpl3/gcc.old/dist/gcc/config/i386/
i386.cc 1377 int n_alternatives = recog_data.n_alternatives;
1409 win = !n_alternatives;
1412 for (j = 0; j < n_alternatives; j++, op_alt += n_operands)
1367 int n_alternatives = recog_data.n_alternatives; local

Completed in 89 milliseconds