LLVM 22.0.0git
Decompressor.h
Go to the documentation of this file.
1//===-- Decompressor.h ------------------------------------------*- C++ -*-===//
2//
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
6//
7//===----------------------------------------------------------------------===/
8
9#ifndef LLVM_OBJECT_DECOMPRESSOR_H
10#define LLVM_OBJECT_DECOMPRESSOR_H
11
12#include "llvm/ADT/ArrayRef.h"
13#include "llvm/ADT/StringRef.h"
16#include "llvm/Support/Error.h"
17
18namespace llvm {
19namespace object {
20
21/// Decompressor helps to handle decompression of compressed sections.
23public:
24 /// Create decompressor object.
25 /// @param Name Section name.
26 /// @param Data Section content.
27 /// @param IsLE Flag determines if Data is in little endian form.
28 /// @param Is64Bit Flag determines if object is 64 bit.
30 bool IsLE, bool Is64Bit);
31
32 /// Resize the buffer and uncompress section data into it.
33 /// @param Out Destination buffer.
34 template <class T> Error resizeAndDecompress(T &Out) {
35 Out.resize(DecompressedSize);
36 return decompress({(uint8_t *)Out.data(), (size_t)DecompressedSize});
37 }
38
39 /// Uncompress section data to raw buffer provided.
41
42 /// Return memory buffer size required for decompression.
43 uint64_t getDecompressedSize() { return DecompressedSize; }
44
45private:
47
48 Error consumeCompressedHeader(bool Is64Bit, bool IsLittleEndian);
49
50 StringRef SectionData;
51 uint64_t DecompressedSize;
53};
54
55} // end namespace object
56} // end namespace llvm
57
58#endif // LLVM_OBJECT_DECOMPRESSOR_H
#define LLVM_ABI
Definition: Compiler.h:213
std::string Name
Lightweight error class with error context and mandatory checking.
Definition: Error.h:159
Tagged union holding either a T or a Error.
Definition: Error.h:485
MutableArrayRef - Represent a mutable reference to an array (0 or more elements consecutively in memo...
Definition: ArrayRef.h:303
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:55
Decompressor helps to handle decompression of compressed sections.
Definition: Decompressor.h:22
Error resizeAndDecompress(T &Out)
Resize the buffer and uncompress section data into it.
Definition: Decompressor.h:34
uint64_t getDecompressedSize()
Return memory buffer size required for decompression.
Definition: Decompressor.h:43
LLVM_ABI Error decompress(MutableArrayRef< uint8_t > Output)
Uncompress section data to raw buffer provided.
static LLVM_ABI Expected< Decompressor > create(StringRef Name, StringRef Data, bool IsLE, bool Is64Bit)
Create decompressor object.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
DebugCompressionType
Definition: Compression.h:28