/llvm-project/mlir/include/mlir/IR/ |
H A D | DialectResourceBlobManager.h | 43 const AsmResourceBlob *getBlob() const { return blob ? &*blob : nullptr; } in getBlob() 44 AsmResourceBlob *getBlob() { return blob ? &*blob : nullptr; } in getBlob() 47 void setBlob(AsmResourceBlob &&newBlob) { blob = std::move(newBlob); } in setBlob() 58 blob = std::move(newBlob); in initialize() 65 std::optional<AsmResourceBlob> blob; variable 86 BlobEntry &insert(StringRef name, std::optional<AsmResourceBlob> blob = {}); 91 std::optional<AsmResourceBlob> blob = {}) { 92 BlobEntry &entry = insert(name, std::move(blob)); 157 HandleT insert(StringRef name, std::optional<AsmResourceBlob> blob = {}) { 159 cast<typename HandleT::Dialect>(getDialect()), name, std::move(blob)); [all …]
|
H A D | AsmState.h | 53 /// use a string (human readable) or blob format (binary). Within the textual 87 /// This class represents a processed binary blob of data. A resource blob is 92 /// A deleter function that frees a blob given the data, allocation size, and 106 /// Utility constructor that initializes a blob with a non-char type T. in AsmResourceBlob() 118 // Delete the current blob if necessary. 143 /// Return the raw underlying data of this blob. 154 /// Return a mutable reference to the raw underlying data of this blob. in getMutableData() 155 /// Asserts that the blob `isMutable`. in getMutableData() 162 /// Return if the data of this blob i in isMutable() 199 AsmResourceBlob blob = allocate(data.size(), align, dataIsMutable); global() variable 266 buildBlob(StringRef key,const AsmResourceBlob & blob) buildBlob() argument [all...] |
/llvm-project/lld/test/ELF/ |
H A D | loongarch-interlink.test | 4 # RUN: yaml2obj %t/blob.yaml -o %t/blob.o 11 # RUN: ld.lld -m elf64loongarch -b binary %t/blob.bin -o %t/blob.out 12 # RUN: llvm-readobj -h %t/blob.out | FileCheck --check-prefix=EMPTY %s 20 # RUN: ld.lld %t/blob.o %t/v1-lp64d.o -o %t/v1-lp64d.out 21 # RUN: ld.lld %t/v1-lp64s.o %t/blob.o -o %t/v1-lp64s.out 32 # RUN: not ld.lld %t/v0-lp64d.o %t/v1-b-lp64d.o %t/blob.o -o /dev/null 2>&1 | FileCheck -DFILE=%t/v… 35 #--- blob.bin 38 #--- blob.yaml 53 - Name: blob 76 la $a0, blob
|
/llvm-project/clang/test/Modules/ |
H A D | relative-submodule-topheader.m | 5 // CHECK: <SUBMODULE_HEADER abbrevid=6/> blob data = 'vector.h' 6 // CHECK: <SUBMODULE_TOPHEADER abbrevid=7/> blob data = 'vector.h' 7 // CHECK: <SUBMODULE_HEADER abbrevid=6/> blob data = 'type_traits.h' 8 // CHECK: <SUBMODULE_TOPHEADER abbrevid=7/> blob data = 'type_traits.h' 9 // CHECK: <SUBMODULE_HEADER abbrevid=6/> blob data = 'hash_map.h' 10 // CHECK: <SUBMODULE_TOPHEADER abbrevid=7/> blob data = 'hash_map.h'
|
H A D | module-file-home-is-cwd.m | 11 // INPUT: <INPUT_FILE {{.*}}/> blob data = 'Inputs{{/|\\}}normal-module-map{{/|\\}}module.modulemap' 12 // INPUT: <INPUT_FILE {{.*}}/> blob data = 'Inputs{{/|\\}}normal-module-map{{/|\\}}a2.h' 13 // INPUT: <INPUT_FILE {{.*}}/> blob data = 'Inputs{{/|\\}}normal-module-map{{/|\\}}a1.h'
|
/llvm-project/llvm/test/tools/llvm-objcopy/ELF/ |
H A D | add-gnu-debuglink.test | 2 # RUN: printf 0000 > %t.blob 3 # RUN: llvm-objcopy --add-gnu-debuglink=%t.blob %t %t2 26 # CHECK-NEXT: 0010: 6B2E7465 73742E74 6D702E62 6C6F6200 |k.test.tmp.blob.|
|
H A D | tail-merged-string-tables.test | 30 # RUN: llvm-objcopy %t.o %t.rename-section --rename-section .blah.blag=.blob.blab 36 # RENAME-SECTION: Name: .blob.blab (
|
/llvm-project/mlir/test/IR/ |
H A D | file-metadata-resources.mlir | 3 // Check that we only preserve the blob that got referenced. 14 // CHECK-NEXT: blob: "0x08000000010000000000000002000000000000000300000000000000" 35 blob: "0x08000000010000000000000002000000000000000300000000000000",
|
H A D | invalid-file-metadata.mlir | 73 // expected-error@+4 {{expected hex string blob for key 'invalid_blob'}} 84 // expected-error@+4 {{expected hex string blob for key 'invalid_blob'}} 95 // expected-error@+4 {{expected hex string blob for key 'invalid_blob' to encode alignment in first…
|
H A D | pretty-resources-print.mlir | 33 blob: "0x08000000010000000000000002000000000000000300000000000000",
|
/llvm-project/mlir/lib/IR/ |
H A D | DialectResourceBlobManager.cpp | 34 std::optional<AsmResourceBlob> blob) in insert() argument 42 it.first->second.initialize(it.first->getKey(), std::move(blob)); in insert()
|
H A D | BuiltinDialect.cpp | 94 FailureOr<AsmResourceBlob> blob = entry.parseAsBlob(); in parseResource() local 95 if (failed(blob)) in parseResource() 99 blobManager.update(entry.getKey(), std::move(*blob)); in parseResource()
|
/llvm-project/mlir/lib/Conversion/GPUToVulkan/ |
H A D | ConvertLaunchFuncToVulkanCalls.cpp |
|
/llvm-project/mlir/docs/Dialects/ |
H A D | ArmSME.md | 14 * [Linalg/CPU/ArmSME/matmul.mlir](https://github.com/llvm/llvm-project/blob/main/mlir/test/Integration/Dialect/Linalg/CPU/ArmSME/matmul.mlir) 15 * [Vector/CPU/ArmSME/outerproduct-f64.mlir](https://github.com/llvm/llvm-project/blob/main/mlir/test/Integration/Dialect/Vector/CPU/ArmSME/outerproduct-f64.mlir)
|
/llvm-project/llvm/docs/ |
H A D | GitRepositoryPolicy.md | 16 [llvm-project](https://github.com/llvm/llvm-project/blob/main/CONTRIBUTING.md). 18 [llvm-project](https://github.com/llvm/llvm-project/blob/main/LICENSE.TXT).
|
H A D | InstrProfileFormat.rst | 39 .. _`require`: https://github.com/llvm/llvm-project/blob/bffdde8b8e5d9a76a47949cd0f574f3ce656e181/l… 164 .. _`VALUE_PROF_KIND`: https://github.com/llvm/llvm-project/blob/7e405eb722e40c79b7726201d0f76b5dab… 186 .. _`__llvm_profile_data`: https://github.com/llvm/llvm-project/blob/7c3b67d2038cfb48a80299089f6a13… 200 .. _`computeCFGHash`: https://github.com/llvm/llvm-project/blob/7c3b67d2038cfb48a80299089f6a1308eee… 314 .. _`updates`: https://github.com/llvm/llvm-project/blob/17ff25a58ee4f29816d932fdb75f0d305718069f/l… 387 .. _`advances`: https://github.com/llvm/llvm-project/blob/7e15fa9161eda7497a5d6abf0d951a1d12d86550/… 457 .. _`Header struct`: https://github.com/llvm/llvm-project/blob/1a2960bab6381f2b288328e2371829b460ac… 480 .. _`InstrProfRecord`: https://github.com/llvm/llvm-project/blob/7e405eb722e40c79b7726201d0f76b5dab…
|
/llvm-project/llvm/test/tools/llvm-size/ |
H A D | radix.test | 55 # OCT-SYSV-NEXT: .blob 010 040 76 # DEC-SYSV-NEXT: .blob 8 32 97 # HEX-SYSV-NEXT: .blob 0x8 0x20 156 - Name: .blob
|
/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | README.txt | 5 * https://github.com/WebAssembly/tool-conventions/blob/main/Linking.md 9 * https://github.com/WebAssembly/tool-conventions/blob/main/BasicCABI.md 34 * https://github.com/WebAssembly/design/blob/main/Semantics.md 35 * https://github.com/WebAssembly/design/blob/main/BinaryEncoding.md
|
/llvm-project/compiler-rt/lib/sanitizer_common/scripts/ |
H A D | sancov.py | 137 blob = f.read(blob_size) 139 assert len(blob) == blob_size 145 f2.write(blob)
|
/llvm-project/llvm/test/Object/X86/ |
H A D | irsymtab.ll | 12 ; BCA-NEXT: <BLOB abbrevid=4/> blob data = '\x03\x00\x00\x00\x06\x00\x00\x00\x08\x00\x00\x00L\x00… 15 ; BCA-NEXT: <BLOB abbrevid=4/> blob data = 'foobarproducerx86_64-unknown-linux-gnuirsymtab.ll'
|
/llvm-project/llvm/test/ThinLTO/X86/ |
H A D | cfi-icall-only-defuse.ll | 47 ; FOOBAZ-NEXT: <BLOB abbrevid=4/> blob data = 'barbazfoot1' 55 ; BARQUX-NEXT: <BLOB abbrevid=4/> blob data = 'barbazquxt1'
|
/llvm-project/mlir/test/lib/Dialect/Test/ |
H A D | TestDialectInterfaces.cpp | 252 FailureOr<AsmResourceBlob> blob = entry.parseAsBlob(); in parseResource() local 253 if (failed(blob)) in parseResource() 257 blobManager.update(entry.getKey(), std::move(*blob)); in parseResource()
|
/llvm-project/llvm/docs/CommandGuide/ |
H A D | llvm-strings.rst | 34 wibble blob 37 wibble blob
|
/llvm-project/llvm/test/CodeGen/X86/ |
H A D | dllexport-x86_64.ll | 126 @blob = global [6 x i8] c"\B8*\00\00\00\C3", section ".text", align 16 127 @blob_alias = dllexport alias i32 (), ptr @blob
|
/llvm-project/mlir/docs/ |
H A D | Bufferization.md | 98 [`DestinationStyleOpInterface`](https://github.com/llvm/llvm-project/blob/792d437b56adfb3416daf8105942d4899fb82763/mlir/include/mlir/Interfaces/DestinationStyleOpInterface.td). 277 [`bufferization::runOneShotBufferize`](https://github.com/llvm/llvm-project/blob/ae2764e835a26bad9774803eca0a6530df2a3e2d/mlir/include/mlir/Dialect/Bufferization/Transforms/OneShotAnalysis.h#L167). 279 [`bufferization::bufferizeOp`](https://github.com/llvm/llvm-project/blob/ae2764e835a26bad9774803eca0a6530df2a3e2d/mlir/include/mlir/Dialect/Bufferization/Transforms/Bufferize.h#L78)
|