Lines Matching full:text
2 ## -z keep-text-section-prefix separates text sections with prefix .text.hot,
3 ## .text.unknown, .text.unlikely, .text.startup, or .text.exit, in the absence
9 # RUN: ld.lld -z nokeep-text-section-prefix %t.o -o %t2
12 # RUN: ld.lld -z keep-text-section-prefix %t.o -o %t.keep
15 # KEEP: [ 1] .text
16 # KEEP-NEXT: [ 2] .text.hot
17 # KEEP-NEXT: [ 3] .text.unknown
18 # KEEP-NEXT: [ 4] .text.split
19 # KEEP-NEXT: [ 5] .text.startup
20 # KEEP-NEXT: [ 6] .text.exit
21 # KEEP-NEXT: [ 7] .text.unlikely
23 # NOKEEP: [ 1] .text
24 # NOKEEP-NOT: .text
29 # RUN: ld.lld -T %t.lds -z keep-text-section-prefix %t.o -o %t.script
32 # SCRIPT: .text
33 # SCRIPT-NEXT: .text.f
34 # SCRIPT-NEXT: .text.hot.f_hot
35 # SCRIPT-NEXT: .text.unknown.f_unknown
36 # SCRIPT-NEXT: .text.split.f_split
37 # SCRIPT-NEXT: .text.startup.f_startup
38 # SCRIPT-NEXT: .text.exit.f_exit
39 # SCRIPT-NEXT: .text.unlikely.f_unlikely
45 .section .text.f,"ax"
48 .section .text.hot.f_hot,"ax"
51 .section .text.unknown.f_unknown,"ax"
54 .section .text.split.f_split,"ax"
57 .section .text.startup.f_startup,"ax"
60 .section .text.exit.f_exit,"ax"
63 .section .text.unlikely.f_unlikely,"ax"