Lines Matching full:content

3 ## Check we can describe a SHT_GNU_HASH section using the "Content" tag.
7 # RUN: llvm-readobj --sections --section-data %t1 | FileCheck %s --check-prefix=CONTENT
9 # CONTENT: Name: .gnu.hash
10 # CONTENT-NEXT: Type: SHT_GNU_HASH
11 # CONTENT-NEXT: Flags [
12 # CONTENT-NEXT: ]
13 # CONTENT-NEXT: Address: 0x0
14 # CONTENT-NEXT: Offset: 0x40
15 # CONTENT-NEXT: Size: 3
16 # CONTENT-NEXT: Link: 2
17 # CONTENT-NEXT: Info: 0
18 # CONTENT-NEXT: AddressAlignment: 0
19 # CONTENT-NEXT: EntrySize: 0
20 # CONTENT-NEXT: SectionData (
21 # CONTENT-NEXT: 0000: 001122 |
22 # CONTENT-NEXT: )
23 # CONTENT: Index: 2
24 # CONTENT-NEXT: Name: .dynsym (9)
34 Content: "001122"
211 ## Check we emit an empty section if neither "Content", "Header",
230 …, "BloomFilter", "HashBuckets" and "HashValues" can't be used together with the "Content" or "Size"
234 …or: "Header", "BloomFilter", "HashBuckets" and "HashValues" cannot be used with "Content" or "Size"
244 Content: [[CONTENT=<none>]]
257 # RUN: llvm-readobj --sections --section-data %t12 | FileCheck %s --check-prefix=OVERRIDE-CONTENT
259 # OVERRIDE-CONTENT: Name: .gnu.hash
260 # OVERRIDE-CONTENT: SectionData (
261 # OVERRIDE-CONTENT-NEXT: 0000: 01000000 02000000 03000000 04000000 |
262 # OVERRIDE-CONTENT-NEXT: )
281 ## Check we can use the "Content" key with the "Size" key when the size is greater
282 ## than or equal to the content size.
285 # RUN: FileCheck %s --check-prefix=CONTENT-SIZE-ERR
287 # CONTENT-SIZE-ERR: error: Section size must be greater than or equal to the content size
298 Content: [[CONTENT=<none>]]
302 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="0011"
306 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="001100"
308 # CHECK-CONTENT: Name: .gnu.hash
309 # CHECK-CONTENT: SectionData (
310 # CHECK-CONTENT-NEXT: 0000: [[DATA]] |
311 # CHECK-CONTENT-NEXT: )
317 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="000000"
319 ## Check we can use the "Content" key alone to create the section.
321 # RUN: yaml2obj --docnum=13 -DCONTENT="'112233'" %s -o %t.content.o
322 # RUN: llvm-readobj --sections --section-data %t.content.o | \
323 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="112233"