]> git.ipfire.org Git - thirdparty/gcc.git/commit
Reduce cost of MEM (A + imm).
authorliuhongt <hongtao.liu@intel.com>
Mon, 19 Feb 2024 05:57:24 +0000 (13:57 +0800)
committerliuhongt <hongtao.liu@intel.com>
Tue, 28 May 2024 22:59:15 +0000 (06:59 +0800)
commit1d6199e5f8c1c08083eeb0279f71333234fe14ad
tree3a28592bbec190fda9cec69c17c5ad225340b6d6
parent6f36cc2535c11b9406715836daeb87169fa79473
Reduce cost of MEM (A + imm).

For MEM, rtx_cost iterates each subrtx, and adds up the costs,
so for MEM (reg) and MEM (reg + 4), the former costs 5,
the latter costs 9, it is not accurate for x86. Ideally
address_cost should be used, but it reduce cost too much.
So current solution is make constant disp as cheap as possible.

gcc/ChangeLog:

PR target/67325
* config/i386/i386.cc (ix86_rtx_costs): Reduce cost of MEM (A
+ imm) to "cost of MEM (A)" + 1.

gcc/testsuite/ChangeLog:

* gcc.target/i386/pr67325.c: New test.
gcc/config/i386/i386.cc
gcc/testsuite/gcc.target/i386/pr67325.c [new file with mode: 0644]