
When both SHF_LINK_ORDER | SHF_GROUP flags are set, GNU assembler from 2.35 onwards (https://sourceware.org/PR25381 https://sourceware.org/binutils/docs/as/Section.html) parses the SHF_LINK_ORDER argument before section group name, different from us. This is unfortunate, but does not matter because the `.section` flag `o` is a niche feature only used by compiler instrumentations, not adopted by hand-written assembly, and using both flags is extremely rare. Let's just match GNU assembler. There is another benefit: we now support zero-flag section group with the SHF_LINK_ORDER flag, while previously there isn't a syntax. While here, print 'G' after 'o' to be clear that the 'G' argument is parsed after the 'o' argument. To make the diff smaller, we don't print 'G' after 'w' in the absence of 'o' for now.
32 lines
1.5 KiB
LLVM
32 lines
1.5 KiB
LLVM
; RUN: llc -mtriple=mips-unknown-linux-gnu -function-sections < %s | FileCheck %s
|
|
; RUN: llc -mtriple=mipsel-unknown-linux-gnu -function-sections < %s | FileCheck %s
|
|
; RUN: llc -filetype=obj -o %t -mtriple=mips-unknown-linux-gnu -function-sections < %s
|
|
; RUN: llvm-readobj --sections %t | FileCheck %s --check-prefix=CHECK-OBJ
|
|
; RUN: llc -filetype=obj -o %t -mtriple=mipsel-unknown-linux-gnu -function-sections < %s
|
|
; RUN: llvm-readobj --sections %t | FileCheck %s --check-prefix=CHECK-OBJ
|
|
; RUN: llc -mtriple=mips64-unknown-linux-gnu -function-sections < %s | FileCheck %s
|
|
; RUN: llc -mtriple=mips64el-unknown-linux-gnu -function-sections < %s | FileCheck %s
|
|
; RUN: llc -filetype=obj -o %t -mtriple=mips64-unknown-linux-gnu -function-sections < %s
|
|
; RUN: llvm-readobj --sections %t | FileCheck %s --check-prefix=CHECK-OBJ
|
|
; RUN: llc -filetype=obj -o %t -mtriple=mips64el-unknown-linux-gnu -function-sections < %s
|
|
; RUN: llvm-readobj --sections %t | FileCheck %s --check-prefix=CHECK-OBJ
|
|
|
|
define i32 @foo() nounwind noinline uwtable "function-instrument"="xray-always" {
|
|
; CHECK: .section .text.foo,"ax",@progbits
|
|
ret i32 0
|
|
; CHECK: .section xray_instr_map,"ao",@progbits,foo{{$}}
|
|
}
|
|
|
|
; CHECK-OBJ: Section {
|
|
; CHECK-OBJ: Name: xray_instr_map
|
|
|
|
$bar = comdat any
|
|
define i32 @bar() nounwind noinline uwtable "function-instrument"="xray-always" comdat($bar) {
|
|
; CHECK: .section .text.bar,"axG",@progbits,bar,comdat
|
|
ret i32 1
|
|
; CHECK: .section xray_instr_map,"aoG",@progbits,bar,bar,comdat{{$}}
|
|
}
|
|
|
|
; CHECK-OBJ: Section {
|
|
; CHECK-OBJ: Name: xray_instr_map
|