Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp135 CodeViewDebug::CodeViewDebug(AsmPrinter *AP) in CodeViewDebug() function in CodeViewDebug
138 StringRef CodeViewDebug::getFullFilepath(const DIFile *File) { in getFullFilepath()
202 unsigned CodeViewDebug::maybeRecordFile(const DIFile *F) { in maybeRecordFile()
236 CodeViewDebug::InlineSite &
237 CodeViewDebug::getInlineSite(const DILocation *InlinedAt, in getInlineSite()
280 const DISubprogram *CodeViewDebug::collectParentScopeNames( in collectParentScopeNames()
313 struct CodeViewDebug::TypeLoweringScope {
314 TypeLoweringScope(CodeViewDebug &CVD) : CVD(CVD) { ++CVD.TypeEmissionLevel; } in TypeLoweringScope()
322 CodeViewDebug &CVD;
325 std::string CodeViewDebug::getFullyQualifiedName(const DIScope *Scope, in getFullyQualifiedName()
[all …]
H A DCodeViewDebug.h55 class LLVM_LIBRARY_VISIBILITY CodeViewDebug : public DebugHandlerBase {
523 CodeViewDebug(AsmPrinter *AP);
534 template <> struct DenseMapInfo<CodeViewDebug::LocalVarDef> {
536 static inline CodeViewDebug::LocalVarDef getEmptyKey() {
537 return CodeViewDebug::LocalVarDef::createFromOpaqueValue(~0ULL);
540 static inline CodeViewDebug::LocalVarDef getTombstoneKey() {
541 return CodeViewDebug::LocalVarDef::createFromOpaqueValue(~0ULL - 1ULL);
544 static unsigned getHashValue(const CodeViewDebug::LocalVarDef &DR) {
545 return CodeViewDebug::LocalVarDef::toOpaqueValue(DR) * 37ULL;
548 static bool isEqual(const CodeViewDebug::LocalVarDef &LHS,
[all …]
H A DAsmPrinter.cpp573 Handlers.push_back(std::make_unique<CodeViewDebug>(this)); in doInitialization()
/freebsd/lib/clang/libllvm/
H A DMakefile235 SRCS_MIN+= CodeGen/AsmPrinter/CodeViewDebug.cpp