diff options
author | K. Richard Pixley <rich@cygnus> | 1991-07-09 19:19:15 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-07-09 19:19:15 +0000 |
commit | 52686f5037fd0237bdd4694e1d29c3d1082793e1 (patch) | |
tree | 9fdeb134475e659735eac1489540825f580ab326 /include | |
parent | 8acc9e0558812f5da4668d7ac02066568ec6f32c (diff) | |
download | gdb-52686f5037fd0237bdd4694e1d29c3d1082793e1.zip gdb-52686f5037fd0237bdd4694e1d29c3d1082793e1.tar.gz gdb-52686f5037fd0237bdd4694e1d29c3d1082793e1.tar.bz2 |
Working out v9 bugs.
Diffstat (limited to 'include')
-rwxr-xr-x | include/sparc-opcode.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sparc-opcode.h b/include/sparc-opcode.h index 4207b67..6862e68 100755 --- a/include/sparc-opcode.h +++ b/include/sparc-opcode.h @@ -1581,18 +1581,22 @@ cond ("bz", "tz", CONDZ, F_ALIAS), /* for e */ { opcode, (mask)|ANNUL, (lose), ",al", F_DELAYED, v6 } #define brfcx(opcode, mask, lose) /* v9 */ \ + { opcode, FBFCC(0)|(mask), ANNUL|BPRED|FBFCC(~0)|(lose), "6,G", F_DELAYED, v9 }, \ { opcode, FBFCC(0)|(mask), ANNUL|BPRED|FBFCC(~0)|(lose), ",N6,G", F_DELAYED, v9 }, \ { opcode, FBFCC(0)|(mask)|ANNUL, BPRED|FBFCC(~0)|(lose), ",a,N6,G", F_DELAYED, v9 }, \ { opcode, FBFCC(0)|(mask)|BPRED, ANNUL|FBFCC(~0)|(lose), ",T6,G", F_DELAYED, v9 }, \ { opcode, FBFCC(0)|(mask)|BPRED|ANNUL, FBFCC(~0)|(lose), ",a,T6,G", F_DELAYED, v9 }, \ + { opcode, FBFCC(1)|(mask), ANNUL|BPRED|FBFCC(~1)|(lose), "7,G", F_DELAYED, v9 }, \ { opcode, FBFCC(1)|(mask), ANNUL|BPRED|FBFCC(~1)|(lose), ",N7,G", F_DELAYED, v9 }, \ { opcode, FBFCC(1)|(mask)|ANNUL, BPRED|FBFCC(~1)|(lose), ",a,N7,G", F_DELAYED, v9 }, \ { opcode, FBFCC(1)|(mask)|BPRED, ANNUL|FBFCC(~1)|(lose), ",T7,G", F_DELAYED, v9 }, \ { opcode, FBFCC(1)|(mask)|BPRED|ANNUL, FBFCC(~1)|(lose), ",a,T7,G", F_DELAYED, v9 }, \ + { opcode, FBFCC(2)|(mask), ANNUL|BPRED|FBFCC(~2)|(lose), "8,G", F_DELAYED, v9 }, \ { opcode, FBFCC(2)|(mask), ANNUL|BPRED|FBFCC(~2)|(lose), ",N8,G", F_DELAYED, v9 }, \ { opcode, FBFCC(2)|(mask)|ANNUL, BPRED|FBFCC(~2)|(lose), ",a,N8,G", F_DELAYED, v9 }, \ { opcode, FBFCC(2)|(mask)|BPRED, ANNUL|FBFCC(~2)|(lose), ",T8,G", F_DELAYED, v9 }, \ { opcode, FBFCC(2)|(mask)|BPRED|ANNUL, FBFCC(~2)|(lose), ",a,T8,G", F_DELAYED, v9 }, \ + { opcode, FBFCC(3)|(mask), ANNUL|BPRED|FBFCC(~3)|(lose), "9,G", F_DELAYED, v9 }, \ { opcode, FBFCC(3)|(mask), ANNUL|BPRED|FBFCC(~3)|(lose), ",N9,G", F_DELAYED, v9 }, \ { opcode, FBFCC(3)|(mask)|ANNUL, BPRED|FBFCC(~3)|(lose), ",a,N9,G", F_DELAYED, v9 }, \ { opcode, FBFCC(3)|(mask)|BPRED, ANNUL|FBFCC(~3)|(lose), ",T9,G", F_DELAYED, v9 }, \ |