1 //===- llvm/CodeGen/DwarfExpression.h - Dwarf Compile Unit ------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 // This file contains support for writing dwarf compile unit.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_CODEGEN_ASMPRINTER_DWARFEXPRESSION_H
14 #define LLVM_LIB_CODEGEN_ASMPRINTER_DWARFEXPRESSION_H
16 #include "ByteStreamer.h"
17 #include "llvm/ADT/ArrayRef.h"
18 #include "llvm/ADT/SmallVector.h"
19 #include "llvm/IR/DebugInfoMetadata.h"
29 class DwarfCompileUnit
;
31 class TargetRegisterInfo
;
32 class MachineLocation
;
34 /// Holds a DIExpression and keeps track of how many operands have been consumed
36 class DIExpressionCursor
{
37 DIExpression::expr_op_iterator Start
, End
;
40 DIExpressionCursor(const DIExpression
*Expr
) {
45 Start
= Expr
->expr_op_begin();
46 End
= Expr
->expr_op_end();
49 DIExpressionCursor(ArrayRef
<uint64_t> Expr
)
50 : Start(Expr
.begin()), End(Expr
.end()) {}
52 DIExpressionCursor(const DIExpressionCursor
&) = default;
54 /// Consume one operation.
55 std::optional
<DIExpression::ExprOperand
> take() {
61 /// Consume N operations.
62 void consume(unsigned N
) { std::advance(Start
, N
); }
64 /// Return the current operation.
65 std::optional
<DIExpression::ExprOperand
> peek() const {
71 /// Return the next operation.
72 std::optional
<DIExpression::ExprOperand
> peekNext() const {
76 auto Next
= Start
.getNext();
83 /// Determine whether there are any operations left in this expression.
84 operator bool() const { return Start
!= End
; }
86 DIExpression::expr_op_iterator
begin() const { return Start
; }
87 DIExpression::expr_op_iterator
end() const { return End
; }
89 /// Retrieve the fragment information, if any.
90 std::optional
<DIExpression::FragmentInfo
> getFragmentInfo() const {
91 return DIExpression::getFragmentInfo(Start
, End
);
95 /// Base class containing the logic for constructing DWARF expressions
96 /// independently of whether they are emitted into a DIE or into a .debug_loc
99 /// Some DWARF operations, e.g. DW_OP_entry_value, need to calculate the size
100 /// of a succeeding DWARF block before the latter is emitted to the output.
101 /// To handle such cases, data can conditionally be emitted to a temporary
102 /// buffer, which can later on be committed to the main output. The size of the
103 /// temporary buffer is queryable, allowing for the size of the data to be
104 /// emitted before the data is committed.
105 class DwarfExpression
{
107 /// Holds information about all subregisters comprising a register location.
113 /// Create a full register, no extra DW_OP_piece operators necessary.
114 static Register
createRegister(int RegNo
, const char *Comment
) {
115 return {RegNo
, 0, Comment
};
118 /// Create a subregister that needs a DW_OP_piece operator with SizeInBits.
119 static Register
createSubRegister(int RegNo
, unsigned SizeInBits
,
120 const char *Comment
) {
121 return {RegNo
, SizeInBits
, Comment
};
124 bool isSubRegister() const { return SubRegSize
; }
127 /// Whether we are currently emitting an entry value operation.
128 bool IsEmittingEntryValue
= false;
130 DwarfCompileUnit
&CU
;
132 /// The register location, if any.
133 SmallVector
<Register
, 2> DwarfRegs
;
135 /// Current Fragment Offset in Bits.
136 uint64_t OffsetInBits
= 0;
138 /// Sometimes we need to add a DW_OP_bit_piece to describe a subregister.
139 unsigned SubRegisterSizeInBits
: 16;
140 unsigned SubRegisterOffsetInBits
: 16;
142 /// The kind of location description being produced.
143 enum { Unknown
= 0, Register
, Memory
, Implicit
};
145 /// Additional location flags which may be combined with any location kind.
146 /// Currently, entry values are not supported for the Memory location kind.
147 enum { EntryValue
= 1 << 0, Indirect
= 1 << 1, CallSiteParamValue
= 1 << 2 };
149 unsigned LocationKind
: 3;
150 unsigned SavedLocationKind
: 3;
151 unsigned LocationFlags
: 3;
152 unsigned DwarfVersion
: 4;
155 /// Set the location (\p Loc) and \ref DIExpression (\p DIExpr) to describe.
156 void setLocation(const MachineLocation
&Loc
, const DIExpression
*DIExpr
);
158 bool isUnknownLocation() const { return LocationKind
== Unknown
; }
160 bool isMemoryLocation() const { return LocationKind
== Memory
; }
162 bool isRegisterLocation() const { return LocationKind
== Register
; }
164 bool isImplicitLocation() const { return LocationKind
== Implicit
; }
166 bool isEntryValue() const { return LocationFlags
& EntryValue
; }
168 bool isIndirect() const { return LocationFlags
& Indirect
; }
170 bool isParameterValue() { return LocationFlags
& CallSiteParamValue
; }
172 std::optional
<uint8_t> TagOffset
;
175 /// Push a DW_OP_piece / DW_OP_bit_piece for emitting later, if one is needed
176 /// to represent a subregister.
177 void setSubRegisterPiece(unsigned SizeInBits
, unsigned OffsetInBits
) {
178 assert(SizeInBits
< 65536 && OffsetInBits
< 65536);
179 SubRegisterSizeInBits
= SizeInBits
;
180 SubRegisterOffsetInBits
= OffsetInBits
;
183 /// Add masking operations to stencil out a subregister.
184 void maskSubRegister();
186 /// Output a dwarf operand and an optional assembler comment.
187 virtual void emitOp(uint8_t Op
, const char *Comment
= nullptr) = 0;
189 /// Emit a raw signed value.
190 virtual void emitSigned(int64_t Value
) = 0;
192 /// Emit a raw unsigned value.
193 virtual void emitUnsigned(uint64_t Value
) = 0;
195 virtual void emitData1(uint8_t Value
) = 0;
197 virtual void emitBaseTypeRef(uint64_t Idx
) = 0;
199 /// Start emitting data to the temporary buffer. The data stored in the
200 /// temporary buffer can be committed to the main output using
201 /// commitTemporaryBuffer().
202 virtual void enableTemporaryBuffer() = 0;
204 /// Disable emission to the temporary buffer. This does not commit data
205 /// in the temporary buffer to the main output.
206 virtual void disableTemporaryBuffer() = 0;
208 /// Return the emitted size, in number of bytes, for the data stored in the
209 /// temporary buffer.
210 virtual unsigned getTemporaryBufferSize() = 0;
212 /// Commit the data stored in the temporary buffer to the main output.
213 virtual void commitTemporaryBuffer() = 0;
215 /// Emit a normalized unsigned constant.
216 void emitConstu(uint64_t Value
);
218 /// Return whether the given machine register is the frame register in the
219 /// current function.
220 virtual bool isFrameRegister(const TargetRegisterInfo
&TRI
,
221 llvm::Register MachineReg
) = 0;
223 /// Emit a DW_OP_reg operation. Note that this is only legal inside a DWARF
224 /// register location description.
225 void addReg(int DwarfReg
, const char *Comment
= nullptr);
227 /// Emit a DW_OP_breg operation.
228 void addBReg(int DwarfReg
, int Offset
);
230 /// Emit DW_OP_fbreg <Offset>.
231 void addFBReg(int Offset
);
233 /// Emit a partial DWARF register operation.
235 /// \param MachineReg The register number.
236 /// \param MaxSize If the register must be composed from
237 /// sub-registers this is an upper bound
238 /// for how many bits the emitted DW_OP_piece
241 /// If size and offset is zero an operation for the entire register is
242 /// emitted: Some targets do not provide a DWARF register number for every
243 /// register. If this is the case, this function will attempt to emit a DWARF
244 /// register by emitting a fragment of a super-register or by piecing together
245 /// multiple subregisters that alias the register.
247 /// \return false if no DWARF register exists for MachineReg.
248 bool addMachineReg(const TargetRegisterInfo
&TRI
, llvm::Register MachineReg
,
249 unsigned MaxSize
= ~1U);
251 /// Emit a DW_OP_piece or DW_OP_bit_piece operation for a variable fragment.
252 /// \param OffsetInBits This is an optional offset into the location that
253 /// is at the top of the DWARF stack.
254 void addOpPiece(unsigned SizeInBits
, unsigned OffsetInBits
= 0);
256 /// Emit a shift-right dwarf operation.
257 void addShr(unsigned ShiftBy
);
259 /// Emit a bitwise and dwarf operation.
260 void addAnd(unsigned Mask
);
262 /// Emit a DW_OP_stack_value, if supported.
264 /// The proper way to describe a constant value is DW_OP_constu <const>,
265 /// DW_OP_stack_value. Unfortunately, DW_OP_stack_value was not available
266 /// until DWARF 4, so we will continue to generate DW_OP_constu <const> for
267 /// DWARF 2 and DWARF 3. Technically, this is incorrect since DW_OP_const
268 /// <const> actually describes a value at a constant address, not a constant
269 /// value. However, in the past there was no better way to describe a
270 /// constant value, so the producers and consumers started to rely on
271 /// heuristics to disambiguate the value vs. location status of the
272 /// expression. See PR21176 for more details.
273 void addStackValue();
275 /// Finalize an entry value by emitting its size operand, and committing the
276 /// DWARF block which has been emitted to the temporary buffer.
277 void finalizeEntryValue();
279 /// Cancel the emission of an entry value.
280 void cancelEntryValue();
282 ~DwarfExpression() = default;
285 DwarfExpression(unsigned DwarfVersion
, DwarfCompileUnit
&CU
)
286 : CU(CU
), SubRegisterSizeInBits(0), SubRegisterOffsetInBits(0),
287 LocationKind(Unknown
), SavedLocationKind(Unknown
),
288 LocationFlags(Unknown
), DwarfVersion(DwarfVersion
) {}
290 /// This needs to be called last to commit any pending changes.
293 /// Emit a signed constant.
294 void addSignedConstant(int64_t Value
);
296 /// Emit an unsigned constant.
297 void addUnsignedConstant(uint64_t Value
);
299 /// Emit an unsigned constant.
300 void addUnsignedConstant(const APInt
&Value
);
302 /// Emit an floating point constant.
303 void addConstantFP(const APFloat
&Value
, const AsmPrinter
&AP
);
305 /// Lock this down to become a memory location description.
306 void setMemoryLocationKind() {
307 assert(isUnknownLocation());
308 LocationKind
= Memory
;
311 /// Lock this down to become an entry value location.
312 void setEntryValueFlags(const MachineLocation
&Loc
);
314 /// Lock this down to become a call site parameter location.
315 void setCallSiteParamValueFlag() { LocationFlags
|= CallSiteParamValue
; }
317 /// Emit a machine register location. As an optimization this may also consume
318 /// the prefix of a DwarfExpression if a more efficient representation for
319 /// combining the register location and the first operation exists.
321 /// \param FragmentOffsetInBits If this is one fragment out of a
323 /// location, this is the offset of the
324 /// fragment inside the entire variable.
325 /// \return false if no DWARF register exists
327 bool addMachineRegExpression(const TargetRegisterInfo
&TRI
,
328 DIExpressionCursor
&Expr
,
329 llvm::Register MachineReg
,
330 unsigned FragmentOffsetInBits
= 0);
332 /// Begin emission of an entry value dwarf operation. The entry value's
333 /// first operand is the size of the DWARF block (its second operand),
334 /// which needs to be calculated at time of emission, so we don't emit
335 /// any operands here.
336 void beginEntryValueExpression(DIExpressionCursor
&ExprCursor
);
338 /// Return the index of a base type with the given properties and
339 /// create one if necessary.
340 unsigned getOrCreateBaseType(unsigned BitSize
, dwarf::TypeKind Encoding
);
342 /// Emit all remaining operations in the DIExpressionCursor. The
343 /// cursor must not contain any DW_OP_LLVM_arg operations.
344 void addExpression(DIExpressionCursor
&&Expr
);
346 /// Emit all remaining operations in the DIExpressionCursor.
347 /// DW_OP_LLVM_arg operations are resolved by calling (\p InsertArg).
349 /// \return false if any call to (\p InsertArg) returns false.
351 DIExpressionCursor
&&Expr
,
352 llvm::function_ref
<bool(unsigned, DIExpressionCursor
&)> InsertArg
);
354 /// If applicable, emit an empty DW_OP_piece / DW_OP_bit_piece to advance to
355 /// the fragment described by \c Expr.
356 void addFragmentOffset(const DIExpression
*Expr
);
358 void emitLegacySExt(unsigned FromBits
);
359 void emitLegacyZExt(unsigned FromBits
);
361 /// Emit location information expressed via WebAssembly location + offset
362 /// The Index is an identifier for locals, globals or operand stack.
363 void addWasmLocation(unsigned Index
, uint64_t Offset
);
366 /// DwarfExpression implementation for .debug_loc entries.
367 class DebugLocDwarfExpression final
: public DwarfExpression
{
370 SmallString
<32> Bytes
;
371 std::vector
<std::string
> Comments
;
372 BufferByteStreamer BS
;
374 TempBuffer(bool GenerateComments
) : BS(Bytes
, Comments
, GenerateComments
) {}
377 std::unique_ptr
<TempBuffer
> TmpBuf
;
378 BufferByteStreamer
&OutBS
;
379 bool IsBuffering
= false;
381 /// Return the byte streamer that currently is being emitted to.
382 ByteStreamer
&getActiveStreamer() { return IsBuffering
? TmpBuf
->BS
: OutBS
; }
384 void emitOp(uint8_t Op
, const char *Comment
= nullptr) override
;
385 void emitSigned(int64_t Value
) override
;
386 void emitUnsigned(uint64_t Value
) override
;
387 void emitData1(uint8_t Value
) override
;
388 void emitBaseTypeRef(uint64_t Idx
) override
;
390 void enableTemporaryBuffer() override
;
391 void disableTemporaryBuffer() override
;
392 unsigned getTemporaryBufferSize() override
;
393 void commitTemporaryBuffer() override
;
395 bool isFrameRegister(const TargetRegisterInfo
&TRI
,
396 llvm::Register MachineReg
) override
;
399 DebugLocDwarfExpression(unsigned DwarfVersion
, BufferByteStreamer
&BS
,
400 DwarfCompileUnit
&CU
)
401 : DwarfExpression(DwarfVersion
, CU
), OutBS(BS
) {}
404 /// DwarfExpression implementation for singular DW_AT_location.
405 class DIEDwarfExpression final
: public DwarfExpression
{
406 const AsmPrinter
&AP
;
409 bool IsBuffering
= false;
411 /// Return the DIE that currently is being emitted to.
412 DIELoc
&getActiveDIE() { return IsBuffering
? TmpDIE
: OutDIE
; }
414 void emitOp(uint8_t Op
, const char *Comment
= nullptr) override
;
415 void emitSigned(int64_t Value
) override
;
416 void emitUnsigned(uint64_t Value
) override
;
417 void emitData1(uint8_t Value
) override
;
418 void emitBaseTypeRef(uint64_t Idx
) override
;
420 void enableTemporaryBuffer() override
;
421 void disableTemporaryBuffer() override
;
422 unsigned getTemporaryBufferSize() override
;
423 void commitTemporaryBuffer() override
;
425 bool isFrameRegister(const TargetRegisterInfo
&TRI
,
426 llvm::Register MachineReg
) override
;
429 DIEDwarfExpression(const AsmPrinter
&AP
, DwarfCompileUnit
&CU
, DIELoc
&DIE
);
432 DwarfExpression::finalize();
437 } // end namespace llvm
439 #endif // LLVM_LIB_CODEGEN_ASMPRINTER_DWARFEXPRESSION_H