Home
last modified time | relevance | path

Searched refs:CodeViewDebug (Results 1 – 4 of 4) sorted by relevance

/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp133 CodeViewDebug::CodeViewDebug(AsmPrinter *AP) in CodeViewDebug() function in CodeViewDebug
136 StringRef CodeViewDebug::getFullFilepath(const DIFile *File) { in getFullFilepath()
200 unsigned CodeViewDebug::maybeRecordFile(const DIFile *F) { in maybeRecordFile()
234 CodeViewDebug::InlineSite &
235 CodeViewDebug::getInlineSite(const DILocation *InlinedAt, in getInlineSite()
278 const DISubprogram *CodeViewDebug::collectParentScopeNames( in collectParentScopeNames()
311 struct CodeViewDebug::TypeLoweringScope {
312 TypeLoweringScope(CodeViewDebug &CVD) : CVD(CVD) { ++CVD.TypeEmissionLevel; } in TypeLoweringScope()
320 CodeViewDebug &CVD;
323 std::string CodeViewDebug::getFullyQualifiedName(const DIScope *Scope, in getFullyQualifiedName()
[all …]
H A DCodeViewDebug.h1 //===- llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h --------------*- C++ -*-===//
55 class LLVM_LIBRARY_VISIBILITY CodeViewDebug : public DebugHandlerBase {
516 CodeViewDebug(AsmPrinter *AP);
527 template <> struct DenseMapInfo<CodeViewDebug::LocalVarDef> {
529 static inline CodeViewDebug::LocalVarDef getEmptyKey() {
530 return CodeViewDebug::LocalVarDef::createFromOpaqueValue(~0ULL);
533 static inline CodeViewDebug::LocalVarDef getTombstoneKey() {
534 return CodeViewDebug::LocalVarDef::createFromOpaqueValue(~0ULL - 1ULL);
537 static unsigned getHashValue(const CodeViewDebug::LocalVarDef &DR) {
538 return CodeViewDebug
[all...]
H A DAsmPrinter.cpp14 #include "CodeViewDebug.h"
542 DebugHandlers.push_back(std::make_unique<CodeViewDebug>(this)); in doInitialization()
/freebsd-src/lib/clang/libllvm/
H A DMakefile196 SRCS_MIN+= CodeGen/AsmPrinter/CodeViewDebug.cpp