Every basic block section symbol created by -fbasic-block-sections will contain ".__part." to know that this symbol corresponds to a basic block fragment of the function. This patch solves two problems: a) Like D89617, we want function symbols with suffixes to be properly qualified so that external tools like profile aggregators know exactly what this symbol corresponds to. b) The current basic block naming just adds a ".N" to the symbol name where N is some integer. This collides with how clang creates __cxx_global_var_init.N. clang creates these symbol names to call constructor functions and basic block symbol naming should not use the same style. Fixed all the test cases and added an extra test for __cxx_global_var_init breakage. Differential Revision: https://reviews.llvm.org/D93082
73 lines
2.3 KiB
LLVM
73 lines
2.3 KiB
LLVM
; Check the basic block sections list option.
|
|
; RUN: echo '!_Z3foob' > %t
|
|
; RUN: llc < %s -mtriple=x86_64-pc-linux -function-sections -basic-block-sections=%t -unique-basic-block-section-names | FileCheck %s -check-prefix=LINUX-SECTIONS
|
|
|
|
define i32 @_Z3foob(i1 zeroext %0) nounwind {
|
|
%2 = alloca i32, align 4
|
|
%3 = alloca i8, align 1
|
|
%4 = zext i1 %0 to i8
|
|
store i8 %4, i8* %3, align 1
|
|
%5 = load i8, i8* %3, align 1
|
|
%6 = trunc i8 %5 to i1
|
|
%7 = zext i1 %6 to i32
|
|
%8 = icmp sgt i32 %7, 0
|
|
br i1 %8, label %9, label %11
|
|
|
|
9: ; preds = %1
|
|
%10 = call i32 @_Z3barv()
|
|
store i32 %10, i32* %2, align 4
|
|
br label %13
|
|
|
|
11: ; preds = %1
|
|
%12 = call i32 @_Z3bazv()
|
|
store i32 %12, i32* %2, align 4
|
|
br label %13
|
|
|
|
13: ; preds = %11, %9
|
|
%14 = load i32, i32* %2, align 4
|
|
ret i32 %14
|
|
}
|
|
|
|
declare i32 @_Z3barv() #1
|
|
declare i32 @_Z3bazv() #1
|
|
|
|
define i32 @_Z3zipb(i1 zeroext %0) nounwind {
|
|
%2 = alloca i32, align 4
|
|
%3 = alloca i8, align 1
|
|
%4 = zext i1 %0 to i8
|
|
store i8 %4, i8* %3, align 1
|
|
%5 = load i8, i8* %3, align 1
|
|
%6 = trunc i8 %5 to i1
|
|
%7 = zext i1 %6 to i32
|
|
%8 = icmp sgt i32 %7, 0
|
|
br i1 %8, label %9, label %11
|
|
|
|
9: ; preds = %1
|
|
%10 = call i32 @_Z3barv()
|
|
store i32 %10, i32* %2, align 4
|
|
br label %13
|
|
|
|
11: ; preds = %1
|
|
%12 = call i32 @_Z3bazv()
|
|
store i32 %12, i32* %2, align 4
|
|
br label %13
|
|
|
|
13: ; preds = %11, %9
|
|
%14 = load i32, i32* %2, align 4
|
|
ret i32 %14
|
|
}
|
|
|
|
; LINUX-SECTIONS: .section .text._Z3foob,"ax",@progbits
|
|
; LINUX-SECTIONS: _Z3foob:
|
|
; LINUX-SECTIONS: .section .text._Z3foob._Z3foob.__part.1,"ax",@progbits
|
|
; LINUX-SECTIONS: _Z3foob.__part.1:
|
|
; LINUX-SECTIONS: .section .text._Z3foob._Z3foob.__part.2,"ax",@progbits
|
|
; LINUX-SECTIONS: _Z3foob.__part.2:
|
|
; LINUX-SECTIONS: .section .text._Z3foob._Z3foob.__part.3,"ax",@progbits
|
|
; LINUX-SECTIONS: _Z3foob.__part.3:
|
|
|
|
; LINUX-SECTIONS: .section .text._Z3zipb,"ax",@progbits
|
|
; LINUX-SECTIONS: _Z3zipb:
|
|
; LINUX-SECTIONS-NOT: .section .text._Z3zipb._Z3zipb.__part.{{[0-9]+}},"ax",@progbits
|
|
; LINUX-SECTIONS-NOT: _Z3zipb.__part.{{[0-9]+}}:
|