-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix memory size for gather/scatter instructions
For gathers with indices larger than elements (e. g.) vpgatherqd ymm6{k1}, ZMMWORD PTR [ebp+zmm7*8-123] We currently treat memory size as a size of index register, while it is actually should be size of destination register: vpgatherqd ymm6{k1}, YMMWORD PTR [ebp+zmm7*8-123] This patch fixes it. opcodes/ * i386-opc.tbl: Change memory size for vgatherpf0qps, vgatherpf1qps, vscatterpf0qps, vscatterpf1qps, vgatherqps, vpgatherqd, vpscatterqd, vscatterqps. * i386-tbl.h: Regenerate. gas/testsuite/ * gas/i386/avx512pf-intel.d: Change memory size for vgatherpf0qps, vgatherpf1qps, vscatterpf0qps, vscatterpf1qps. * gas/i386/avx512pf.s: Ditto. * gas/i386/x86-64-avx512pf-intel.d: Ditto. * gas/i386/x86-64-avx512pf.s: Ditto. * gas/i386/avx512f-intel.d: Change memory size for vgatherqps, vpgatherqd, vpscatterqd, vscatterqps. * gas/i386/avx512f.s: Ditto. * gas/i386/x86-64-avx512f-intel.d: Ditto. * gas/i386/x86-64-avx512f.s: Ditto.
- Loading branch information
Showing
14 changed files
with
265 additions
and
219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
2014-03-20 Ilya Tocar <[email protected]> | ||
|
||
* gas/i386/avx512pf-intel.d: Change memory size for vgatherpf0qps, | ||
vgatherpf1qps, vscatterpf0qps, vscatterpf1qps. | ||
* gas/i386/avx512pf.s: Ditto. | ||
* gas/i386/x86-64-avx512pf-intel.d: Ditto. | ||
* gas/i386/x86-64-avx512pf.s: Ditto. | ||
* gas/i386/avx512f-intel.d: Change memory size for vgatherqps, | ||
vpgatherqd, vpscatterqd, vscatterqps. | ||
* gas/i386/avx512f.s: Ditto. | ||
* gas/i386/x86-64-avx512f-intel.d: Ditto. | ||
* gas/i386/x86-64-avx512f.s: Ditto. | ||
|
||
2014-03-19 Jose E. Marchesi <[email protected]> | ||
|
||
* gas/sparc/ldd_std.d: Fix objdump invocation in order to get | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.