LLVM 20.0.0git
PDBSymbolCompiland.cpp
Go to the documentation of this file.
1//===- PDBSymbolCompiland.cpp - compiland details ---------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
11
17
19#include "llvm/Support/Path.h"
20
21using namespace llvm;
22using namespace llvm::pdb;
23
25 Dumper.dump(*this);
26}
27
30}
31
33 std::string SourceFileFullPath;
34
35 // RecordedResult could be the basename, relative path or full path of the
36 // source file. Usually it is retrieved and recorded from the command that
37 // compiles this compiland.
38 //
39 // cmd FileName -> RecordedResult = .\\FileName
40 // cmd (Path)\\FileName -> RecordedResult = (Path)\\FileName
41 //
42 std::string RecordedResult = RawSymbol->getSourceFileName();
43
44 if (RecordedResult.empty()) {
45 if (auto Envs = findAllChildren<PDBSymbolCompilandEnv>()) {
46 std::string EnvWorkingDir, EnvSrc;
47
48 while (auto Env = Envs->getNext()) {
49 std::string Var = Env->getName();
50 if (Var == "cwd") {
51 EnvWorkingDir = Env->getValue();
52 continue;
53 }
54 if (Var == "src") {
55 EnvSrc = Env->getValue();
56 if (sys::path::is_absolute(EnvSrc))
57 return EnvSrc;
58 RecordedResult = EnvSrc;
59 continue;
60 }
61 }
62 if (!EnvWorkingDir.empty() && !EnvSrc.empty()) {
63 auto Len = EnvWorkingDir.length();
64 if (EnvWorkingDir[Len - 1] != '/' && EnvWorkingDir[Len - 1] != '\\') {
65 std::string Path = EnvWorkingDir + "\\" + EnvSrc;
66 std::replace(Path.begin(), Path.end(), '/', '\\');
67 // We will return it as full path if we can't find a better one.
69 SourceFileFullPath = Path;
70 }
71 }
72 }
73 }
74
75 if (!RecordedResult.empty()) {
76 if (sys::path::is_absolute(RecordedResult))
77 return RecordedResult;
78
79 // This searches name that has same basename as the one in RecordedResult.
80 auto OneSrcFile = Session.findOneSourceFile(
81 this, RecordedResult, PDB_NameSearchFlags::NS_CaseInsensitive);
82 if (OneSrcFile)
83 return OneSrcFile->getFileName();
84 }
85
86 // At this point, we have to walk through all source files of this compiland,
87 // and determine the right source file if any that is used to generate this
88 // compiland based on language indicated in compilanddetails language field.
89 auto Details = findOneChild<PDBSymbolCompilandDetails>();
90 PDB_Lang Lang = Details ? Details->getLanguage() : PDB_Lang::Cpp;
91 auto SrcFiles = Session.getSourceFilesForCompiland(*this);
92 if (SrcFiles) {
93 while (auto File = SrcFiles->getNext()) {
94 std::string FileName = File->getFileName();
95 auto file_extension = sys::path::extension(FileName);
96 if (StringSwitch<bool>(file_extension.lower())
97 .Case(".cpp", Lang == PDB_Lang::Cpp)
98 .Case(".cc", Lang == PDB_Lang::Cpp)
99 .Case(".cxx", Lang == PDB_Lang::Cpp)
100 .Case(".c", Lang == PDB_Lang::C)
101 .Case(".asm", Lang == PDB_Lang::Masm)
102 .Case(".swift", Lang == PDB_Lang::Swift)
103 .Case(".rs", Lang == PDB_Lang::Rust)
104 .Case(".m", Lang == PDB_Lang::ObjC)
105 .Case(".mm", Lang == PDB_Lang::ObjCpp)
106 .Default(false))
107 return File->getFileName();
108 }
109 }
110
111 return SourceFileFullPath;
112}
This file implements the StringSwitch template, which mimics a switch() statement whose cases are str...
std::string str() const
str - Get the contents as an std::string.
Definition: StringRef.h:229
A switch()-like statement whose cases are string literals.
Definition: StringSwitch.h:44
StringSwitch & Case(StringLiteral S, T Value)
Definition: StringSwitch.h:69
R Default(T Value)
Definition: StringSwitch.h:182
virtual std::string getSourceFileName() const =0
virtual std::unique_ptr< IPDBSourceFile > findOneSourceFile(const PDBSymbolCompiland *Compiland, llvm::StringRef Pattern, PDB_NameSearchFlags Flags) const =0
virtual std::unique_ptr< IPDBEnumSourceFiles > getSourceFilesForCompiland(const PDBSymbolCompiland &Compiland) const =0
virtual void dump(const PDBSymbolAnnotation &Symbol)
std::string getSourceFileName() const
std::string getSourceFileFullPath() const
void dump(PDBSymDumper &Dumper) const override
Dumps the contents of a symbol a raw_ostream.
const IPDBSession & Session
Definition: PDBSymbol.h:168
IPDBRawSymbol * RawSymbol
Definition: PDBSymbol.h:170
SourceLanguage
These values correspond to the CV_CFL_LANG enumeration in the Microsoft Debug Interface Access SDK,...
Definition: CodeView.h:146
@ NS_CaseInsensitive
Definition: PDBTypes.h:105
StringRef filename(StringRef path, Style style=Style::native)
Get filename.
Definition: Path.cpp:577
bool is_absolute(const Twine &path, Style style=Style::native)
Is path absolute?
Definition: Path.cpp:671
StringRef extension(StringRef path, Style style=Style::native)
Get extension.
Definition: Path.cpp:590
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18