* pendanticism
2000-10-24 Ben Elliston <bje@redhat.com> * gencode.c (tab): Delimit strings with commas where applicable.
This commit is contained in:
parent
e26cc3490a
commit
8f1e3ff591
@ -1,3 +1,7 @@
|
|||||||
|
2000-10-24 Ben Elliston <bje@redhat.com>
|
||||||
|
|
||||||
|
* gencode.c (tab): Delimit strings with commas where applicable.
|
||||||
|
|
||||||
Tue May 23 21:39:23 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
Tue May 23 21:39:23 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
||||||
|
|
||||||
* configure: Regenerated to track ../common/aclocal.m4 changes.
|
* configure: Regenerated to track ../common/aclocal.m4 changes.
|
||||||
|
@ -41,9 +41,7 @@ typedef struct
|
|||||||
char *code;
|
char *code;
|
||||||
char *stuff[MAX_NR_STUFF];
|
char *stuff[MAX_NR_STUFF];
|
||||||
int index;
|
int index;
|
||||||
}
|
} op;
|
||||||
|
|
||||||
op;
|
|
||||||
|
|
||||||
|
|
||||||
op tab[] =
|
op tab[] =
|
||||||
@ -1321,7 +1319,7 @@ op ppi_tab[] =
|
|||||||
" res = Sz << i;",
|
" res = Sz << i;",
|
||||||
"else if (i >= 128 - 16)",
|
"else if (i >= 128 - 16)",
|
||||||
" res = Sz >> 128 - i;",
|
" res = Sz >> 128 - i;",
|
||||||
"else"
|
"else",
|
||||||
" {",
|
" {",
|
||||||
" RAISE_EXCEPTION (SIGILL);",
|
" RAISE_EXCEPTION (SIGILL);",
|
||||||
" return;",
|
" return;",
|
||||||
@ -1336,7 +1334,7 @@ op ppi_tab[] =
|
|||||||
"",
|
"",
|
||||||
"if (i < 32)",
|
"if (i < 32)",
|
||||||
" {",
|
" {",
|
||||||
" if (i == 32)"
|
" if (i == 32)",
|
||||||
" {",
|
" {",
|
||||||
" res = 0;",
|
" res = 0;",
|
||||||
" res_grd = Sz;",
|
" res_grd = Sz;",
|
||||||
@ -1352,7 +1350,7 @@ op ppi_tab[] =
|
|||||||
"else if (i >= 96)",
|
"else if (i >= 96)",
|
||||||
" {",
|
" {",
|
||||||
" i = 128 - i;",
|
" i = 128 - i;",
|
||||||
" if (i == 32)"
|
" if (i == 32)",
|
||||||
" {",
|
" {",
|
||||||
" res_grd = SIGN32 (Sz_grd);",
|
" res_grd = SIGN32 (Sz_grd);",
|
||||||
" res = Sz_grd;",
|
" res = Sz_grd;",
|
||||||
@ -1364,7 +1362,7 @@ op ppi_tab[] =
|
|||||||
" }",
|
" }",
|
||||||
" carry = Sz >> (i - 1) & 1;",
|
" carry = Sz >> (i - 1) & 1;",
|
||||||
" }",
|
" }",
|
||||||
"else"
|
"else",
|
||||||
" {",
|
" {",
|
||||||
" RAISE_EXCEPTION (SIGILL);",
|
" RAISE_EXCEPTION (SIGILL);",
|
||||||
" return;",
|
" return;",
|
||||||
@ -1540,7 +1538,7 @@ op ppi_tab[] =
|
|||||||
" res = Sx << Sy;",
|
" res = Sx << Sy;",
|
||||||
"else if (Sy >= 128 - 16)",
|
"else if (Sy >= 128 - 16)",
|
||||||
" res = Sx >> 128 - Sy;",
|
" res = Sx >> 128 - Sy;",
|
||||||
"else"
|
"else",
|
||||||
" {",
|
" {",
|
||||||
" RAISE_EXCEPTION (SIGILL);",
|
" RAISE_EXCEPTION (SIGILL);",
|
||||||
" return;",
|
" return;",
|
||||||
@ -1554,7 +1552,7 @@ op ppi_tab[] =
|
|||||||
"",
|
"",
|
||||||
"if (Sy < 32)",
|
"if (Sy < 32)",
|
||||||
" {",
|
" {",
|
||||||
" if (Sy == 32)"
|
" if (Sy == 32)",
|
||||||
" {",
|
" {",
|
||||||
" res = 0;",
|
" res = 0;",
|
||||||
" res_grd = Sx;",
|
" res_grd = Sx;",
|
||||||
@ -1570,7 +1568,7 @@ op ppi_tab[] =
|
|||||||
"else if (Sy >= 96)",
|
"else if (Sy >= 96)",
|
||||||
" {",
|
" {",
|
||||||
" Sy = 128 - Sy;",
|
" Sy = 128 - Sy;",
|
||||||
" if (Sy == 32)"
|
" if (Sy == 32)",
|
||||||
" {",
|
" {",
|
||||||
" res_grd = SIGN32 (Sx_grd);",
|
" res_grd = SIGN32 (Sx_grd);",
|
||||||
" res = Sx_grd;",
|
" res = Sx_grd;",
|
||||||
@ -1582,7 +1580,7 @@ op ppi_tab[] =
|
|||||||
" }",
|
" }",
|
||||||
" carry = Sx >> (Sy - 1) & 1;",
|
" carry = Sx >> (Sy - 1) & 1;",
|
||||||
" }",
|
" }",
|
||||||
"else"
|
"else",
|
||||||
" {",
|
" {",
|
||||||
" RAISE_EXCEPTION (SIGILL);",
|
" RAISE_EXCEPTION (SIGILL);",
|
||||||
" return;",
|
" return;",
|
||||||
@ -1694,7 +1692,7 @@ op ppi_tab[] =
|
|||||||
{ "","", "(if cc) pdmsb Sx,Dz", "100111ccxx..zzzz",
|
{ "","", "(if cc) pdmsb Sx,Dz", "100111ccxx..zzzz",
|
||||||
"unsigned Sx = DSP_R (x);",
|
"unsigned Sx = DSP_R (x);",
|
||||||
"int Sx_grd = GET_DSP_GRD (x);",
|
"int Sx_grd = GET_DSP_GRD (x);",
|
||||||
"int i = 16;"
|
"int i = 16;",
|
||||||
"",
|
"",
|
||||||
"if (Sx_grd < 0)",
|
"if (Sx_grd < 0)",
|
||||||
" {",
|
" {",
|
||||||
@ -1710,7 +1708,7 @@ op ppi_tab[] =
|
|||||||
" res = 30;",
|
" res = 30;",
|
||||||
"else",
|
"else",
|
||||||
" res = 31;",
|
" res = 31;",
|
||||||
"do"
|
"do",
|
||||||
" {",
|
" {",
|
||||||
" if (Sx & ~0 << i)",
|
" if (Sx & ~0 << i)",
|
||||||
" {",
|
" {",
|
||||||
@ -1727,13 +1725,13 @@ op ppi_tab[] =
|
|||||||
},
|
},
|
||||||
{ "","", "(if cc) pdmsb Sy,Dz", "101111cc..yyzzzz",
|
{ "","", "(if cc) pdmsb Sy,Dz", "101111cc..yyzzzz",
|
||||||
"unsigned Sy = DSP_R (y);",
|
"unsigned Sy = DSP_R (y);",
|
||||||
"int i;"
|
"int i;",
|
||||||
"",
|
"",
|
||||||
"if (Sy < 0)",
|
"if (Sy < 0)",
|
||||||
" Sy = ~Sy;",
|
" Sy = ~Sy;",
|
||||||
"Sy <<= 1;",
|
"Sy <<= 1;",
|
||||||
"res = 31;",
|
"res = 31;",
|
||||||
"do"
|
"do",
|
||||||
" {",
|
" {",
|
||||||
" if (Sy & ~0 << i)",
|
" if (Sy & ~0 << i)",
|
||||||
" {",
|
" {",
|
||||||
|
Loading…
Reference in New Issue
Block a user