42 if (!
Data.isValidOffsetForDataOfSize(
Offset, 4))
44 "0x%8.8" PRIx64
": missing FunctionInfo Size",
Offset);
46 if (!
Data.isValidOffsetForDataOfSize(
Offset, 4))
48 "0x%8.8" PRIx64
": missing FunctionInfo Name",
Offset);
52 "0x%8.8" PRIx64
": invalid FunctionInfo Name value 0x%8.8x",
56 if (!
Data.isValidOffsetForDataOfSize(
Offset, 4))
58 "0x%8.8" PRIx64
": missing FunctionInfo InfoType value",
Offset);
60 if (!
Data.isValidOffsetForDataOfSize(
Offset, 4))
62 "0x%8.8" PRIx64
": missing FunctionInfo InfoType length",
Offset);
64 if (!
Data.isValidOffsetForDataOfSize(
Offset, InfoLength))
66 "0x%8.8" PRIx64
": missing FunctionInfo data for InfoType %u",
69 Data.isLittleEndian(),
70 Data.getAddressSize());
72 case InfoType::EndOfList:
76 case InfoType::LineTableInfo:
80 return LT.takeError();
83 case InfoType::InlineInfo:
87 return II.takeError();
90 case InfoType::MergedFunctionsInfo:
95 return MI.takeError();
100 "0x%8.8" PRIx64
": unsupported InfoType %u",
105 return std::move(FI);
124 bool NoPadding)
const {
127 "attempted to encode invalid FunctionInfo object");
129 if (NoPadding ==
false)
141 return FuncInfoOffset;
150 Out.
writeU32(InfoType::LineTableInfo);
154 const auto StartOffset = Out.
tell();
157 return std::move(err);
161 "LineTable length is greater than UINT32_MAX");
172 const auto StartOffset = Out.
tell();
175 return std::move(err);
179 "InlineInfo length is greater than UINT32_MAX");
186 Out.
writeU32(InfoType::MergedFunctionsInfo);
190 const auto StartOffset = Out.
tell();
193 return std::move(err);
197 std::errc::invalid_argument,
198 "MergedFunctionsInfo length is greater than UINT32_MAX");
206 return FuncInfoOffset;
223 "FunctionInfo data is truncated");
229 "address 0x%" PRIx64
" is not in GSYM",
Addr);
233 "0x%8.8" PRIx64
": invalid FunctionInfo Name value 0x00000000",
238 std::optional<DataExtractor> InlineInfoData;
240 if (!
Data.isValidOffsetForDataOfSize(
Offset, 8))
242 "FunctionInfo data is truncated");
246 if (InfoLength != InfoBytes.
size())
248 "FunctionInfo data is truncated");
250 Data.getAddressSize());
252 case InfoType::EndOfList:
256 case InfoType::LineTableInfo:
260 return ExpectedLE.takeError();
263 case InfoType::InlineInfo:
266 InlineInfoData = InfoData;
288 "failed to extract file[%" PRIu32
"]",
306 return std::move(Err);
static cl::opt< ITMode > IT(cl::desc("IT block support"), cl::Hidden, cl::init(DefaultIT), cl::values(clEnumValN(DefaultIT, "arm-default-it", "Generate any type of IT block"), clEnumValN(RestrictedIT, "arm-restrict-it", "Disallow complex IT blocks")))
InfoType
FunctionInfo information type that is used to encode the optional data that is associated with a Func...
uint64_t IntrinsicInst * II
bool contains(uint64_t Addr) const
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Lightweight error class with error context and mandatory checking.
Tagged union holding either a T or a Error.
pointer data()
Return a pointer to the vector's buffer, even if empty().
StringRef - Represent a constant reference to a string, i.e.
constexpr size_t size() const
size - Get the string size.
A simplified binary data writer class that doesn't require targets, target definitions,...
uint64_t tell()
Return the current offset within the file.
void fixup32(uint32_t Value, uint64_t Offset)
Fixup a uint32_t value at the specified offset in the stream.
void alignTo(size_t Align)
Pad with zeroes at the current file position until the current file position matches the specified al...
void writeU32(uint32_t Value)
Write a single uint32_t value into the stream at the current file position.
void writeData(llvm::ArrayRef< uint8_t > Data)
Write an array of uint8_t values into the stream at the current file position.
llvm::endianness getByteOrder() const
GsymReader is used to read GSYM data from a file or buffer.
std::optional< FileEntry > getFile(uint32_t Index) const
Get the a file entry for the suppplied file index.
StringRef getString(uint32_t Offset) const
Get a string from the string table.
static llvm::Expected< LineTable > decode(DataExtractor &Data, uint64_t BaseAddr)
Decode an LineTable object from a binary data stream.
static Expected< LineEntry > lookup(DataExtractor &Data, uint64_t BaseAddr, uint64_t Addr)
Lookup a single address within a line table's data.
This class implements an extremely fast bulk output stream that can only output to a stream.
A raw_ostream that writes to an SmallVector or SmallString.
raw_ostream & operator<<(raw_ostream &OS, const FunctionInfo &R)
This is an optimization pass for GlobalISel generic memory operations.
Error createStringError(std::error_code EC, char const *Fmt, const Ts &... Vals)
Create formatted StringError object.
void consumeError(Error Err)
Consume a Error without doing anything.
Function information in GSYM files encodes information for one contiguous address range.
std::optional< InlineInfo > Inline
std::optional< MergedFunctionsInfo > MergedFunctions
bool isValid() const
Query if a FunctionInfo object is valid.
static llvm::Expected< LookupResult > lookup(DataExtractor &Data, const GsymReader &GR, uint64_t FuncAddr, uint64_t Addr)
Lookup an address within a FunctionInfo object's data stream.
uint64_t cacheEncoding()
Encode this function info into the internal byte cache and return the size in bytes.
uint32_t Name
String table offset in the string table.
llvm::Expected< uint64_t > encode(FileWriter &O, bool NoPadding=false) const
Encode this object into FileWriter stream.
SmallString< 32 > EncodingCache
If we encode a FunctionInfo during segmenting so we know its size, we can cache that encoding here so...
std::optional< LineTable > OptLineTable
Inline information stores the name of the inline function along with an array of address ranges.
static llvm::Error lookup(const GsymReader &GR, DataExtractor &Data, uint64_t BaseAddr, uint64_t Addr, SourceLocations &SrcLocs)
Lookup a single address within the inline info data.
static llvm::Expected< InlineInfo > decode(DataExtractor &Data, uint64_t BaseAddr)
Decode an InlineInfo object from a binary data stream.
Line entries are used to encode the line tables in FunctionInfo objects.
uint32_t File
1 based index of file in FileTable
uint32_t Line
Source line number.
uint64_t LookupAddr
The address that this lookup pertains to.
AddressRange FuncRange
The concrete function address range.
StringRef FuncName
The concrete function name that contains LookupAddr.
SourceLocations Locations
The source locations that match this address.
static llvm::Expected< MergedFunctionsInfo > decode(DataExtractor &Data, uint64_t BaseAddr)
Decode an MergedFunctionsInfo object from a binary data stream.
StringRef Base
Line entry source file basename.
uint32_t Line
Source file line number.
uint32_t Offset
Byte size offset within the named function.
StringRef Dir
Line entry source file directory path.
StringRef Name
Function or symbol name.