003 File Manager
Current Path:
/usr/src/contrib/llvm-project/llvm/lib/DebugInfo/PDB
usr
/
src
/
contrib
/
llvm-project
/
llvm
/
lib
/
DebugInfo
/
PDB
/
📁
..
📁
DIA
📄
GenericError.cpp
(1.99 KB)
📄
IPDBSourceFile.cpp
(1.09 KB)
📁
Native
📄
PDB.cpp
(1.81 KB)
📄
PDBContext.cpp
(4.65 KB)
📄
PDBExtras.cpp
(16.74 KB)
📄
PDBInterfaceAnchors.cpp
(1.41 KB)
📄
PDBSymDumper.cpp
(4.21 KB)
📄
PDBSymbol.cpp
(8.2 KB)
📄
PDBSymbolAnnotation.cpp
(624 B)
📄
PDBSymbolBlock.cpp
(654 B)
📄
PDBSymbolCompiland.cpp
(3.87 KB)
📄
PDBSymbolCompilandDetails.cpp
(678 B)
📄
PDBSymbolCompilandEnv.cpp
(927 B)
📄
PDBSymbolCustom.cpp
(815 B)
📄
PDBSymbolData.cpp
(2.28 KB)
📄
PDBSymbolExe.cpp
(890 B)
📄
PDBSymbolFunc.cpp
(3.4 KB)
📄
PDBSymbolFuncDebugEnd.cpp
(670 B)
📄
PDBSymbolFuncDebugStart.cpp
(674 B)
📄
PDBSymbolLabel.cpp
(612 B)
📄
PDBSymbolPublicSymbol.cpp
(670 B)
📄
PDBSymbolThunk.cpp
(612 B)
📄
PDBSymbolTypeArray.cpp
(717 B)
📄
PDBSymbolTypeBaseClass.cpp
(672 B)
📄
PDBSymbolTypeBuiltin.cpp
(625 B)
📄
PDBSymbolTypeCustom.cpp
(666 B)
📄
PDBSymbolTypeDimension.cpp
(676 B)
📄
PDBSymbolTypeEnum.cpp
(669 B)
📄
PDBSymbolTypeFriend.cpp
(666 B)
📄
PDBSymbolTypeFunctionArg.cpp
(633 B)
📄
PDBSymbolTypeFunctionSig.cpp
(3.01 KB)
📄
PDBSymbolTypeManaged.cpp
(667 B)
📄
PDBSymbolTypePointer.cpp
(767 B)
📄
PDBSymbolTypeTypedef.cpp
(626 B)
📄
PDBSymbolTypeUDT.cpp
(954 B)
📄
PDBSymbolTypeVTable.cpp
(624 B)
📄
PDBSymbolTypeVTableShape.cpp
(676 B)
📄
PDBSymbolUnknown.cpp
(658 B)
📄
PDBSymbolUsingNamespace.cpp
(674 B)
📄
UDTLayout.cpp
(10.84 KB)
Editing: PDBSymbolCompiland.cpp
//===- PDBSymbolCompiland.cpp - compiland details ---------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "llvm/DebugInfo/PDB/IPDBSession.h" #include "llvm/DebugInfo/PDB/IPDBSourceFile.h" #include "llvm/DebugInfo/PDB/PDBSymbolCompiland.h" #include "llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h" #include "llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h" #include "llvm/DebugInfo/PDB/PDBSymDumper.h" #include "llvm/ADT/StringSwitch.h" #include "llvm/Support/Path.h" #include <utility> using namespace llvm; using namespace llvm::pdb; void PDBSymbolCompiland::dump(PDBSymDumper &Dumper) const { Dumper.dump(*this); } std::string PDBSymbolCompiland::getSourceFileName() const { return sys::path::filename(getSourceFileFullPath()).str(); } std::string PDBSymbolCompiland::getSourceFileFullPath() const { std::string SourceFileFullPath; // RecordedResult could be the basename, relative path or full path of the // source file. Usually it is retrieved and recorded from the command that // compiles this compiland. // // cmd FileName -> RecordedResult = .\\FileName // cmd (Path)\\FileName -> RecordedResult = (Path)\\FileName // std::string RecordedResult = RawSymbol->getSourceFileName(); if (RecordedResult.empty()) { if (auto Envs = findAllChildren<PDBSymbolCompilandEnv>()) { std::string EnvWorkingDir, EnvSrc; while (auto Env = Envs->getNext()) { std::string Var = Env->getName(); if (Var == "cwd") { EnvWorkingDir = Env->getValue(); continue; } if (Var == "src") { EnvSrc = Env->getValue(); if (sys::path::is_absolute(EnvSrc)) return EnvSrc; RecordedResult = EnvSrc; continue; } } if (!EnvWorkingDir.empty() && !EnvSrc.empty()) { auto Len = EnvWorkingDir.length(); if (EnvWorkingDir[Len - 1] != '/' && EnvWorkingDir[Len - 1] != '\\') { std::string Path = EnvWorkingDir + "\\" + EnvSrc; std::replace(Path.begin(), Path.end(), '/', '\\'); // We will return it as full path if we can't find a better one. if (sys::path::is_absolute(Path)) SourceFileFullPath = Path; } } } } if (!RecordedResult.empty()) { if (sys::path::is_absolute(RecordedResult)) return RecordedResult; // This searches name that has same basename as the one in RecordedResult. auto OneSrcFile = Session.findOneSourceFile( this, RecordedResult, PDB_NameSearchFlags::NS_CaseInsensitive); if (OneSrcFile) return OneSrcFile->getFileName(); } // At this point, we have to walk through all source files of this compiland, // and determine the right source file if any that is used to generate this // compiland based on language indicated in compilanddetails language field. auto Details = findOneChild<PDBSymbolCompilandDetails>(); PDB_Lang Lang = Details ? Details->getLanguage() : PDB_Lang::Cpp; auto SrcFiles = Session.getSourceFilesForCompiland(*this); if (SrcFiles) { while (auto File = SrcFiles->getNext()) { std::string FileName = File->getFileName(); auto file_extension = sys::path::extension(FileName); if (StringSwitch<bool>(file_extension.lower()) .Case(".cpp", Lang == PDB_Lang::Cpp) .Case(".cc", Lang == PDB_Lang::Cpp) .Case(".cxx", Lang == PDB_Lang::Cpp) .Case(".c", Lang == PDB_Lang::C) .Case(".asm", Lang == PDB_Lang::Masm) .Case(".swift", Lang == PDB_Lang::Swift) .Default(false)) return File->getFileName(); } } return SourceFileFullPath; }
Upload File
Create Folder