[all-commits] [llvm/llvm-project] c7c84b: [DwarfDebug] Refuse to emit DW_OP_LLVM_arg values ...
adrian-prantl via All-commits
all-commits at lists.llvm.org
Fri Dec 10 09:33:49 PST 2021
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: c7c84b90879f0252c58894f70d2a19fc4c01cf64
https://github.com/llvm/llvm-project/commit/c7c84b90879f0252c58894f70d2a19fc4c01cf64
Author: Adrian Prantl <aprantl at apple.com>
Date: 2021-12-10 (Fri, 10 Dec 2021)
Changed paths:
M llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
M llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp
M llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h
A llvm/test/DebugInfo/X86/pr52584.ll
Log Message:
-----------
[DwarfDebug] Refuse to emit DW_OP_LLVM_arg values wider than 64 bits
DwarfExpression::addUnsignedConstant(const APInt &Value) only supports
wider-than-64-bit values when it is used to emit a top-level DWARF
expression representing the location of a variable. Before this change,
it was possible to call addUnsignedConstant on >64 bit values within a
subexpression when substituting DW_OP_LLVM_arg values.
This can trigger an assertion failure (e.g. PR52584, PR52333) when it
happens in a fragment (DW_OP_LLVM_fragment) expression, as
addUnsignedConstant on >64 bit values splits the constant into separate
DW_OP_pieces, which modifies DwarfExpression::OffsetInBits.
This change papers over the assertion errors by bailing on overly wide
DW_OP_LLVM_arg values. A more comprehensive fix might be to be to split
wide values into pointer-sized fragments.
[0] https://github.com/llvm/llvm-project/blob/e71fa03/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp#L799-L805
Patch by Ricky Zhou!
Differential Revision: https://reviews.llvm.org/D115343
More information about the All-commits
mailing list