Alexey Samsonov | 2fb337e | 2013-04-23 08:28:39 +0000 | [diff] [blame] | 1 | //===--- Compression.cpp - Compression implementation ---------------------===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Alexey Samsonov | 2fb337e | 2013-04-23 08:28:39 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file implements compression functions. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | #include "llvm/Support/Compression.h" |
Benjamin Kramer | 16132e6 | 2015-03-23 18:07:13 +0000 | [diff] [blame] | 14 | #include "llvm/ADT/SmallVector.h" |
Alexey Samsonov | 2fb337e | 2013-04-23 08:28:39 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/StringRef.h" |
| 16 | #include "llvm/Config/config.h" |
Alexey Samsonov | 0c9f1bf | 2013-04-23 12:17:46 +0000 | [diff] [blame] | 17 | #include "llvm/Support/Compiler.h" |
George Rimar | 167ca4a | 2017-01-17 15:45:07 +0000 | [diff] [blame] | 18 | #include "llvm/Support/Error.h" |
Alexey Samsonov | 2fb337e | 2013-04-23 08:28:39 +0000 | [diff] [blame] | 19 | #include "llvm/Support/ErrorHandling.h" |
Alexey Samsonov | 2fb337e | 2013-04-23 08:28:39 +0000 | [diff] [blame] | 20 | #if LLVM_ENABLE_ZLIB == 1 && HAVE_ZLIB_H |
| 21 | #include <zlib.h> |
| 22 | #endif |
| 23 | |
| 24 | using namespace llvm; |
| 25 | |
Alexey Samsonov | 28acf05 | 2013-04-23 08:57:30 +0000 | [diff] [blame] | 26 | #if LLVM_ENABLE_ZLIB == 1 && HAVE_LIBZ |
George Rimar | 167ca4a | 2017-01-17 15:45:07 +0000 | [diff] [blame] | 27 | static Error createError(StringRef Err) { |
| 28 | return make_error<StringError>(Err, inconvertibleErrorCode()); |
| 29 | } |
| 30 | |
George Rimar | 167ca4a | 2017-01-17 15:45:07 +0000 | [diff] [blame] | 31 | static StringRef convertZlibCodeToString(int Code) { |
| 32 | switch (Code) { |
| 33 | case Z_MEM_ERROR: |
| 34 | return "zlib error: Z_MEM_ERROR"; |
| 35 | case Z_BUF_ERROR: |
| 36 | return "zlib error: Z_BUF_ERROR"; |
| 37 | case Z_STREAM_ERROR: |
| 38 | return "zlib error: Z_STREAM_ERROR"; |
| 39 | case Z_DATA_ERROR: |
| 40 | return "zlib error: Z_DATA_ERROR"; |
| 41 | case Z_OK: |
| 42 | default: |
| 43 | llvm_unreachable("unknown or unexpected zlib status code"); |
Alexey Samsonov | 2fb337e | 2013-04-23 08:28:39 +0000 | [diff] [blame] | 44 | } |
| 45 | } |
| 46 | |
| 47 | bool zlib::isAvailable() { return true; } |
George Rimar | 167ca4a | 2017-01-17 15:45:07 +0000 | [diff] [blame] | 48 | |
| 49 | Error zlib::compress(StringRef InputBuffer, |
Rui Ueyama | 2c97adc | 2018-08-04 00:13:13 +0000 | [diff] [blame] | 50 | SmallVectorImpl<char> &CompressedBuffer, int Level) { |
Alexey Samsonov | 2fb337e | 2013-04-23 08:28:39 +0000 | [diff] [blame] | 51 | unsigned long CompressedSize = ::compressBound(InputBuffer.size()); |
Fangrui Song | 23310a8 | 2018-08-03 19:37:49 +0000 | [diff] [blame] | 52 | CompressedBuffer.reserve(CompressedSize); |
Rui Ueyama | 2c97adc | 2018-08-04 00:13:13 +0000 | [diff] [blame] | 53 | int Res = |
| 54 | ::compress2((Bytef *)CompressedBuffer.data(), &CompressedSize, |
| 55 | (const Bytef *)InputBuffer.data(), InputBuffer.size(), Level); |
Evgeniy Stepanov | 28cacae | 2014-11-25 15:24:07 +0000 | [diff] [blame] | 56 | // Tell MemorySanitizer that zlib output buffer is fully initialized. |
| 57 | // This avoids a false report when running LLVM with uninstrumented ZLib. |
| 58 | __msan_unpoison(CompressedBuffer.data(), CompressedSize); |
Fangrui Song | 23310a8 | 2018-08-03 19:37:49 +0000 | [diff] [blame] | 59 | CompressedBuffer.set_size(CompressedSize); |
George Rimar | 167ca4a | 2017-01-17 15:45:07 +0000 | [diff] [blame] | 60 | return Res ? createError(convertZlibCodeToString(Res)) : Error::success(); |
Alexey Samsonov | 2fb337e | 2013-04-23 08:28:39 +0000 | [diff] [blame] | 61 | } |
| 62 | |
George Rimar | 167ca4a | 2017-01-17 15:45:07 +0000 | [diff] [blame] | 63 | Error zlib::uncompress(StringRef InputBuffer, char *UncompressedBuffer, |
| 64 | size_t &UncompressedSize) { |
| 65 | int Res = |
Rafael Espindola | 46cdcb0 | 2016-09-09 19:32:36 +0000 | [diff] [blame] | 66 | ::uncompress((Bytef *)UncompressedBuffer, (uLongf *)&UncompressedSize, |
George Rimar | 167ca4a | 2017-01-17 15:45:07 +0000 | [diff] [blame] | 67 | (const Bytef *)InputBuffer.data(), InputBuffer.size()); |
Rafael Espindola | 46cdcb0 | 2016-09-09 19:32:36 +0000 | [diff] [blame] | 68 | // Tell MemorySanitizer that zlib output buffer is fully initialized. |
| 69 | // This avoids a false report when running LLVM with uninstrumented ZLib. |
| 70 | __msan_unpoison(UncompressedBuffer, UncompressedSize); |
George Rimar | 167ca4a | 2017-01-17 15:45:07 +0000 | [diff] [blame] | 71 | return Res ? createError(convertZlibCodeToString(Res)) : Error::success(); |
Rafael Espindola | 46cdcb0 | 2016-09-09 19:32:36 +0000 | [diff] [blame] | 72 | } |
| 73 | |
George Rimar | 167ca4a | 2017-01-17 15:45:07 +0000 | [diff] [blame] | 74 | Error zlib::uncompress(StringRef InputBuffer, |
| 75 | SmallVectorImpl<char> &UncompressedBuffer, |
| 76 | size_t UncompressedSize) { |
David Blaikie | a505f24 | 2014-04-05 21:26:44 +0000 | [diff] [blame] | 77 | UncompressedBuffer.resize(UncompressedSize); |
George Rimar | 167ca4a | 2017-01-17 15:45:07 +0000 | [diff] [blame] | 78 | Error E = |
Rafael Espindola | 46cdcb0 | 2016-09-09 19:32:36 +0000 | [diff] [blame] | 79 | uncompress(InputBuffer, UncompressedBuffer.data(), UncompressedSize); |
David Blaikie | a505f24 | 2014-04-05 21:26:44 +0000 | [diff] [blame] | 80 | UncompressedBuffer.resize(UncompressedSize); |
George Rimar | 167ca4a | 2017-01-17 15:45:07 +0000 | [diff] [blame] | 81 | return E; |
Alexey Samsonov | 2fb337e | 2013-04-23 08:28:39 +0000 | [diff] [blame] | 82 | } |
| 83 | |
Alexey Samsonov | 6ede706 | 2013-08-14 16:03:29 +0000 | [diff] [blame] | 84 | uint32_t zlib::crc32(StringRef Buffer) { |
| 85 | return ::crc32(0, (const Bytef *)Buffer.data(), Buffer.size()); |
| 86 | } |
| 87 | |
Alexey Samsonov | 2fb337e | 2013-04-23 08:28:39 +0000 | [diff] [blame] | 88 | #else |
| 89 | bool zlib::isAvailable() { return false; } |
George Rimar | 167ca4a | 2017-01-17 15:45:07 +0000 | [diff] [blame] | 90 | Error zlib::compress(StringRef InputBuffer, |
Rui Ueyama | e9798f7 | 2018-08-04 00:23:37 +0000 | [diff] [blame] | 91 | SmallVectorImpl<char> &CompressedBuffer, int Level) { |
George Rimar | 167ca4a | 2017-01-17 15:45:07 +0000 | [diff] [blame] | 92 | llvm_unreachable("zlib::compress is unavailable"); |
Alexey Samsonov | 2fb337e | 2013-04-23 08:28:39 +0000 | [diff] [blame] | 93 | } |
George Rimar | 167ca4a | 2017-01-17 15:45:07 +0000 | [diff] [blame] | 94 | Error zlib::uncompress(StringRef InputBuffer, char *UncompressedBuffer, |
| 95 | size_t &UncompressedSize) { |
| 96 | llvm_unreachable("zlib::uncompress is unavailable"); |
Rafael Espindola | 7494123 | 2016-09-12 13:00:51 +0000 | [diff] [blame] | 97 | } |
George Rimar | 167ca4a | 2017-01-17 15:45:07 +0000 | [diff] [blame] | 98 | Error zlib::uncompress(StringRef InputBuffer, |
| 99 | SmallVectorImpl<char> &UncompressedBuffer, |
| 100 | size_t UncompressedSize) { |
| 101 | llvm_unreachable("zlib::uncompress is unavailable"); |
Alexey Samsonov | 2fb337e | 2013-04-23 08:28:39 +0000 | [diff] [blame] | 102 | } |
Alexey Samsonov | 6ede706 | 2013-08-14 16:03:29 +0000 | [diff] [blame] | 103 | uint32_t zlib::crc32(StringRef Buffer) { |
| 104 | llvm_unreachable("zlib::crc32 is unavailable"); |
| 105 | } |
Alexey Samsonov | 2fb337e | 2013-04-23 08:28:39 +0000 | [diff] [blame] | 106 | #endif |