From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id CB8463858D28; Thu, 10 Feb 2022 11:22:23 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CB8463858D28 From: "avi at scylladb dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/104484] New: -freorder-block-and-partition not splitting into sections with __builin_expect() Date: Thu, 10 Feb 2022 11:22:23 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 11.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: avi at scylladb dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Feb 2022 11:22:23 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D104484 Bug ID: 104484 Summary: -freorder-block-and-partition not splitting into sections with __builin_expect() Product: gcc Version: 11.2.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: avi at scylladb dot com Target Milestone: --- I expected code guarded by __builtin_expect() to be pushed into .text.cold,= but that's not happening: int f1, f2; inline int is() { return __builtin_expect(f1, 0) && f2; } void heavy() { extern void very_heavy(); if (is()) { very_heavy(); } } void fun(); void light() { fun(); heavy(); fun(); } with -O3 -freorder-blocks-and-partition: light: .LFB2: .cfi_startproc subq $8, %rsp .cfi_def_cfa_offset 16 xorl %eax, %eax call fun movl f1(%rip), %edx testl %edx, %edx jne .L8 .p2align 4,,10 .p2align 3 .L8: .cfi_restore_state movl f2(%rip), %eax testl %eax, %eax je .L6 xorl %eax, %eax call very_heavy jmp .L6 .cfi_endproc .L6: xorl %eax, %eax addq $8, %rsp .cfi_remember_state .cfi_def_cfa_offset 8 jmp fun I expected .L8 to be in another section, but it isn't.=