1 //===-- llvm/CodeGen/DwarfExpression.cpp - Dwarf Debug Framework ----------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file contains support for writing dwarf debug info into asm files. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "DwarfExpression.h" 15 #include "DwarfDebug.h" 16 #include "llvm/ADT/SmallBitVector.h" 17 #include "llvm/BinaryFormat/Dwarf.h" 18 #include "llvm/CodeGen/AsmPrinter.h" 19 #include "llvm/Target/TargetMachine.h" 20 #include "llvm/Target/TargetRegisterInfo.h" 21 #include "llvm/Target/TargetSubtargetInfo.h" 22 23 using namespace llvm; 24 25 void DwarfExpression::addReg(int DwarfReg, const char *Comment) { 26 assert(DwarfReg >= 0 && "invalid negative dwarf register number"); 27 assert((LocationKind == Unknown || LocationKind == Register) && 28 "location description already locked down"); 29 LocationKind = Register; 30 if (DwarfReg < 32) { 31 emitOp(dwarf::DW_OP_reg0 + DwarfReg, Comment); 32 } else { 33 emitOp(dwarf::DW_OP_regx, Comment); 34 emitUnsigned(DwarfReg); 35 } 36 } 37 38 void DwarfExpression::addBReg(int DwarfReg, int Offset) { 39 assert(DwarfReg >= 0 && "invalid negative dwarf register number"); 40 assert(LocationKind != Register && "location description already locked down"); 41 if (DwarfReg < 32) { 42 emitOp(dwarf::DW_OP_breg0 + DwarfReg); 43 } else { 44 emitOp(dwarf::DW_OP_bregx); 45 emitUnsigned(DwarfReg); 46 } 47 emitSigned(Offset); 48 } 49 50 void DwarfExpression::addFBReg(int Offset) { 51 emitOp(dwarf::DW_OP_fbreg); 52 emitSigned(Offset); 53 } 54 55 void DwarfExpression::addOpPiece(unsigned SizeInBits, unsigned OffsetInBits) { 56 if (!SizeInBits) 57 return; 58 59 const unsigned SizeOfByte = 8; 60 if (OffsetInBits > 0 || SizeInBits % SizeOfByte) { 61 emitOp(dwarf::DW_OP_bit_piece); 62 emitUnsigned(SizeInBits); 63 emitUnsigned(OffsetInBits); 64 } else { 65 emitOp(dwarf::DW_OP_piece); 66 unsigned ByteSize = SizeInBits / SizeOfByte; 67 emitUnsigned(ByteSize); 68 } 69 this->OffsetInBits += SizeInBits; 70 } 71 72 void DwarfExpression::addShr(unsigned ShiftBy) { 73 emitOp(dwarf::DW_OP_constu); 74 emitUnsigned(ShiftBy); 75 emitOp(dwarf::DW_OP_shr); 76 } 77 78 void DwarfExpression::addAnd(unsigned Mask) { 79 emitOp(dwarf::DW_OP_constu); 80 emitUnsigned(Mask); 81 emitOp(dwarf::DW_OP_and); 82 } 83 84 bool DwarfExpression::addMachineReg(const TargetRegisterInfo &TRI, 85 unsigned MachineReg, unsigned MaxSize) { 86 if (!TRI.isPhysicalRegister(MachineReg)) { 87 if (isFrameRegister(TRI, MachineReg)) { 88 DwarfRegs.push_back({-1, 0, nullptr}); 89 return true; 90 } 91 return false; 92 } 93 94 int Reg = TRI.getDwarfRegNum(MachineReg, false); 95 96 // If this is a valid register number, emit it. 97 if (Reg >= 0) { 98 DwarfRegs.push_back({Reg, 0, nullptr}); 99 return true; 100 } 101 102 // Walk up the super-register chain until we find a valid number. 103 // For example, EAX on x86_64 is a 32-bit fragment of RAX with offset 0. 104 for (MCSuperRegIterator SR(MachineReg, &TRI); SR.isValid(); ++SR) { 105 Reg = TRI.getDwarfRegNum(*SR, false); 106 if (Reg >= 0) { 107 unsigned Idx = TRI.getSubRegIndex(*SR, MachineReg); 108 unsigned Size = TRI.getSubRegIdxSize(Idx); 109 unsigned RegOffset = TRI.getSubRegIdxOffset(Idx); 110 DwarfRegs.push_back({Reg, 0, "super-register"}); 111 // Use a DW_OP_bit_piece to describe the sub-register. 112 setSubRegisterPiece(Size, RegOffset); 113 return true; 114 } 115 } 116 117 // Otherwise, attempt to find a covering set of sub-register numbers. 118 // For example, Q0 on ARM is a composition of D0+D1. 119 unsigned CurPos = 0; 120 // The size of the register in bits. 121 const TargetRegisterClass *RC = TRI.getMinimalPhysRegClass(MachineReg); 122 unsigned RegSize = TRI.getRegSizeInBits(*RC); 123 // Keep track of the bits in the register we already emitted, so we 124 // can avoid emitting redundant aliasing subregs. 125 SmallBitVector Coverage(RegSize, false); 126 for (MCSubRegIterator SR(MachineReg, &TRI); SR.isValid(); ++SR) { 127 unsigned Idx = TRI.getSubRegIndex(MachineReg, *SR); 128 unsigned Size = TRI.getSubRegIdxSize(Idx); 129 unsigned Offset = TRI.getSubRegIdxOffset(Idx); 130 Reg = TRI.getDwarfRegNum(*SR, false); 131 132 // Intersection between the bits we already emitted and the bits 133 // covered by this subregister. 134 SmallBitVector Intersection(RegSize, false); 135 Intersection.set(Offset, Offset + Size); 136 Intersection ^= Coverage; 137 138 // If this sub-register has a DWARF number and we haven't covered 139 // its range, emit a DWARF piece for it. 140 if (Reg >= 0 && Intersection.any()) { 141 // Emit a piece for any gap in the coverage. 142 if (Offset > CurPos) 143 DwarfRegs.push_back({-1, Offset - CurPos, nullptr}); 144 DwarfRegs.push_back( 145 {Reg, std::min<unsigned>(Size, MaxSize - Offset), "sub-register"}); 146 if (Offset >= MaxSize) 147 break; 148 149 // Mark it as emitted. 150 Coverage.set(Offset, Offset + Size); 151 CurPos = Offset + Size; 152 } 153 } 154 155 return CurPos; 156 } 157 158 void DwarfExpression::addStackValue() { 159 if (DwarfVersion >= 4) 160 emitOp(dwarf::DW_OP_stack_value); 161 } 162 163 void DwarfExpression::addSignedConstant(int64_t Value) { 164 assert(LocationKind == Implicit || LocationKind == Unknown); 165 LocationKind = Implicit; 166 emitOp(dwarf::DW_OP_consts); 167 emitSigned(Value); 168 } 169 170 void DwarfExpression::addUnsignedConstant(uint64_t Value) { 171 assert(LocationKind == Implicit || LocationKind == Unknown); 172 LocationKind = Implicit; 173 emitOp(dwarf::DW_OP_constu); 174 emitUnsigned(Value); 175 } 176 177 void DwarfExpression::addUnsignedConstant(const APInt &Value) { 178 assert(LocationKind == Implicit || LocationKind == Unknown); 179 LocationKind = Implicit; 180 181 unsigned Size = Value.getBitWidth(); 182 const uint64_t *Data = Value.getRawData(); 183 184 // Chop it up into 64-bit pieces, because that's the maximum that 185 // addUnsignedConstant takes. 186 unsigned Offset = 0; 187 while (Offset < Size) { 188 addUnsignedConstant(*Data++); 189 if (Offset == 0 && Size <= 64) 190 break; 191 addStackValue(); 192 addOpPiece(std::min(Size - Offset, 64u), Offset); 193 Offset += 64; 194 } 195 } 196 197 bool DwarfExpression::addMachineRegExpression(const TargetRegisterInfo &TRI, 198 DIExpressionCursor &ExprCursor, 199 unsigned MachineReg, 200 unsigned FragmentOffsetInBits) { 201 auto Fragment = ExprCursor.getFragmentInfo(); 202 if (!addMachineReg(TRI, MachineReg, Fragment ? Fragment->SizeInBits : ~1U)) { 203 LocationKind = Unknown; 204 return false; 205 } 206 207 bool HasComplexExpression = false; 208 auto Op = ExprCursor.peek(); 209 if (Op && Op->getOp() != dwarf::DW_OP_LLVM_fragment) 210 HasComplexExpression = true; 211 212 // If the register can only be described by a complex expression (i.e., 213 // multiple subregisters) it doesn't safely compose with another complex 214 // expression. For example, it is not possible to apply a DW_OP_deref 215 // operation to multiple DW_OP_pieces. 216 if (HasComplexExpression && DwarfRegs.size() > 1) { 217 DwarfRegs.clear(); 218 LocationKind = Unknown; 219 return false; 220 } 221 222 // Handle simple register locations. 223 if (LocationKind != Memory && !HasComplexExpression) { 224 for (auto &Reg : DwarfRegs) { 225 if (Reg.DwarfRegNo >= 0) 226 addReg(Reg.DwarfRegNo, Reg.Comment); 227 addOpPiece(Reg.Size); 228 } 229 DwarfRegs.clear(); 230 return true; 231 } 232 233 // Don't emit locations that cannot be expressed without DW_OP_stack_value. 234 if (DwarfVersion < 4) 235 if (std::any_of(ExprCursor.begin(), ExprCursor.end(), 236 [](DIExpression::ExprOperand Op) -> bool { 237 return Op.getOp() == dwarf::DW_OP_stack_value; 238 })) { 239 DwarfRegs.clear(); 240 LocationKind = Unknown; 241 return false; 242 } 243 244 assert(DwarfRegs.size() == 1); 245 auto Reg = DwarfRegs[0]; 246 bool FBReg = isFrameRegister(TRI, MachineReg); 247 int SignedOffset = 0; 248 assert(Reg.Size == 0 && "subregister has same size as superregister"); 249 250 // Pattern-match combinations for which more efficient representations exist. 251 // [Reg, DW_OP_plus_uconst, Offset] --> [DW_OP_breg, Offset]. 252 if (Op && (Op->getOp() == dwarf::DW_OP_plus_uconst)) { 253 SignedOffset = Op->getArg(0); 254 ExprCursor.take(); 255 } 256 257 // [Reg, DW_OP_constu, Offset, DW_OP_plus] --> [DW_OP_breg, Offset] 258 // [Reg, DW_OP_constu, Offset, DW_OP_minus] --> [DW_OP_breg,-Offset] 259 // If Reg is a subregister we need to mask it out before subtracting. 260 if (Op && Op->getOp() == dwarf::DW_OP_constu) { 261 auto N = ExprCursor.peekNext(); 262 if (N && (N->getOp() == dwarf::DW_OP_plus || 263 (N->getOp() == dwarf::DW_OP_minus && !SubRegisterSizeInBits))) { 264 int Offset = Op->getArg(0); 265 SignedOffset = (N->getOp() == dwarf::DW_OP_minus) ? -Offset : Offset; 266 ExprCursor.consume(2); 267 } 268 } 269 270 if (FBReg) 271 addFBReg(SignedOffset); 272 else 273 addBReg(Reg.DwarfRegNo, SignedOffset); 274 DwarfRegs.clear(); 275 return true; 276 } 277 278 /// Assuming a well-formed expression, match "DW_OP_deref* DW_OP_LLVM_fragment?". 279 static bool isMemoryLocation(DIExpressionCursor ExprCursor) { 280 while (ExprCursor) { 281 auto Op = ExprCursor.take(); 282 switch (Op->getOp()) { 283 case dwarf::DW_OP_deref: 284 case dwarf::DW_OP_LLVM_fragment: 285 break; 286 default: 287 return false; 288 } 289 } 290 return true; 291 } 292 293 void DwarfExpression::addExpression(DIExpressionCursor &&ExprCursor, 294 unsigned FragmentOffsetInBits) { 295 // If we need to mask out a subregister, do it now, unless the next 296 // operation would emit an OpPiece anyway. 297 auto N = ExprCursor.peek(); 298 if (SubRegisterSizeInBits && N && (N->getOp() != dwarf::DW_OP_LLVM_fragment)) 299 maskSubRegister(); 300 301 while (ExprCursor) { 302 auto Op = ExprCursor.take(); 303 switch (Op->getOp()) { 304 case dwarf::DW_OP_LLVM_fragment: { 305 unsigned SizeInBits = Op->getArg(1); 306 unsigned FragmentOffset = Op->getArg(0); 307 // The fragment offset must have already been adjusted by emitting an 308 // empty DW_OP_piece / DW_OP_bit_piece before we emitted the base 309 // location. 310 assert(OffsetInBits >= FragmentOffset && "fragment offset not added?"); 311 312 // If addMachineReg already emitted DW_OP_piece operations to represent 313 // a super-register by splicing together sub-registers, subtract the size 314 // of the pieces that was already emitted. 315 SizeInBits -= OffsetInBits - FragmentOffset; 316 317 // If addMachineReg requested a DW_OP_bit_piece to stencil out a 318 // sub-register that is smaller than the current fragment's size, use it. 319 if (SubRegisterSizeInBits) 320 SizeInBits = std::min<unsigned>(SizeInBits, SubRegisterSizeInBits); 321 322 // Emit a DW_OP_stack_value for implicit location descriptions. 323 if (LocationKind == Implicit) 324 addStackValue(); 325 326 // Emit the DW_OP_piece. 327 addOpPiece(SizeInBits, SubRegisterOffsetInBits); 328 setSubRegisterPiece(0, 0); 329 // Reset the location description kind. 330 LocationKind = Unknown; 331 return; 332 } 333 case dwarf::DW_OP_plus_uconst: 334 assert(LocationKind != Register); 335 emitOp(dwarf::DW_OP_plus_uconst); 336 emitUnsigned(Op->getArg(0)); 337 break; 338 case dwarf::DW_OP_plus: 339 case dwarf::DW_OP_minus: 340 emitOp(Op->getOp()); 341 break; 342 case dwarf::DW_OP_deref: { 343 assert(LocationKind != Register); 344 if (LocationKind != Memory && isMemoryLocation(ExprCursor)) 345 // Turning this into a memory location description makes the deref 346 // implicit. 347 LocationKind = Memory; 348 else 349 emitOp(dwarf::DW_OP_deref); 350 break; 351 } 352 case dwarf::DW_OP_constu: 353 assert(LocationKind != Register); 354 emitOp(dwarf::DW_OP_constu); 355 emitUnsigned(Op->getArg(0)); 356 break; 357 case dwarf::DW_OP_stack_value: 358 LocationKind = Implicit; 359 break; 360 case dwarf::DW_OP_swap: 361 assert(LocationKind != Register); 362 emitOp(dwarf::DW_OP_swap); 363 break; 364 case dwarf::DW_OP_xderef: 365 assert(LocationKind != Register); 366 emitOp(dwarf::DW_OP_xderef); 367 break; 368 default: 369 llvm_unreachable("unhandled opcode found in expression"); 370 } 371 } 372 373 if (LocationKind == Implicit) 374 // Turn this into an implicit location description. 375 addStackValue(); 376 } 377 378 /// add masking operations to stencil out a subregister. 379 void DwarfExpression::maskSubRegister() { 380 assert(SubRegisterSizeInBits && "no subregister was registered"); 381 if (SubRegisterOffsetInBits > 0) 382 addShr(SubRegisterOffsetInBits); 383 uint64_t Mask = (1ULL << (uint64_t)SubRegisterSizeInBits) - 1ULL; 384 addAnd(Mask); 385 } 386 387 388 void DwarfExpression::finalize() { 389 assert(DwarfRegs.size() == 0 && "dwarf registers not emitted"); 390 // Emit any outstanding DW_OP_piece operations to mask out subregisters. 391 if (SubRegisterSizeInBits == 0) 392 return; 393 // Don't emit a DW_OP_piece for a subregister at offset 0. 394 if (SubRegisterOffsetInBits == 0) 395 return; 396 addOpPiece(SubRegisterSizeInBits, SubRegisterOffsetInBits); 397 } 398 399 void DwarfExpression::addFragmentOffset(const DIExpression *Expr) { 400 if (!Expr || !Expr->isFragment()) 401 return; 402 403 uint64_t FragmentOffset = Expr->getFragmentInfo()->OffsetInBits; 404 assert(FragmentOffset >= OffsetInBits && 405 "overlapping or duplicate fragments"); 406 if (FragmentOffset > OffsetInBits) 407 addOpPiece(FragmentOffset - OffsetInBits); 408 OffsetInBits = FragmentOffset; 409 } 410