| /llvm-project-15.0.7/llvm/test/tools/llvm-tli-checker/ |
| H A D | ps4-tli-check.yaml | 66 - Name: .text 78 Section: .text 83 Section: .text 87 Section: .text 91 Section: .text 95 Section: .text 99 Section: .text 103 Section: .text 107 Section: .text 111 Section: .text [all …]
|
| /llvm-project-15.0.7/lld/test/ELF/linkerscript/ |
| H A D | insert-multi.test | 14 # CHECK-NEXT: .text 25 text.0 : {} 26 text.1 : {} 27 text.2 : {} 31 text.3 : {} 32 text.4 : {} 33 text.5 : {} 37 text.6 : {} 38 text.7 : {} 39 text.8 : {} [all …]
|
| H A D | icf-output-sections.s | 9 # ICF1: selected section {{.*}}.o:(.text.foo0) 17 ## linker script, .text.foo* and .text.bar* go to the same output section 18 ## .text and they will be folded. 23 # ICF2: selected section {{.*}}.o:(.text.foo0) 25 # ICF2-NEXT: selected section {{.*}}.o:(.text.bar0) 31 ## .text.bar* are orphan sections. 36 # ICF3: selected section {{.*}}.o:(.text.foo0) 45 .section .text.foo0,"ax" 47 .section .text.foo1,"ax" 49 .section .text.bar0,"ax" [all …]
|
| /llvm-project-15.0.7/lld/test/ELF/ |
| H A D | text-section-prefix.s | 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 15 # KEEP: [ 1] .text 16 # KEEP-NEXT: [ 2] .text.hot 18 # KEEP-NEXT: [ 4] .text.split 20 # KEEP-NEXT: [ 6] .text.exit 23 # NOKEEP: [ 1] .text 24 # NOKEEP-NOT: .text 32 # SCRIPT: .text 33 # SCRIPT-NEXT: .text.f [all …]
|
| H A D | icf-preemptible.s | 11 # EXE: selected section {{.*}}:(.text.h1) 14 # EXE: selected section {{.*}}:(.text.f1) 28 .section .text.f1 30 .section .text.f2 33 ## In -shared mode, .text.g1 and .text.g2 cannot be folded because f1 and f2 are 35 .section .text.g1 37 .section .text.g2 39 .section .text.g3 44 .section .text.h1 46 .section .text.h2 [all …]
|
| H A D | arm-thunk-multipass-plt.s | 20 .section .text.01, "ax", %progbits 27 .section .text.02, "ax", %progbits 30 .section .text.03, "ax", %progbits 33 .section .text.04, "ax", %progbits 36 .section .text.05, "ax", %progbits 39 .section .text.06, "ax", %progbits 42 .section .text.07, "ax", %progbits 48 .section .text.08, "ax", %progbits 51 .section .text.10, "ax", %progbits 67 .section .text.11, "ax", %progbits
|
| H A D | icf-ineligible.s | 9 # CHECK: selected section {{.*}}:(.text.f1) 10 # CHECK: removing identical section {{.*}}:(.text.f2) 11 # CHECK: removing identical section {{.*}}:(.text.f3) 12 # CHECK: selected section {{.*}}:(.text.f4) 22 .section .text.fu,"ax",@progbits 26 .section .text.f1,"ax",@progbits 30 .section .text.f2,"ax",@progbits 34 .section .text.f3,"ax",@progbits 38 .section .text.f4,"ax",@progbits 42 .section .text.f5,"ax",@progbits [all …]
|
| H A D | aarch64-cortex-a53-843419-recognize.s | 44 .section .text.01, "ax", %progbits 62 .section .text.02, "ax", %progbits 80 .section .text.03, "ax", %progbits 98 .section .text.04, "ax", %progbits 116 .section .text.05, "ax", %progbits 134 .section .text.06, "ax", %progbits 152 .section .text.07, "ax", %progbits 187 .section .text.09, "ax", %progbits 205 .section .text.10, "ax", %progbits 223 .section .text.11, "ax", %progbits [all …]
|
| H A D | aarch64-cortex-a53-843419-nopatch.s | 24 .section .text.01, "ax", %progbits 34 .section .text.02, "ax", %progbits 50 .section .text.03, "ax", %progbits 62 .section .text.04, "ax", %progbits 74 .section .text.05, "ax", %progbits 86 .section .text.06, "ax", %progbits 98 .section .text.07, "ax", %progbits 115 .section .text.08, "ax", %progbits 127 .section .text.09, "ax", %progbits 139 .section .text.09, "ax", %progbits [all …]
|
| H A D | print-icf.s | 9 # CHECK: selected section {{.*}}:(.text.f2) 10 # CHECK: removing identical section {{.*}}:(.text.f4) 11 # CHECK: removing identical section {{.*}}:(.text.f7) 12 # CHECK: selected section {{.*}}:(.text.f1) 13 # CHECK: removing identical section {{.*}}:(.text.f3) 14 # CHECK: removing identical section {{.*}}:(.text.f5) 24 .section .text.f1, "ax" 30 .section .text.f2, "ax" 34 .section .text.f3, "ax" 40 .section .text.f4, "ax" [all …]
|
| /llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/utils/posix/ |
| H A D | PrettyOutput.py | 13 def _color(self, text, color, stream, lock=_lock): argument 18 text = '\033[{}m{}\033[0m'.format(color, text) 19 self._write(text, stream) 21 def red_impl(self, text, stream=None, **kwargs): argument 22 self._color(text, 91, stream, **kwargs) 25 self._color(text, 93, stream, **kwargs) 27 def green_impl(self, text, stream=None, **kwargs): argument 28 self._color(text, 92, stream, **kwargs) 30 def blue_impl(self, text, stream=None, **kwargs): argument 31 self._color(text, 96, stream, **kwargs) [all …]
|
| /llvm-project-15.0.7/clang/unittests/AST/ |
| H A D | CommentLexer.cpp | 322 if(Toks[j].is(tok::text)) { in TEST_F() 340 ASSERT_EQ(tok::text, Toks[0].getKind()); in TEST_F() 343 ASSERT_EQ(tok::text, Toks[1].getKind()); in TEST_F() 346 ASSERT_EQ(tok::text, Toks[2].getKind()); in TEST_F() 349 ASSERT_EQ(tok::text, Toks[3].getKind()); in TEST_F() 352 ASSERT_EQ(tok::text, Toks[4].getKind()); in TEST_F() 386 ASSERT_EQ(tok::text, Toks[0].getKind()); in TEST_F() 482 ASSERT_EQ(tok::text, Toks[0].getKind()); in TEST_F() 543 ASSERT_EQ(tok::text, Toks[0].getKind()); in TEST_F() 551 ASSERT_EQ(tok::text, Toks[3].getKind()); in TEST_F() [all …]
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | stack-size-section-function-sections.ll | 7 ; UNIQ: .section .text._Z3barv,"ax",@progbits{{$}} 8 ; UNIQ: .section .stack_sizes,"o",@progbits,.text._Z3barv{{$}} 9 ; UNIQ: .section .text._Z3foov,"ax",@progbits{{$}} 10 ; UNIQ: .section .stack_sizes,"o",@progbits,.text._Z3foov{{$}} 11 ; NOUNIQ: .section .text,"ax",@progbits,unique,1 12 ; NOUNIQ: .section .stack_sizes,"o",@progbits,.text,unique,1 13 ; NOUNIQ: .section .text,"ax",@progbits,unique,2 14 ; NOUNIQ: .section .stack_sizes,"o",@progbits,.text,unique,2 17 ; UNIQ: .section .text._Z4fooTIiET_v,"axG",@progbits,_Z4fooTIiET_v,comdat{{$}} 19 ; NOUNIQ: .section .text,"axG",@progbits,_Z4fooTIiET_v,comdat,unique,3 [all …]
|
| /llvm-project-15.0.7/llvm/test/Transforms/InstCombine/ |
| H A D | lifetime-sanitizer.ll | 10 %text = alloca i8, align 1 12 call void @llvm.lifetime.start.p0i8(i64 1, i8* %text) 13 call void @llvm.lifetime.end.p0i8(i64 1, i8* %text) 17 call void @foo(i8* %text) ; Keep alloca alive 25 %text = alloca i8, align 1 28 call void @llvm.lifetime.end.p0i8(i64 1, i8* %text) 32 call void @foo(i8* %text) ; Keep alloca alive 40 %text = alloca i8, align 1 47 call void @foo(i8* %text) ; Keep alloca alive 55 %text = alloca i8, align 1 [all …]
|
| /llvm-project-15.0.7/clang/test/Analysis/diagnostics/Inputs/expected-sarif/ |
| H A D | sarif-multi-diagnostic-test.c.sarif | 10 "mimeType": "text/plain", 28 "text": "Calling 'f'" 47 "text": "tainted" 83 "text": "tainted" 98 "text": "Calling 'g'" 206 "text": "Taking true branch" 224 "text": "Division by zero" 258 "text": "Division by zero" 397 "text": "Division by zero" 431 "text": "Division by zero" [all …]
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objdump/ELF/ |
| H A D | symbol-visibility.test | 5 # CHECK-NEXT: .text 00000000 default 6 # CHECK-NEXT: .text 00000000 .internal internal 7 # CHECK-NEXT: .text 00000000 .hidden hidden 8 # CHECK-NEXT: .text 00000000 .protected protected 9 # CHECK-NEXT: .text 00000000 0x20 mips_pic 19 - Name: .text 24 Section: .text 27 Section: .text 30 Section: .text 33 Section: .text [all …]
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objcopy/ELF/ |
| H A D | armexidx-link.test | 6 # CHECK-NEXT: Name: .ARM.exidx.text.foo (1) 22 - Name: .text.bar 27 - Name: .text.foo 32 - Name: .ARM.exidx.text.foo 35 Link: .text.foo 39 - Name: .text.bar 41 Section: .text.bar 42 - Name: .text.foo 44 Section: .text.foo 45 - Name: .ARM.exidx.text.foo [all …]
|
| H A D | group-big-endian.test | 2 # RUN: llvm-objcopy --remove-section=.text.bar %t %t2 15 # CHECK: .text.foo (2) 31 - SectionOrType: .text.foo 32 - Name: .text.bar 36 - Name: .text.foo 41 - Name: .text.bar 43 Section: .text.bar 44 - Name: .text.foo 46 Section: .text.foo 49 Section: .text.bar [all …]
|
| H A D | group-unchanged.test | 2 # RUN: llvm-objcopy --remove-section=.text.bar %t %t2 15 # CHECK: .text.foo (2) 31 - SectionOrType: .text.foo 32 - Name: .text.foo 36 - Name: .text.bar 41 - Name: .text.foo 43 Section: .text.foo 44 - Name: .text.bar 46 Section: .text.bar 49 Section: .text.foo [all …]
|
| /llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/utils/ |
| H A D | PrettyOutputBase.py | 84 def _write(self, text, stream): argument 85 text = str(text) 122 text.rstrip()).replace('>', r'\>')) 139 assert False, text 143 before = text[:open_tag.start()] 154 after = text[close_tag.end():] 162 def auto(self, text, stream=None, lock=_lock): argument 163 text = str(text) 165 lines = text.splitlines(True) 190 return impl(text, *args, **kwargs) [all …]
|
| /llvm-project-15.0.7/bolt/test/AArch64/Inputs/ |
| H A D | unmarked-data.yaml | 25 FirstSec: .text 26 LastSec: .text 33 - Name: .text 44 Info: .text 60 Section: .text 64 Section: .text 67 Section: .text 71 Section: .text 73 - Name: .text 75 Section: .text [all …]
|
| /llvm-project-15.0.7/clang/lib/ARCMigrate/ |
| H A D | TransformActions.cpp | 286 text = getUniqueText(text); in insert() 290 data.Text1 = text; in insert() 296 text = getUniqueText(text); in insertAfterToken() 300 data.Text1 = text; in insertAfterToken() 324 text = getUniqueText(text); in replace() 326 insert(range.getBegin(), text); in replace() 341 text = getUniqueText(text); in replaceText() 346 data.Text1 = text; in replaceText() 353 text = getUniqueText(text); in replaceStmt() 354 insert(S->getBeginLoc(), text); in replaceStmt() [all …]
|
| /llvm-project-15.0.7/clang/test/ExtractAPI/ |
| H A D | objc_interface.m | 102 "kind": "text", 148 "kind": "text", 156 "kind": "text", 164 "kind": "text", 173 "kind": "text", 181 "kind": "text", 260 "kind": "text", 269 "kind": "text", 277 "kind": "text", 286 "kind": "text", [all …]
|
| /llvm-project-15.0.7/llvm/test/Transforms/PhaseOrdering/ |
| H A D | lifetime-sanitizer.ll | 17 %text = alloca i8, align 1 19 call void @llvm.lifetime.start.p0i8(i64 1, i8* %text) 20 call void @llvm.lifetime.end.p0i8(i64 1, i8* %text) 24 call void @foo(i8* %text) ; Keep alloca alive 32 %text = alloca i8, align 1 35 call void @llvm.lifetime.end.p0i8(i64 1, i8* %text) 39 call void @foo(i8* %text) ; Keep alloca alive 47 %text = alloca i8, align 1 54 call void @foo(i8* %text) ; Keep alloca alive 62 %text = alloca i8, align 1 [all …]
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objdump/X86/ |
| H A D | adjust-vma.test | 33 # COMMON-NEXT: 0000000000000000 l d .text 0000000000000000 .text 47 # NOADJUST-NEXT: 0000000000000001: R_X86_64_32 .text 61 # NOADJUST-NEXT: 0000000000000000: R_X86_64_32 .text 66 # ADJUST-NEXT: 0000000000123000: R_X86_64_32 .text 80 - Name: .text 97 Symbol: .text 111 Symbol: .text 116 Section: .text 119 Section: .text 120 - Name: .text [all …]
|