Announcement

Collapse
No announcement yet.

Mozilla Spots Massive Performance Regression In GCC

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Mozilla Spots Massive Performance Regression In GCC

    Phoronix: Mozilla Spots Massive Performance Regression In GCC

    Mozilla developers on the GCC mailing list have been expressing what they describe as a "massive performance regression" and "what might be the biggest compiler-upgrade-related performance difference we've seen at Mozilla." The Mozilla developers have upgraded from GCC 4.3 to GCC 4.5, which was released in April, and now they are experiencing massive slowdowns...

    Phoronix, Linux Hardware Reviews, Linux hardware benchmarks, Linux server benchmarks, Linux benchmarking, Desktop Linux, Linux performance, Open Source graphics, Linux How To, Ubuntu benchmarks, Ubuntu hardware, Phoronix Test Suite

  • #2
    This can't help but be a good thing. gcc will get a good hard examination, Mozilla is already looking at their own CFLAGS as a result.

    Comment


    • #3
      Since when does mozilla build for 64bit linux?

      Comment


      • #4
        Originally posted by droidhacker View Post
        Since when does mozilla build for 64bit linux?
        They will officially release 64 builds of Firefox 4, for both Windows and Linux I think.

        Comment


        • #5
          Phoronix plays an important role in software development for Linux. If it wasn't for Phoronix, Linux and many other open source software would slow down by every release as the majority of open source developers don't realize the importance of automated quality checking & benchmarking. But luckily there are also commercial companies doing these kind of tests, because Phoronix can't do everything.

          Comment


          • #6
            Please forgive my ignorance in this post.

            Am I correct in assuming these performance hits are for the finished (compiled) program, as opposed to the performance of GCC itself? Based on the wording of the article, I would assume it is the former, but I suppose it would not be hard to benchmark how long it takes to compile the software and therefore report on that timing.

            Comment


            • #7
              Expecting -Os te be faster from release to release is naive. It is not intended to be faster, it is intended to be slower, but smaller. An app like Firefox should not use preset, but only profile based code path and cherry picked C/XX/FLAGS and LDFLAGS for both the main application and statically included dependencies.

              Comment


              • #8
                You would be amazed at the insane amounts of red tape required to change even the slightest detail in Mozilla products. Changing a compiler switch is for them as big a deal as rewriting code from scratch in other projects.

                Comment


                • #9
                  I've found gcc (and especially g++) 4.5 to be much better than 4.3, in both speed-of-generated-code and generated-code size.

                  I suspect Mozilla has probably tweaked their code and their compilation options based on the specific behavior of gcc 4.3; if so, they're going to have to redo it for 4.5. Most of the changes in 4.5 are for the better, but nonetheless, they may interfere with fragile tweaks aimed at an earlier compiler version.

                  Comment


                  • #10
                    Optimizaing for size rather than speed could be the culprit, but unless the code is dramatically smaller with 4.5 versus 4.3 I doubt it's an intentional regression from the gcc guys. Would be interesting to see the results if they optimized for speed instead.
                    Anyway, going from 4.3 to 4.5 is quite a big step, and PGO is available in 4.4 so they don't need to go to 4.5 for that.

                    Personally I've only benchmarked with -O3 and -O2 and in pretty much all cases 4.5 has been faster than previous versions for me.

                    Comment

                    Working...
                    X