26#define ENUM_TO_CSTR(e) \
41 return "<unknown CFIProgram::OperandType>";
49 "operand index %" PRIu32
" is not valid",
58 "op[%" PRIu32
"] has type %s which has no value",
66 "op[%" PRIu32
"] has OperandType OT_Offset which produces a signed "
67 "result, call getOperandAsSigned instead",
77 if (CodeAlignmentFactor == 0)
80 "op[%" PRIu32
"] has type OT_FactoredCodeOffset but code alignment "
83 return Operand * CodeAlignmentFactor;
94 "operand index %" PRIu32
" is not valid",
103 "op[%" PRIu32
"] has type %s which has no value",
111 "op[%" PRIu32
"] has OperandType %s which produces an unsigned result, "
112 "call getOperandAsUnsigned instead",
116 return (int64_t)Operand;
120 const int64_t DataAlignmentFactor = CFIP.
dataAlign();
121 if (DataAlignmentFactor == 0)
123 "op[%" PRIu32
"] has type %s but data "
126 return int64_t(Operand) * DataAlignmentFactor;
130 const int64_t DataAlignmentFactor = CFIP.
dataAlign();
131 if (DataAlignmentFactor == 0)
134 "] has type OT_UnsignedFactDataOffset but data "
137 return Operand * DataAlignmentFactor;
146 static bool Initialized =
false;
152#define DECLARE_OP3(OP, OPTYPE0, OPTYPE1, OPTYPE2) \
154 OpTypes[OP][0] = OPTYPE0; \
155 OpTypes[OP][1] = OPTYPE1; \
156 OpTypes[OP][2] = OPTYPE2; \
158#define DECLARE_OP2(OP, OPTYPE0, OPTYPE1) \
159 DECLARE_OP3(OP, OPTYPE0, OPTYPE1, OT_None)
160#define DECLARE_OP1(OP, OPTYPE0) DECLARE_OP2(OP, OPTYPE0, OT_None)
161#define DECLARE_OP0(OP) DECLARE_OP1(OP, OT_None)
194 DECLARE_OP0(DW_CFA_AARCH64_negate_ra_state_with_pc);
#define DECLARE_OP3(OP, OPTYPE0, OPTYPE1, OPTYPE2)
#define DECLARE_OP2(OP, OPTYPE0, OPTYPE1)
#define DECLARE_OP1(OP, OPTYPE0)
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Tagged union holding either a T or a Error.
StringRef - Represent a constant reference to a string, i.e.
The instances of the Type class are immutable: once they are created, they are never changed.
Represent a sequence of Call Frame Information instructions that, when read in order,...
OperandType
Types of operands to CFI instructions In DWARF, this type is implicitly tied to a CFI instruction opc...
@ OT_SignedFactDataOffset
@ OT_UnsignedFactDataOffset
uint64_t codeAlign() const
static constexpr size_t MaxOperands
static LLVM_ABI ArrayRef< OperandType[MaxOperands]> getOperandTypes()
Retrieve the array describing the types of operands according to the enum above.
int64_t dataAlign() const
static LLVM_ABI const char * operandTypeString(OperandType OT)
Get the OperandType as a "const char *".
LLVM_ABI StringRef callFrameString(unsigned Opcode) const
Get a DWARF CFI call frame string for the given DW_CFA opcode.
LLVM_ABI StringRef CallFrameString(unsigned Encoding, Triple::ArchType Arch)
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
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.
LLVM_ABI Expected< uint64_t > getOperandAsUnsigned(const CFIProgram &CFIP, uint32_t OperandIdx) const
LLVM_ABI Expected< int64_t > getOperandAsSigned(const CFIProgram &CFIP, uint32_t OperandIdx) const