LLVM 19.0.0git
LookupResult.cpp
Go to the documentation of this file.
1//===- LookupResult.cpp -------------------------------------------------*-===//
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
12#include "llvm/Support/Format.h"
13#include "llvm/Support/Path.h"
15#include <ciso646>
16
17using namespace llvm;
18using namespace gsym;
19
21 std::string Fullpath;
22 if (Index < Locations.size()) {
23 if (!Locations[Index].Dir.empty()) {
24 if (Locations[Index].Base.empty()) {
25 Fullpath = std::string(Locations[Index].Dir);
26 } else {
30 Fullpath.assign(Storage.begin(), Storage.end());
31 }
32 } else if (!Locations[Index].Base.empty())
33 Fullpath = std::string(Locations[Index].Base);
34 }
35 return Fullpath;
36}
37
39 OS << SL.Name;
40 if (SL.Offset > 0)
41 OS << " + " << SL.Offset;
42 if (SL.Dir.size() || SL.Base.size()) {
43 OS << " @ ";
44 if (!SL.Dir.empty()) {
45 OS << SL.Dir;
46 if (SL.Dir.contains('\\') && !SL.Dir.contains('/'))
47 OS << '\\';
48 else
49 OS << '/';
50 }
51 if (SL.Base.empty())
52 OS << "<invalid-file>";
53 else
54 OS << SL.Base;
55 OS << ':' << SL.Line;
56 }
57 return OS;
58}
59
61 OS << HEX64(LR.LookupAddr) << ": ";
62 auto NumLocations = LR.Locations.size();
63 for (size_t I = 0; I < NumLocations; ++I) {
64 if (I > 0) {
65 OS << '\n';
66 OS.indent(20);
67 }
68 const bool IsInlined = I + 1 != NumLocations;
69 OS << LR.Locations[I];
70 if (IsInlined)
71 OS << " [inlined]";
72 }
73 OS << '\n';
74 return OS;
75}
#define HEX64(v)
Definition: ExtractRanges.h:20
#define I(x, y, z)
Definition: MD5.cpp:58
raw_pwrite_stream & OS
This file defines the SmallString class.
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
Definition: SmallString.h:26
constexpr bool empty() const
empty - Check if the string is empty.
Definition: StringRef.h:134
constexpr size_t size() const
size - Get the string size.
Definition: StringRef.h:137
bool contains(StringRef Other) const
Return true if the given string is a substring of *this, and false otherwise.
Definition: StringRef.h:420
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
raw_ostream & indent(unsigned NumSpaces)
indent - Insert 'NumSpaces' spaces.
raw_ostream & operator<<(raw_ostream &OS, const FunctionInfo &R)
void append(SmallVectorImpl< char > &path, const Twine &a, const Twine &b="", const Twine &c="", const Twine &d="")
Append to path.
Definition: Path.cpp:457
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
uint64_t LookupAddr
The address that this lookup pertains to.
Definition: LookupResult.h:39
std::string getSourceFile(uint32_t Index) const
SourceLocations Locations
The source locations that match this address.
Definition: LookupResult.h:51
StringRef Base
Line entry source file basename.
Definition: LookupResult.h:24
uint32_t Line
Source file line number.
Definition: LookupResult.h:25
uint32_t Offset
Byte size offset within the named function.
Definition: LookupResult.h:26
StringRef Dir
Line entry source file directory path.
Definition: LookupResult.h:23
StringRef Name
Function or symbol name.
Definition: LookupResult.h:22