mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
cb9ede7cd2
No any changes, will follow up with D28807 commit containing APLi change for clang to fix build issues happened. Original commit message: [Support/Compression] - Change zlib API to return Error instead of custom status. Previously API returned custom enum values. Patch changes it to return Error with string description. That should help users to report errors in universal way. Differential revision: https://reviews.llvm.org/D28684 llvm-svn: 292226
53 lines
1.3 KiB
C++
53 lines
1.3 KiB
C++
//===-- llvm/Support/Compression.h ---Compression----------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file contains basic functions for compression/uncompression.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_SUPPORT_COMPRESSION_H
|
|
#define LLVM_SUPPORT_COMPRESSION_H
|
|
|
|
#include "llvm/Support/DataTypes.h"
|
|
|
|
namespace llvm {
|
|
template <typename T> class SmallVectorImpl;
|
|
class Error;
|
|
class StringRef;
|
|
|
|
namespace zlib {
|
|
|
|
enum CompressionLevel {
|
|
NoCompression,
|
|
DefaultCompression,
|
|
BestSpeedCompression,
|
|
BestSizeCompression
|
|
};
|
|
|
|
bool isAvailable();
|
|
|
|
Error compress(StringRef InputBuffer, SmallVectorImpl<char> &CompressedBuffer,
|
|
CompressionLevel Level = DefaultCompression);
|
|
|
|
Error uncompress(StringRef InputBuffer, char *UncompressedBuffer,
|
|
size_t &UncompressedSize);
|
|
|
|
Error uncompress(StringRef InputBuffer,
|
|
SmallVectorImpl<char> &UncompressedBuffer,
|
|
size_t UncompressedSize);
|
|
|
|
uint32_t crc32(StringRef Buffer);
|
|
|
|
} // End of namespace zlib
|
|
|
|
} // End of namespace llvm
|
|
|
|
#endif
|
|
|