[Bug middle-end/61225] [5 Regression] Several new failures after r210458 on x86_64-*-* with -m32

2014-12-07 Thread zhenqiang.chen at arm dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61225 --- Comment #16 from Zhenqiang Chen zhenqiang.chen at arm dot com --- Still in discussions in two threads about Combine and Compare-elim. [PATCH] Fix PR 61225 https://gcc.gnu.org/ml/gcc-patches/2014-12/msg00558.html https://gcc.gnu.org/ml/gcc

[Bug target/64015] [5.0 Regression] AArch64 ICE due to conditional compare

2014-11-26 Thread zhenqiang.chen at arm dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64015 --- Comment #7 from Zhenqiang Chen zhenqiang.chen at arm dot com --- Sorry for blocking your benchmark tests. I had reverted the ccmp patch. I will rework the patch based on Richard Henderson's comments: https://gcc.gnu.org/ml/gcc-patches/2014

[Bug target/64015] [5.0 Regression] AArch64 ICE due to conditional compare

2014-11-23 Thread zhenqiang.chen at arm dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64015 --- Comment #2 from Zhenqiang Chen zhenqiang.chen at arm dot com --- You force it to register? In fact, I tend to not force it to register in gen_ccmp_next, since it will introduce more overhead for ccmp, which performance maybe worse. My patch

[Bug target/64015] [5.0 Regression] AArch64 ICE due to conditional compare

2014-11-23 Thread zhenqiang.chen at arm dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64015 --- Comment #5 from Zhenqiang Chen zhenqiang.chen at arm dot com --- It seams you always win with ccmp. Please go ahead for your patch and make sure the following case work. int test (unsigned short a, unsigned char b) { return a 0xfff2 b

[Bug middle-end/61225] [5 Regression] Several new failures after r210458 on x86_64-*-* with -m32

2014-11-21 Thread zhenqiang.chen at arm dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61225 --- Comment #15 from Zhenqiang Chen zhenqiang.chen at arm dot com --- Thank you for the reminder. I will rework the patch.

[Bug rtl-optimization/63917] [5 Regression] r217646 caused many failures

2014-11-18 Thread zhenqiang.chen at arm dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63917 --- Comment #3 from Zhenqiang Chen zhenqiang.chen at arm dot com --- Root cause: r217646 enhances ifcvt to handle cbranchcc4 instruction. But ifcvt does not check whether an insn will clobber CC or not, when moving it before the cbranchcc4

[Bug rtl-optimization/63917] [5 Regression] r217646 caused many failures

2014-11-17 Thread zhenqiang.chen at arm dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63917 --- Comment #2 from Zhenqiang Chen zhenqiang.chen at arm dot com --- Thanks for the report. I can reproduce the FAIL on IA32. Since the patch does not impact on -O0, it seams some library functions are wrong. I will investigate it.

[Bug tree-optimization/63743] New: Thumb1: big regression for float operators by r216728

2014-11-05 Thread zhenqiang.chen at arm dot com
Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: zhenqiang.chen at arm dot com Created attachment 33887 -- https://gcc.gnu.org/bugzilla/attachment.cgi?id=33887action=edit test case Root cause: the fold_stmt swaps the operands, which leads to register

[Bug tree-optimization/63743] Thumb1: big regression for float operators by r216728

2014-11-05 Thread zhenqiang.chen at arm dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63743 --- Comment #2 from Zhenqiang Chen zhenqiang.chen at arm dot com --- (In reply to Jakub Jelinek from comment #1) Were we swapping operands before? I mean, if you rewrite the testcase to swap the * arguments in the source, did you get the same

[Bug tree-optimization/63743] Thumb1: big regression for float operators by r216728

2014-11-05 Thread zhenqiang.chen at arm dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63743 --- Comment #4 from Zhenqiang Chen zhenqiang.chen at arm dot com --- (In reply to Jakub Jelinek from comment #3) (In reply to Zhenqiang Chen from comment #2) (In reply to Jakub Jelinek from comment #1) Were we swapping operands before? I

[Bug target/61578] Code size increase for ARM thumb compared to 4.8.x when compiling with -Os

2014-11-02 Thread zhenqiang.chen at arm dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61578 --- Comment #11 from Zhenqiang Chen zhenqiang.chen at arm dot com --- Added updated CSiBE benchmark for GCC 4.8, GCC 4.9 and trunk. It's obvious that excluding ip gives shorted code. Then there is something on trunk that makes some project

[Bug rtl-optimization/63210] ira does not select the best register compared with gcc 4.8 for ARM THUMB1

2014-10-28 Thread zhenqiang.chen at arm dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63210 --- Comment #4 from Zhenqiang Chen zhenqiang.chen at arm dot com --- (In reply to Ramana Radhakrishnan from comment #3) Fixed is it? And does it fail in GCC 4.9 ? Fixed on trunk. Same fail in GCC 4.9. It is a performance issue. Do you think

[Bug tree-optimization/63302] [4.9 Regression] Code with 64-bit long long constants is miscompiled on 32-bit host

2014-10-12 Thread zhenqiang.chen at arm dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63302 --- Comment #19 from Zhenqiang Chen zhenqiang.chen at arm dot com --- (In reply to John David Anglin from comment #18) Hi Zhenqiang, Do you plan to submit patch to gcc-patches soon? Yes. It is in internal review process. I hope to send out

[Bug tree-optimization/63302] [4.9 Regression] Code with 64-bit long long constants is miscompiled on 32-bit host

2014-09-29 Thread zhenqiang.chen at arm dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63302 --- Comment #14 from Zhenqiang Chen zhenqiang.chen at arm dot com --- Created attachment 33608 -- https://gcc.gnu.org/bugzilla/attachment.cgi?id=33608action=edit patch After investigation, I found I mis-use tree_log2. Please try the attached

[Bug tree-optimization/63302] [4.9 Regression] Code with 64-bit long long constants is miscompiled on 32-bit host

2014-09-28 Thread zhenqiang.chen at arm dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63302 --- Comment #10 from Zhenqiang Chen zhenqiang.chen at arm dot com --- (In reply to dave.anglin from comment #8) On 28-Sep-14, at 10:34 AM, dave.anglin at bell dot net wrote: This is what I see on the trunk, but 4.9 is wrong. Possibly

[Bug tree-optimization/63302] [4.9 Regression] Code with 64-bit long long constants is miscompiled on 32-bit host

2014-09-28 Thread zhenqiang.chen at arm dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63302 --- Comment #13 from Zhenqiang Chen zhenqiang.chen at arm dot com --- For 4.9, some function optimizes the code as: Optimizing range tests x_2 -[-2147483648, -2147483648] and -[0, 0] into (x_2 2147483647) != 0 For trunk

[Bug tree-optimization/63302] [4.9 Regression] Code with 64-bit long long constants is miscompiled on 32-bit host

2014-09-27 Thread zhenqiang.chen at arm dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63302 --- Comment #6 from Zhenqiang Chen zhenqiang.chen at arm dot com --- I double checked the function optimize_range_tests_diff. Overall, I think it does the right thing. X86 and ARM work correctly. The ldil.c.169t.optimized is bb 2: x_2

[Bug rtl-optimization/63210] ira does not select the best register compared with gcc 4.8 for ARM THUMB1

2014-09-09 Thread zhenqiang.chen at arm dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63210 --- Comment #1 from Zhenqiang Chen zhenqiang.chen at arm dot com --- Here is a workaround patch to show the point. diff --git a/gcc/ira-color.c b/gcc/ira-color.c index e2ea359..1573fb5 100644 --- a/gcc/ira-color.c +++ b/gcc/ira-color.c

[Bug rtl-optimization/63210] New: ira does not select the best register compared with gcc 4.8 for ARM THUMB1

2014-09-08 Thread zhenqiang.chen at arm dot com
: normal Priority: P3 Component: rtl-optimization Assignee: unassigned at gcc dot gnu.org Reporter: zhenqiang.chen at arm dot com Here is a case shown ira does not select the best register compared with gcc 4.8 for ARM Cortex-M0 with options: -Os -mthumb -mcpu

[Bug rtl-optimization/59535] [4.9 regression] -Os code size regressions for Thumb1/Thumb2 with LRA

2014-09-03 Thread zhenqiang.chen at arm dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59535 Zhenqiang Chen zhenqiang.chen at arm dot com changed: What|Removed |Added CC