172 lines
5.5 KiB
C++
172 lines
5.5 KiB
C++
//===--- DWARFExpression.h - DWARF Expression handling ----------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_DEBUGINFO_DWARFEXPRESSION_H
|
|
#define LLVM_DEBUGINFO_DWARFEXPRESSION_H
|
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
#include "llvm/ADT/Optional.h"
|
|
#include "llvm/ADT/iterator.h"
|
|
#include "llvm/ADT/iterator_range.h"
|
|
#include "llvm/BinaryFormat/Dwarf.h"
|
|
#include "llvm/DebugInfo/DIContext.h"
|
|
#include "llvm/Support/DataExtractor.h"
|
|
|
|
namespace llvm {
|
|
class DWARFUnit;
|
|
class MCRegisterInfo;
|
|
class raw_ostream;
|
|
|
|
class DWARFExpression {
|
|
public:
|
|
class iterator;
|
|
|
|
/// This class represents an Operation in the Expression. Each operation can
|
|
/// have up to 2 oprerands.
|
|
///
|
|
/// An Operation can be in Error state (check with isError()). This
|
|
/// means that it couldn't be decoded successfully and if it is the
|
|
/// case, all others fields contain undefined values.
|
|
class Operation {
|
|
public:
|
|
/// Size and signedness of expression operations' operands.
|
|
enum Encoding : uint8_t {
|
|
Size1 = 0,
|
|
Size2 = 1,
|
|
Size4 = 2,
|
|
Size8 = 3,
|
|
SizeLEB = 4,
|
|
SizeAddr = 5,
|
|
SizeRefAddr = 6,
|
|
SizeBlock = 7, ///< Preceding operand contains block size
|
|
BaseTypeRef = 8,
|
|
WasmLocationArg = 30,
|
|
SignBit = 0x80,
|
|
SignedSize1 = SignBit | Size1,
|
|
SignedSize2 = SignBit | Size2,
|
|
SignedSize4 = SignBit | Size4,
|
|
SignedSize8 = SignBit | Size8,
|
|
SignedSizeLEB = SignBit | SizeLEB,
|
|
SizeNA = 0xFF ///< Unused operands get this encoding.
|
|
};
|
|
|
|
enum DwarfVersion : uint8_t {
|
|
DwarfNA, ///< Serves as a marker for unused entries
|
|
Dwarf2 = 2,
|
|
Dwarf3,
|
|
Dwarf4,
|
|
Dwarf5
|
|
};
|
|
|
|
/// Description of the encoding of one expression Op.
|
|
struct Description {
|
|
DwarfVersion Version; ///< Dwarf version where the Op was introduced.
|
|
Encoding Op[2]; ///< Encoding for Op operands, or SizeNA.
|
|
|
|
Description(DwarfVersion Version = DwarfNA, Encoding Op1 = SizeNA,
|
|
Encoding Op2 = SizeNA)
|
|
: Version(Version) {
|
|
Op[0] = Op1;
|
|
Op[1] = Op2;
|
|
}
|
|
};
|
|
|
|
private:
|
|
friend class DWARFExpression::iterator;
|
|
uint8_t Opcode; ///< The Op Opcode, DW_OP_<something>.
|
|
Description Desc;
|
|
bool Error;
|
|
uint64_t EndOffset;
|
|
uint64_t Operands[2];
|
|
uint64_t OperandEndOffsets[2];
|
|
|
|
public:
|
|
Description &getDescription() { return Desc; }
|
|
uint8_t getCode() { return Opcode; }
|
|
uint64_t getRawOperand(unsigned Idx) { return Operands[Idx]; }
|
|
uint64_t getOperandEndOffset(unsigned Idx) { return OperandEndOffsets[Idx]; }
|
|
uint64_t getEndOffset() { return EndOffset; }
|
|
bool extract(DataExtractor Data, uint8_t AddressSize, uint64_t Offset,
|
|
Optional<dwarf::DwarfFormat> Format);
|
|
bool isError() { return Error; }
|
|
bool print(raw_ostream &OS, DIDumpOptions DumpOpts,
|
|
const DWARFExpression *Expr, const MCRegisterInfo *RegInfo,
|
|
DWARFUnit *U, bool isEH);
|
|
bool verify(DWARFUnit *U);
|
|
};
|
|
|
|
/// An iterator to go through the expression operations.
|
|
class iterator
|
|
: public iterator_facade_base<iterator, std::forward_iterator_tag,
|
|
Operation> {
|
|
friend class DWARFExpression;
|
|
const DWARFExpression *Expr;
|
|
uint64_t Offset;
|
|
Operation Op;
|
|
iterator(const DWARFExpression *Expr, uint64_t Offset)
|
|
: Expr(Expr), Offset(Offset) {
|
|
Op.Error =
|
|
Offset >= Expr->Data.getData().size() ||
|
|
!Op.extract(Expr->Data, Expr->AddressSize, Offset, Expr->Format);
|
|
}
|
|
|
|
public:
|
|
class Operation &operator++() {
|
|
Offset = Op.isError() ? Expr->Data.getData().size() : Op.EndOffset;
|
|
Op.Error =
|
|
Offset >= Expr->Data.getData().size() ||
|
|
!Op.extract(Expr->Data, Expr->AddressSize, Offset, Expr->Format);
|
|
return Op;
|
|
}
|
|
|
|
class Operation &operator*() {
|
|
return Op;
|
|
}
|
|
|
|
iterator skipBytes(uint64_t Add) {
|
|
return iterator(Expr, Op.EndOffset + Add);
|
|
}
|
|
|
|
// Comparison operators are provided out of line.
|
|
friend bool operator==(const iterator &, const iterator &);
|
|
};
|
|
|
|
DWARFExpression(DataExtractor Data, uint8_t AddressSize,
|
|
Optional<dwarf::DwarfFormat> Format = None)
|
|
: Data(Data), AddressSize(AddressSize), Format(Format) {
|
|
assert(AddressSize == 8 || AddressSize == 4 || AddressSize == 2);
|
|
}
|
|
|
|
iterator begin() const { return iterator(this, 0); }
|
|
iterator end() const { return iterator(this, Data.getData().size()); }
|
|
|
|
void print(raw_ostream &OS, DIDumpOptions DumpOpts,
|
|
const MCRegisterInfo *RegInfo, DWARFUnit *U,
|
|
bool IsEH = false) const;
|
|
|
|
/// Print the expression in a format intended to be compact and useful to a
|
|
/// user, but not perfectly unambiguous, or capable of representing every
|
|
/// valid DWARF expression. Returns true if the expression was sucessfully
|
|
/// printed.
|
|
bool printCompact(raw_ostream &OS, const MCRegisterInfo &RegInfo);
|
|
|
|
bool verify(DWARFUnit *U);
|
|
|
|
private:
|
|
DataExtractor Data;
|
|
uint8_t AddressSize;
|
|
Optional<dwarf::DwarfFormat> Format;
|
|
};
|
|
|
|
inline bool operator==(const DWARFExpression::iterator &LHS,
|
|
const DWARFExpression::iterator &RHS) {
|
|
return LHS.Expr == RHS.Expr && LHS.Offset == RHS.Offset;
|
|
}
|
|
}
|
|
#endif
|