Home
last modified time | relevance | path

Searched refs:blob (Results 1 – 25 of 159) sorted by relevance

1234567

/llvm-project/mlir/include/mlir/IR/
H A DDialectResourceBlobManager.h43 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 DAsmState.h53 /// 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 Dloongarch-interlink.test4 # 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 Drelative-submodule-topheader.m5 // 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 Dmodule-file-home-is-cwd.m11 // 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 Dadd-gnu-debuglink.test2 # 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 Dtail-merged-string-tables.test30 # 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 Dfile-metadata-resources.mlir3 // Check that we only preserve the blob that got referenced.
14 // CHECK-NEXT: blob: "0x08000000010000000000000002000000000000000300000000000000"
35 blob: "0x08000000010000000000000002000000000000000300000000000000",
H A Dinvalid-file-metadata.mlir73 // 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 Dpretty-resources-print.mlir33 blob: "0x08000000010000000000000002000000000000000300000000000000",
/llvm-project/mlir/lib/IR/
H A DDialectResourceBlobManager.cpp34 std::optional<AsmResourceBlob> blob) in insert() argument
42 it.first->second.initialize(it.first->getKey(), std::move(blob)); in insert()
H A DBuiltinDialect.cpp94 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 DConvertLaunchFuncToVulkanCalls.cpp
/llvm-project/mlir/docs/Dialects/
H A DArmSME.md14 * [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 DGitRepositoryPolicy.md16 [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 DInstrProfileFormat.rst39 .. _`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 Dradix.test55 # 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 DREADME.txt5 * 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 Dsancov.py137 blob = f.read(blob_size)
139 assert len(blob) == blob_size
145 f2.write(blob)
/llvm-project/llvm/test/Object/X86/
H A Dirsymtab.ll12 ; 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 Dcfi-icall-only-defuse.ll47 ; 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 DTestDialectInterfaces.cpp252 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 Dllvm-strings.rst34 wibble blob
37 wibble blob
/llvm-project/llvm/test/CodeGen/X86/
H A Ddllexport-x86_64.ll126 @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 DBufferization.md98 [`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)

1234567