/llvm-project/llvm/lib/Support/ |
H A D | Compression.cpp | 58 Error compression::decompress(DebugCompressionType T, ArrayRef<uint8_t> Input, in decompress() function in compression 62 return zlib::decompress(Input, Output, UncompressedSize); in decompress() 64 return zstd::decompress(Input, Output, UncompressedSize); in decompress() 69 Error compression::decompress(compression::Format F, ArrayRef<uint8_t> Input, in decompress() function in compression 74 return zlib::decompress(Input, Output, UncompressedSize); in decompress() 76 return zstd::decompress(Input, Output, UncompressedSize); in decompress() 81 Error compression::decompress(DebugCompressionType T, ArrayRef<uint8_t> Input, in decompress() function in compression 84 return decompress(formatFor(T), Input, Output, UncompressedSize); in decompress() 123 Error zlib::decompress(ArrayRef<uint8_t> Input, uint8_t *Output, in decompress() function in zlib 135 Error zlib::decompress(ArrayRe function in zlib 151 Error zlib::decompress(ArrayRef<uint8_t> Input, uint8_t *UncompressedBuffer, decompress() function in zlib 155 Error zlib::decompress(ArrayRef<uint8_t> Input, decompress() function in zlib 204 Error zstd::decompress(ArrayRef<uint8_t> Input, uint8_t *Output, decompress() function in zstd 217 Error zstd::decompress(ArrayRef<uint8_t> Input, decompress() function in zstd 234 Error zstd::decompress(ArrayRef<uint8_t> Input, uint8_t *Output, decompress() function in zstd 238 Error zstd::decompress(ArrayRef<uint8_t> Input, decompress() function in zstd [all...] |
/llvm-project/llvm/include/llvm/Support/ |
H A D | Compression.h | 47 Error decompress(ArrayRef<uint8_t> Input, uint8_t *Output, 50 Error decompress(ArrayRef<uint8_t> Input, SmallVectorImpl<uint8_t> &Output, 68 Error decompress(ArrayRef<uint8_t> Input, uint8_t *Output, 71 Error decompress(ArrayRef<uint8_t> Input, SmallVectorImpl<uint8_t> &Output, 120 Error decompress(DebugCompressionType T, ArrayRef<uint8_t> Input, 122 Error decompress(Format F, ArrayRef<uint8_t> Input, 124 Error decompress(DebugCompressionType T, ArrayRef<uint8_t> Input,
|
/llvm-project/llvm/unittests/Support/ |
H A D | CompressionTest.cpp | 32 Error E = zlib::decompress(Compressed, Uncompressed, Input.size()); in testZlibCompression() 37 E = compression::decompress(DebugCompressionType::Zlib, Compressed, in testZlibCompression() 44 E = zlib::decompress(Compressed, Uncompressed, Input.size() - 1); in testZlibCompression() 77 Error E = zstd::decompress(Compressed, Uncompressed, Input.size()); in testZstdCompression() 82 E = compression::decompress(DebugCompressionType::Zstd, Compressed, in testZstdCompression() 89 E = zstd::decompress(Compressed, Uncompressed, Input.size() - 1); in testZstdCompression()
|
/llvm-project/clang-tools-extra/clangd/index/dex/ |
H A D | PostingList.cpp | 28 DecompressedChunk = CurrentChunk->decompress(); in ChunkIterator() 79 for (const DocID Doc : C.decompress()) { in dump() 96 DecompressedChunk = CurrentChunk->decompress(); in normalizeCursor() 108 DecompressedChunk = CurrentChunk->decompress(); in advanceToChunk() 204 llvm::SmallVector<DocID, Chunk::PayloadSize + 1> Chunk::decompress() const { in decompress() function in clang::clangd::dex::Chunk
|
H A D | PostingList.h | 46 llvm::SmallVector<DocID, PayloadSize + 1> decompress() const;
|
/llvm-project/utils/bazel/third_party_build/ |
H A D | zstd.BUILD | 30 "lib/decompress/*.c", 31 "lib/decompress/*.h", 32 "lib/decompress/*.S",
|
/llvm-project/llvm/test/tools/llvm-objcopy/ELF/ |
H A D | compress-debug-sections-zstd.test | 6 # RUN: llvm-objcopy --decompress-debug-sections %t-zstd %t-de 40 # RUN: llvm-objcopy --decompress-debug-sections %t32-zstd %t32-de 44 # RUN: not llvm-objcopy --decompress-debug-sections %t-corrupted /dev/null 2>&1 | FileCheck %s -DFI… 46 # ERR: error: '[[FILE]]': failed to decompress section '.debug_info': Src size is incorrect
|
H A D | compress-and-decompress-debug-sections-error.test | 4 # RUN: not llvm-objcopy --compress-debug-sections=zlib --decompress-debug-sections %t.o 2>&1 | File… 6 # CHECK: cannot specify both --compress-debug-sections and --decompress-debug-sections
|
H A D | decompress-debug-sections-unsupported-zlib.test | 3 # RUN: not llvm-objcopy --decompress-debug-sections %t /dev/null 2>&1 | FileCheck %s -DFILE=%t 5 # CHECK: error: '[[FILE]]': failed to decompress section '.debug_info': LLVM was not built with LLV…
|
H A D | compress-debug-sections-zlib.test | 6 # RUN: llvm-objcopy --decompress-debug-sections %t-zlib.o %t-un.o 35 # RUN: not llvm-objcopy --decompress-debug-sections %t-corrupted /dev/null 2>&1 | FileCheck %s -DFI… 37 # ERR: error: '[[FILE]]': failed to decompress section '.debug_info': zlib error: Z_DATA_ERROR
|
H A D | decompress-debug-sections-err.test | 3 # RUN: not llvm-objcopy --decompress-debug-sections %t /dev/null 2>&1 | FileCheck %s -DFILE=%t 5 # CHECK: error: '[[FILE]]': --decompress-debug-sections: ch_type (3) of section '.debug_info'…
|
H A D | compress-debug-sections.test | 9 # RUN: llvm-objcopy --decompress-debug-sections %tz.o %t2.o
|
H A D | compress-debug-sections-groups.test | 14 # RUN: llvm-objcopy --decompress-debug-sections %t-compressed.o %t-decompressed.o
|
/llvm-project/llvm/include/llvm/Object/ |
H A D | Decompressor.h | 35 return decompress({(uint8_t *)Out.data(), (size_t)DecompressedSize}); in resizeAndDecompress() 39 Error decompress(MutableArrayRef<uint8_t> Output);
|
/llvm-project/llvm/test/tools/llvm-readobj/ELF/ |
H A D | decompress-zstd.test | 2 ## Test --decompress/-z for zstd. 7 # RUN: llvm-readobj --decompress -p .strings %t | FileCheck %s --check-prefix=STR
|
H A D | decompress-zlib.test | 2 ## Test --decompress/-z. 7 # RUN: llvm-readobj --decompress -p .strings -p .not_null_terminated %t | FileCheck %s --check-pref…
|
/llvm-project/llvm/lib/Object/ |
H A D | Decompressor.cpp | 66 Error Decompressor::decompress(MutableArrayRef<uint8_t> Output) { in decompress() function in Decompressor 67 return compression::decompress(CompressionType, in decompress()
|
/llvm-project/lld/test/ELF/ |
H A D | compressed-input-err.s | 14 ## Check we are able to report zlib decompress errors. 15 # CHECK: error: {{.*}}.o:(.debug_info): decompress failed: zlib error: Z_DATA_ERROR
|
H A D | compress-debug-sections-zstd.s | 19 # RUN: llvm-objcopy --decompress-debug-sections %t.so
|
/llvm-project/llvm/test/MC/ELF/ |
H A D | compress-debug-sections-zstd.s | 22 ## The compress/decompress round trip should be identical to the uncompressed output. 24 # RUN: llvm-objcopy --decompress-debug-sections %t %t.decom
|
H A D | compress-debug-sections-zlib.s | 135 # llvm-dwarfdump tool will be able to decompress data back and dump it. Data sample
|
/llvm-project/polly/lib/External/isl/ |
H A D | isl_scheduler.c | 500 isl_pw_multi_aff_free(node->decompress); in clear_node() 794 __isl_take isl_pw_multi_aff *decompress) in compress_node() argument 801 node->decompress = decompress; in compress_node() 808 node->decompress = isl_pw_multi_aff_pullback_pw_multi_aff( in compress_node() 809 node->decompress, decompress); in compress_node() 812 if (!node->hull || !node->compress || !node->decompress) in compress_node() 846 isl_pw_multi_aff *decompress, *pma; in project_out_fixed() local 858 decompress = isl_pw_multi_aff_from_multi_pw_aff(mpa); in project_out_fixed() 864 decompress = isl_pw_multi_aff_reset_space(decompress, space); in project_out_fixed() 866 isl_pw_multi_aff_copy(decompress), isl_multi_aff_copy(compress)); in project_out_fixed() [all …]
|
/llvm-project/llvm/test/DebugInfo/ |
H A D | dwarfdump-decompression-corrupt.test | 6 CHECK: error: failed to decompress '', corrupted compressed section header
|
H A D | dwarfdump-decompression-error.test | 15 CHECK: error: failed to decompress '.debug_info', zlib error: Z_DATA_ERROR
|
/llvm-project/llvm/tools/llvm-readobj/ |
H A D | Opts.td | 24 def decompress : FF<"decompress", "Dump decompressed section content when used with -x or -p">; 143 def : F<"z", "Alias for --decompress">, Alias<decompress>;
|