1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2017-2021 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
/*========================== begin_copyright_notice ============================
This file is distributed under the University of Illinois Open Source License.
See LICENSE.TXT for details.
============================= end_copyright_notice ===========================*/
///////////////////////////////////////////////////////////////////////////////
// This file is based on llvm-3.4\lib\CodeGen\AsmPrinter\DwarfCompilerUnit.h
///////////////////////////////////////////////////////////////////////////////
#pragma once
// clang-format off
#include "common/LLVMWarningsPush.hpp"
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/Optional.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringMap.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Config/llvm-config.h"
#include "llvm/IR/DebugInfo.h"
#include "llvm/IR/GlobalValue.h"
#include "common/LLVMWarningsPop.hpp"
// clang-format on
#include "DIE.hpp"
#include "DwarfDebug.hpp"
#include "EmitterOpts.hpp"
namespace llvm {
class MachineLocation;
class ConstantInt;
class ConstantFP;
class MCExpr;
} // namespace llvm
namespace IGC {
class DbgVariable;
//===----------------------------------------------------------------------===//
/// CompileUnit - This dwarf writer support class manages information associated
/// with a source file.
class CompileUnit {
/// UniqueID - a numeric ID unique among all CUs in the module
///
unsigned UniqueID;
/// Node - llvm::MDNode for the compile unit.
llvm::DICompileUnit *Node;
/// CUDie - Compile unit debug information entry.
///
DIE *CUDie;
/// Asm - Target of Dwarf emission.
StreamEmitter *Asm;
const DebugEmitterOpts &EmitSettings;
// Holders for some common dwarf information.
IGC::DwarfDebug *DD;
/// IndexTyDie - An anonymous type for index type. Owned by CUDie.
DIE *IndexTyDie;
/// MDNodeToDieMap - Tracks the mapping of unit level debug information
/// variables to debug information entries.
llvm::DenseMap<const llvm::MDNode *, DIE *> MDNodeToDieMap;
/// MDNodeToDIEEntryMap - Tracks the mapping of unit level debug information
/// descriptors to debug information entries using a DIEEntry proxy.
llvm::DenseMap<const llvm::MDNode *, DIEEntry *> MDNodeToDIEEntryMap;
/// DIEBlocks - A list of all the DIEBlocks in use.
std::vector<DIEBlock *> DIEBlocks;
/// DIEInlinedStrings - A list of all the DIEInlinedStrings in use.
std::vector<DIEInlinedString *> DIEInlinedStrings;
/// ContainingTypeMap - This map is used to keep track of subprogram DIEs that
/// need DW_AT_containing_type attribute. This attribute points to a DIE that
/// corresponds to the llvm::MDNode mapped with the subprogram DIE.
llvm::DenseMap<DIE *, const llvm::MDNode *> ContainingTypeMap;
// DIEValueAllocator - All DIEValues are allocated through this allocator.
llvm::BumpPtrAllocator DIEValueAllocator;
// DIEIntegerOne - A preallocated DIEValue because 1 is used frequently.
DIEInteger *DIEIntegerOne;
public:
CompileUnit(unsigned UID, DIE *D, llvm::DICompileUnit *CU, StreamEmitter *A,
IGC::DwarfDebug *DW);
~CompileUnit();
using ImportedEntityList = llvm::SmallVector<const llvm::MDNode *, 8>;
using ImportedEntityMap =
llvm::DenseMap<const llvm::MDNode *, ImportedEntityList>;
ImportedEntityMap ImportedEntities;
// Accessors.
unsigned getUniqueID() const { return UniqueID; }
uint16_t getLanguage() const { return (uint16_t)Node->getSourceLanguage(); }
llvm::DICompileUnit *getNode() const { return Node; }
DIE *getCUDie() const { return CUDie; }
unsigned getDebugInfoOffset() const { return DebugInfoOffset; }
void setDebugInfoOffset(unsigned DbgInfoOff) { DebugInfoOffset = DbgInfoOff; }
/// hasContent - Return true if this compile unit has something to write out.
///
bool hasContent() const { return !CUDie->getChildren().empty(); }
/// getParentContextString - Get a string containing the language specific
/// context for a global name.
std::string getParentContextString(llvm::DIScope *Context) const;
/// getDIE - Returns the debug information entry map slot for the
/// specified debug variable. We delegate the request to DwarfDebug
/// when the llvm::MDNode can be part of the type system, since DIEs for
/// the type system can be shared across CUs and the mappings are
/// kept in DwarfDebug.
DIE *getDIE(llvm::DINode *D) const;
DIEBlock *getDIEBlock() { return new (DIEValueAllocator) DIEBlock(); }
/// insertDIE - Insert DIE into the map. We delegate the request to DwarfDebug
/// when the llvm::MDNode can be part of the type system, since DIEs for
/// the type system can be shared across CUs and the mappings are
/// kept in DwarfDebug.
void insertDIE(llvm::MDNode *Desc, DIE *D);
/// addDie - Adds or interns the DIE to the compile unit.
///
void addDie(DIE *Buffer) { CUDie->addChild(Buffer); }
/// addFlag - Add a flag that is true to the DIE.
void addFlag(DIE *Die, llvm::dwarf::Attribute Attribute);
/// addUInt - Add an unsigned integer attribute data and value.
///
void addUInt(DIE *Die, llvm::dwarf::Attribute Attribute,
llvm::Optional<llvm::dwarf::Form> Form, uint64_t Integer);
void addUInt(DIEBlock *Block, llvm::dwarf::Form Form, uint64_t Integer);
void addBitPiece(IGC::DIEBlock *Block, uint64_t SizeBits,
uint64_t OffsetBits);
/// addSInt - Add an signed integer attribute data and value.
///
void addSInt(DIE *Die, llvm::dwarf::Attribute Attribute,
llvm::Optional<llvm::dwarf::Form> Form, int64_t Integer);
void addSInt(DIEBlock *Die, llvm::Optional<llvm::dwarf::Form> Form,
int64_t Integer);
/// addString - Add a string attribute data and value.
///
void addString(DIE *Die, llvm::dwarf::Attribute Attribute,
const llvm::StringRef Str);
/// addExpr - Add a Dwarf expression attribute data and value.
///
void addExpr(DIEBlock *Die, llvm::dwarf::Form Form, const llvm::MCExpr *Expr);
/// addLabel - Add a Dwarf label attribute data and value.
///
void addLabel(DIE *Die, llvm::dwarf::Attribute Attribute,
llvm::dwarf::Form Form, const llvm::MCSymbol *Label);
void addLabel(DIEBlock *Die, llvm::dwarf::Form Form,
const llvm::MCSymbol *Label);
/// addLabelAddress - Add a dwarf label attribute data and value using
/// either DW_FORM_addr or DW_FORM_GNU_addr_index.
///
void addLabelAddress(DIE *Die, llvm::dwarf::Attribute Attribute,
llvm::MCSymbol *Label);
// addLabelLoc - Add dwarf label attribute data and value using
// DW_FORM_sec_offset.
void addLabelLoc(DIE *Die, llvm::dwarf::Attribute Attribute,
llvm::MCSymbol *Label);
/// addOpAddress - Add a dwarf op address data and value using the
/// form given and an op of either DW_FORM_addr or DW_FORM_GNU_addr_index.
///
void addOpAddress(DIEBlock *Die, const llvm::MCSymbol *Label);
/// addDelta - Add a label delta attribute data and value.
///
void addDelta(DIE *Die, llvm::dwarf::Attribute Attribute,
llvm::dwarf::Form Form, const llvm::MCSymbol *Hi,
const llvm::MCSymbol *Lo);
/// addDIEEntry - Add a DIE attribute data and value.
///
void addDIEEntry(DIE *Die, llvm::dwarf::Attribute Attribute, DIE *Entry);
/// addDIEEntry - Add a DIE attribute data and value.
///
void addDIEEntry(DIE *Die, llvm::dwarf::Attribute Attribute, DIEEntry *Entry);
/// addBlock - Add block data.
///
void addBlock(DIE *Die, llvm::dwarf::Attribute Attribute, DIEBlock *Block);
/// addSourceLine - Add location information to specified debug information
/// entry.
void addSourceLine(DIE *Die, llvm::DIScope *S, unsigned Line);
void addSourceLine(DIE *Die, llvm::DIImportedEntity *IE, unsigned Line);
void addSourceLine(DIE *Die, llvm::DIVariable *V);
void addSourceLine(DIE *Die, llvm::DISubprogram *SP);
void addSourceLine(DIE *Die, llvm::DIType *Ty);
/// addConstantValue - Add constant value entry in variable DIE.
void addConstantValue(DIE *Die, const llvm::ConstantInt *CI, bool Unsigned);
void addConstantValue(DIE *Die, const llvm::APInt &Val, bool Unsigned);
/// addConstantFPValue - Add constant value entry in variable DIE.
void addConstantFPValue(DIE *Die, const llvm::ConstantFP *CFP);
/// addConstantUValue - Add constant unsigned value entry in variable
/// DIEBlock.
void addConstantUValue(DIEBlock *TheDie, uint64_t Val);
/// addConstantData - Add constant data entry in variable DIE.
void addConstantData(DIE *Die, const unsigned char *Ptr8, int NumBytes);
/// addTemplateParams - Add template parameters in buffer.
void addTemplateParams(DIE &Buffer, llvm::DINodeArray TParams);
/// addRegOrConst - Decide whether to emit regx or const
void addRegOrConst(DIEBlock *TheDie, unsigned DWReg);
/// addRegisterOp - Add register operand.
void addRegisterOp(DIEBlock *TheDie, unsigned Reg);
/// addRegisterOffset - Add register offset.
void addRegisterOffset(DIEBlock *TheDie, unsigned Reg, int64_t Offset);
/// addType - Add a new type attribute to the specified entity. This takes
/// and attribute parameter because DW_AT_friend attributes are also
/// type references.
void addType(DIE *Entity, llvm::DIType *Ty,
llvm::dwarf::Attribute Attribute = llvm::dwarf::DW_AT_type);
// addSimdWidth - add SIMD width
void addSimdWidth(DIE *Die, uint16_t SimdWidth);
// addGTRelativeLocation - add a sequence of attributes to calculate either:
// - BTI-relative location of variable in surface state, or
// - stateless surface location, or
// - bindless surface location or
// - bindless sampler location
// Returns true in a case of SLM location, otherwise false.
bool addGTRelativeLocation(DIEBlock *Block, const DbgVariable &DV,
const VISAVariableLocation &Loc);
// addBindlessOrStatelessLocation - add a sequence of attributes to calculate
// stateless or bindless location of variable. baseAddr is one of the
// following base addreses:
// - General State Base Address when variable located in stateless surface
// - Bindless Surface State Base Address when variable located in bindless
// surface
// - Bindless Sampler State Base Addres when variable located in bindless
// sampler
void addBindlessOrStatelessLocation(DIEBlock *Block,
const VISAVariableLocation &Loc,
uint32_t baseAddr);
// addStatelessLocation - add a sequence of attributes to calculate stateless
// surface location of variable
void addStatelessLocation(DIEBlock *Block, const VISAVariableLocation &Loc);
// addBindlessSurfaceLocation - add a sequence of attributes to calculate
// bindless surface location of variable
void addBindlessSurfaceLocation(DIEBlock *Block,
const VISAVariableLocation &Loc);
// addBindlessSamplerLocation - add a sequence of attributes to calculate
// bindless sampler location of variable
void addBindlessSamplerLocation(DIEBlock *Block,
const VISAVariableLocation &Loc);
// addBindlessScratchSpaceLocation - add a sequence of attributes to calculate
// bindless scratch space location of variable
void addBindlessScratchSpaceLocation(DIEBlock *Block,
const VISAVariableLocation &Loc);
// addBE_FP - emits operations to add contents of BE_FP to current top of
// dwarf stack
void addBE_FP(IGC::DIEBlock *Block);
// addScratchLocation - add a sequence of attributes to emit scratch space
// location of variable
void addScratchLocation(DIEBlock *Block, uint32_t memoryOffset,
int32_t vectorOffset);
// addSLMLocation - add a sequence of attributes to emit SLM location of
// variable
void addSLMLocation(DIEBlock *Block, const DbgVariable &DV,
const VISAVariableLocation &Loc);
// addSimdLane - add a sequence of attributes to calculate location of
// variable among SIMD lanes, e.g. a GRF subregister.
void addSimdLane(DIEBlock *Block, const DbgVariable &DV,
const VISAVariableLocation &Loc,
const DbgDecoder::LiveIntervalsVISA *lr, uint16_t regOffset,
bool isPacked, bool isSecondHalf);
// addSimdLaneScalar - add a sequence of attributes to calculate location of
// scalar variable e.g. a GRF subregister.
void addSimdLaneScalar(DIEBlock *Block, const DbgVariable &DV,
const VISAVariableLocation &Loc,
const DbgDecoder::LiveIntervalsVISA *lr,
uint16_t subRegInBytes);
bool emitBitPiecesForRegVal(IGC::DIEBlock *Block, const VISAModule &VM,
const DbgVariable &DV,
const DbgDecoder::LiveIntervalsVISA &lr,
uint64_t varSizeInBits, uint64_t offsetInBits);
// addSimdLaneRegionBase - add a sequence of attributes to calculate location
// of region base address variable for vc-backend
void addSimdLaneRegionBase(IGC::DIEBlock *Block, const DbgVariable &DV,
const VISAVariableLocation &Loc,
const DbgDecoder::LiveIntervalsVISA *lr);
// emit expression to extract sub-reg value
void extractSubRegValue(IGC::DIEBlock *Block, unsigned char Sz);
// Decode line number, file name and location from a string, where a line no.
// and file name (including directory) are separated by '-' character:
// lineNumber-fileNameIncludingDirectory There is a workaround for DIModule
// creation in earlier LLVM versions, where a line and a file parameters are
// not supported in DIBuilder.
void decodeLineAndFileForISysRoot(llvm::StringRef &lineAndFile,
unsigned int *line, std::string *file,
std::string *directory);
/// Construct import_module DIE.
IGC::DIE *constructImportedEntityDIE(llvm::DIImportedEntity *Module);
/// getOrCreateNameSpace - Create a DIE for DINameSpace.
DIE *getOrCreateNameSpace(llvm::DINamespace *NS);
/// getOrCreateSubprogramDIE - Create new DIE using SP.
DIE *getOrCreateSubprogramDIE(llvm::DISubprogram *SP);
/// getOrCreateModuleDIE - Create new DIE for DIModule.
DIE *getOrCreateModuleDIE(llvm::DIModule *MD);
/// getOrCreateTypeDIE - Find existing DIE or create new DIE for the
/// given llvm::DIType.
DIE *getOrCreateTypeDIE(const llvm::MDNode *N);
/// getOrCreateContextDIE - Get context owner's DIE.
DIE *getOrCreateContextDIE(llvm::DIScope *Context);
/// constructContainingTypeDIEs - Construct DIEs for types that contain
/// vtables.
void constructContainingTypeDIEs();
/// constructVariableDIE - Construct a DIE for the given DbgVariable.
DIE *constructVariableDIE(DbgVariable &DV, bool isScopeAbstract);
/// Create a DIE with the given Tag, add the DIE to its parent, and
/// call insertDIE if MD is not null.
DIE *createAndAddDIE(unsigned Tag, DIE &Parent, llvm::DINode *N = nullptr);
void addImportedEntity(const llvm::DIImportedEntity *IE) {
llvm::DIScope *Scope = IE->getScope();
assert(Scope && "Invalid Scope encoding!");
if (!llvm::isa<llvm::DILocalScope>(Scope)) {
// No need to add imported enities that are not local declaration.
return;
}
auto *LocalScope =
llvm::cast<llvm::DILocalScope>(Scope)->getNonLexicalBlockFileScope();
ImportedEntities[LocalScope].push_back(IE);
}
/// Compute the size of a header for this unit, not including the initial
/// length field.
unsigned getHeaderSize() const {
return sizeof(int16_t) + // DWARF version number
sizeof(int32_t) + // Offset Into Abbrev. Section
sizeof(int8_t); // Pointer Size (in bytes)
}
/// Emit the header for this unit, not including the initial length field.
void emitHeader(const llvm::MCSection *ASection,
const llvm::MCSymbol *ASectionSym);
private:
/// constructTypeDIE - Construct basic type die from llvm::DIBasicType.
void constructTypeDIE(DIE &Buffer, llvm::DIBasicType *BTy);
/// constructTypeDIE - Construct derived type die from llvm::DIDerivedType.
void constructTypeDIE(DIE &Buffer, llvm::DIDerivedType *DTy);
/// constructTypeDIE - Construct type DIE from DICompositeType.
void constructTypeDIE(DIE &Buffer, llvm::DICompositeType *CTy);
/// constructTypeDIE - Construct type DIE from DISubroutineType
/// This was added for LLVM 3.8 since DISubroutineType is no longer
/// derived from DICompositeType.
void constructTypeDIE(DIE &Buffer, llvm::DISubroutineType *STy);
/// constructSubrangeDIE - Construct subrange DIE from DISubrange.
void constructSubrangeDIE(DIE &Buffer, llvm::DISubrange *SR, DIE *IndexTy);
/// constructArrayTypeDIE - Construct array type DIE from DICompositeType.
void constructArrayTypeDIE(DIE &Buffer, llvm::DICompositeType *CTy);
/// constructEnumTypeDIE - Construct enum type DIE from DIEnumerator.
void constructEnumTypeDIE(DIE &Buffer, llvm::DICompositeType *CTy);
/// constructMemberDIE - Construct member DIE from llvm::DIDerivedType.
void constructMemberDIE(DIE &Buffer, llvm::DIDerivedType *DT);
/// constructTemplateTypeParameterDIE - Construct new DIE for the given
/// llvm::DITemplateTypeParameter.
void constructTemplateTypeParameterDIE(DIE &Buffer,
llvm::DITemplateTypeParameter *TP);
/// constructTemplateValueParameterDIE - Construct new DIE for the given
/// llvm::DITemplateValueParameter.
void constructTemplateValueParameterDIE(DIE &Buffer,
llvm::DITemplateValueParameter *TVP);
/// getOrCreateStaticMemberDIE - Create new static data member DIE.
DIE *getOrCreateStaticMemberDIE(llvm::DIDerivedType *DT);
/// Offset of the CUDie from beginning of debug info section.
unsigned DebugInfoOffset;
/// getLowerBoundDefault - Return the default lower bound for an array. If the
/// DWARF version doesn't handle the language, return -1.
int64_t getDefaultLowerBound() const;
/// getDIEEntry - Returns the debug information entry for the specified
/// debug variable.
DIEEntry *getDIEEntry(const llvm::MDNode *N) const {
return MDNodeToDIEEntryMap.lookup(N);
}
/// insertDIEEntry - Insert debug information entry into the map.
void insertDIEEntry(const llvm::MDNode *N, DIEEntry *E) {
MDNodeToDIEEntryMap.insert(std::make_pair(N, E));
}
// getIndexTyDie - Get an anonymous type for index type.
DIE *getIndexTyDie() { return IndexTyDie; }
// setIndexTyDie - Set D as anonymous type for index which can be reused
// later.
void setIndexTyDie(DIE *D) { IndexTyDie = D; }
/// createDIEEntry - Creates a new DIEEntry to be a proxy for a debug
/// information entry.
DIEEntry *createDIEEntry(DIE *Entry);
/// resolve - Look in the DwarfDebug map for the llvm::MDNode that
/// corresponds to the reference.
template <typename T> inline T *resolve(T *Ref) const {
return DD->resolve(Ref);
}
public:
// Added for 1-step elf
void buildLocation(const llvm::Instruction *, IGC::DbgVariable &, IGC::DIE *);
DIEBlock *buildPointer(const DbgVariable &, const VISAVariableLocation &);
DIEBlock *buildSampler(const DbgVariable &, const VISAVariableLocation &);
DIEBlock *buildSLM(const DbgVariable &, const VISAVariableLocation &,
IGC::DIE *);
DIEBlock *buildGeneral(const DbgVariable &, const VISAVariableLocation &,
const std::vector<DbgDecoder::LiveIntervalsVISA> *,
IGC::DIE *);
private:
bool buildPrivateBaseRegBased(const DbgVariable &, IGC::DIEBlock *,
const VISAVariableLocation &);
bool buildFpBasedLoc(const DbgVariable &, IGC::DIEBlock *,
const VISAVariableLocation &);
bool buildSlicedLoc(const DbgVariable &, IGC::DIEBlock *,
const VISAVariableLocation &,
const std::vector<DbgDecoder::LiveIntervalsVISA> *);
bool buildValidVar(const DbgVariable &, IGC::DIEBlock *,
const VISAVariableLocation &,
const std::vector<DbgDecoder::LiveIntervalsVISA> *, bool);
// Variables, used in buildGeneral-algorithm:
bool emitLocation = false;
bool isSLM = false;
DIEValue *skipOff = nullptr;
unsigned int offsetTaken = 0;
};
} // namespace IGC
|