diff options
author | Doug Evans <dje@google.com> | 2010-01-06 05:30:19 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2010-01-06 05:30:19 +0000 |
commit | fe8afbc48fd3fba73600670fd2b0fcbfd45c440a (patch) | |
tree | c9237754fd594908f3f099468e86daa793096487 /cpu | |
parent | 7c5b2b7a2509d8cdf94a59cbbb44c13cbe6c6183 (diff) | |
download | gdb-fe8afbc48fd3fba73600670fd2b0fcbfd45c440a.zip gdb-fe8afbc48fd3fba73600670fd2b0fcbfd45c440a.tar.gz gdb-fe8afbc48fd3fba73600670fd2b0fcbfd45c440a.tar.bz2 |
cpu/
* m32c.cpu (f-dsp-32-u24): Fix mode of extract handler.
(f-dsp-40-u20, f-dsp-40-u24): Ditto.
opcodes/
* cgen-ibld.in: #include "cgen/basic-modes.h".
* fr30-ibld.c, * frv-ibld.c, * ip2k-ibld.c, * iq2000-ibld.c,
* lm32-ibld.c, * m32c-ibld.c, * m32r-ibld.c, * mep-ibld.c,
* mt-ibld.c, * openrisc-ibld.c, * xc16x-ibld.c,
* xstormy16-ibld.c: Regenerate.
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/ChangeLog | 5 | ||||
-rw-r--r-- | cpu/m32c.cpu | 25 |
2 files changed, 18 insertions, 12 deletions
diff --git a/cpu/ChangeLog b/cpu/ChangeLog index 573430f..f2dcc51 100644 --- a/cpu/ChangeLog +++ b/cpu/ChangeLog @@ -1,3 +1,8 @@ +2010-01-05 Doug Evans <dje@sebabeach.org> + + * m32c.cpu (f-dsp-32-u24): Fix mode of extract handler. + (f-dsp-40-u20, f-dsp-40-u24): Ditto. + 2010-01-02 Doug Evans <dje@sebabeach.org> * m32c.opc (parse_signed16): Fix typo. diff --git a/cpu/m32c.cpu b/cpu/m32c.cpu index 127da49..28d6ea5 100644 --- a/cpu/m32c.cpu +++ b/cpu/m32c.cpu @@ -617,12 +617,12 @@ (or USI (and (srl value 16) #x0000ff) (and value #x00ff00)) - (and (sll value 16) #xff0000))) ; insert + (and (sll value 16) #xff0000))) ; insert ((value pc) (or USI (or USI - (and USI (srl UHI value 16) #x0000ff) - (and USI value #x00ff00)) - (and USI (sll UHI value 16) #xff0000))) ; extract + (and USI (srl value 16) #x0000ff) + (and USI value #x00ff00)) + (and USI (sll value 16) #xff0000))) ; extract ) (df f-dsp-40-u20 "20 bit unsigned" (all-isas) 40 20 UINT @@ -630,24 +630,25 @@ (or USI (and (srl value 16) #x0000ff) (and value #x00ff00)) - (and (sll value 16) #x0f0000))) ; insert + (and (sll value 16) #x0f0000))) ; insert ((value pc) (or USI (or USI - (and USI (srl UHI value 16) #x0000ff) - (and USI value #x00ff00)) - (and USI (sll UHI value 16) #x0f0000))) ; extract + (and USI (srl value 16) #x0000ff) + (and USI value #x00ff00)) + (and USI (sll value 16) #x0f0000))) ; extract ) + (df f-dsp-40-u24 "24 bit unsigned" (all-isas) 40 24 UINT ((value pc) (or USI (or USI (and (srl value 16) #x0000ff) (and value #x00ff00)) - (and (sll value 16) #xff0000))) ; insert + (and (sll value 16) #xff0000))) ; insert ((value pc) (or USI (or USI - (and USI (srl UHI value 16) #x0000ff) - (and USI value #x00ff00)) - (and USI (sll UHI value 16) #xff0000))) ; extract + (and USI (srl value 16) #x0000ff) + (and USI value #x00ff00)) + (and USI (sll value 16) #xff0000))) ; extract ) (dnmf f-dsp-40-s32 "32 bit signed" (all-isas) INT |