Lines Matching full:content

3 ## Test that the content of SHT_LLVM_CALL_GRAPH_PROFILE sections
61 ## Check we can specify none of "Content", "Entries", and "Size" tags.
84 ## Check we can describe SHT_LLVM_CALL_GRAPH_PROFILE sections using the "Content" tag.
85 # RUN: yaml2obj --docnum=3 %s -o %t.content
86 # RUN: llvm-readobj --sections --section-data %t.content | FileCheck %s --check-prefix=CONTENT
88 # CONTENT: Name: .llvm.call-graph-profile
89 # CONTENT: SectionData (
90 # CONTENT-NEXT: 0000: 11223344 |
91 # CONTENT-NEXT: )
101 Content: "11223344"
103 ## Check we can use the "Content" key with the "Size" key when the size is greater
104 ## than or equal to the content size.
107 # RUN: FileCheck %s --check-prefix=CONTENT-SIZE-ERR
109 # CONTENT-SIZE-ERR: error: Section size must be greater than or equal to the content size
122 Content: [[CONTENT=<none>]]
127 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="0011"
131 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="001100"
133 # CHECK-CONTENT: Name: .llvm.foo
134 # CHECK-CONTENT-NEXT: Type: SHT_LLVM_CALL_GRAPH_PROFILE
135 # CHECK-CONTENT-NEXT: Flags [
136 # CHECK-CONTENT-NEXT: ]
137 # CHECK-CONTENT-NEXT: Address:
138 # CHECK-CONTENT-NEXT: Offset:
139 # CHECK-CONTENT-NEXT: Size:
140 # CHECK-CONTENT-NEXT: Link: 1
141 # CHECK-CONTENT-NEXT: Info:
142 # CHECK-CONTENT-NEXT: AddressAlignment:
143 # CHECK-CONTENT-NEXT: EntrySize: 2
144 # CHECK-CONTENT-NEXT: SectionData (
145 # CHECK-CONTENT-NEXT: 0000: [[DATA]] |
146 # CHECK-CONTENT-NEXT: )
152 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="000000"
154 ## Check we can use the "Content" key alone to create the section.
156 # RUN: yaml2obj --docnum=4 -DCONTENT="'112233'" %s -o %t.content.o
157 # RUN: llvm-readobj --sections --section-data %t.content.o | \
158 # RUN: FileCheck %s --check-prefix=CHECK-CONTENT -DDATA="112233"
160 ## Check we can't use the "Entries" key together with the "Content" or "Size" keys.
167 # ENTRIES-ERR: error: "Entries" cannot be used with "Content" or "Size"