
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.
64 lines
2.0 KiB
LLVM
64 lines
2.0 KiB
LLVM
;; Test the function attribute "patchable-function-entry".
|
|
;; Adapted from the RISCV test case.
|
|
; RUN: llc --mtriple=loongarch32 < %s | FileCheck %s --check-prefixes=CHECK,LA32
|
|
; RUN: llc --mtriple=loongarch64 < %s | FileCheck %s --check-prefixes=CHECK,LA64
|
|
|
|
define void @f0() "patchable-function-entry"="0" {
|
|
; CHECK-LABEL: f0:
|
|
; CHECK-NEXT: .Lfunc_begin0:
|
|
; CHECK-NOT: nop
|
|
; CHECK: ret
|
|
; CHECK-NOT: .section __patchable_function_entries
|
|
ret void
|
|
}
|
|
|
|
define void @f1() "patchable-function-entry"="1" {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK-NEXT: .Lfunc_begin1:
|
|
; CHECK: nop
|
|
; CHECK-NEXT: ret
|
|
; CHECK: .section __patchable_function_entries,"awo",@progbits,f1{{$}}
|
|
; LA32: .p2align 2
|
|
; LA32-NEXT: .word .Lfunc_begin1
|
|
; LA64: .p2align 3
|
|
; LA64-NEXT: .dword .Lfunc_begin1
|
|
ret void
|
|
}
|
|
|
|
$f5 = comdat any
|
|
define void @f5() "patchable-function-entry"="5" comdat {
|
|
; CHECK-LABEL: f5:
|
|
; CHECK-NEXT: .Lfunc_begin2:
|
|
; CHECK-COUNT-5: nop
|
|
; CHECK-NEXT: ret
|
|
; CHECK: .section __patchable_function_entries,"awoG",@progbits,f5,f5,comdat{{$}}
|
|
; LA32: .p2align 2
|
|
; LA32-NEXT: .word .Lfunc_begin2
|
|
; LA64: .p2align 3
|
|
; LA64-NEXT: .dword .Lfunc_begin2
|
|
ret void
|
|
}
|
|
|
|
;; -fpatchable-function-entry=3,2
|
|
;; "patchable-function-prefix" emits data before the function entry label.
|
|
define void @f3_2() "patchable-function-entry"="1" "patchable-function-prefix"="2" {
|
|
; CHECK-LABEL: .type f3_2,@function
|
|
; CHECK-NEXT: .Ltmp0:
|
|
; CHECK-COUNT-2: nop
|
|
; CHECK-NEXT: f3_2: # @f3_2
|
|
; CHECK: # %bb.0:
|
|
; CHECK-NEXT: nop
|
|
; LA32-NEXT: addi.w $sp, $sp, -16
|
|
; LA64-NEXT: addi.d $sp, $sp, -16
|
|
;; .size does not include the prefix.
|
|
; CHECK: .Lfunc_end3:
|
|
; CHECK-NEXT: .size f3_2, .Lfunc_end3-f3_2
|
|
; CHECK: .section __patchable_function_entries,"awo",@progbits,f3_2{{$}}
|
|
; LA32: .p2align 2
|
|
; LA32-NEXT: .word .Ltmp0
|
|
; LA64: .p2align 3
|
|
; LA64-NEXT: .dword .Ltmp0
|
|
%frame = alloca i8, i32 16
|
|
ret void
|
|
}
|