Home
last modified time | relevance | path

Searched refs:LVObject (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVSort.h19 class LVObject; variable
32 using LVSortFunction = LVSortValue (*)(const LVObject *LHS,
33 const LVObject *RHS);
39 LVSortValue compareKind(const LVObject *LHS, const LVObject *RHS);
40 LVSortValue compareLine(const LVObject *LHS, const LVObject *RHS);
41 LVSortValue compareName(const LVObject *LHS, const LVObject *RHS);
42 LVSortValue compareOffset(const LVObject *LHS, const LVObject *RHS);
43 LVSortValue compareRange(const LVObject *LHS, const LVObject *RHS);
44 LVSortValue sortByKind(const LVObject *LHS, const LVObject *RHS);
45 LVSortValue sortByLine(const LVObject *LHS, const LVObject *RHS);
[all …]
H A DLVObject.h48 class LVObject; variable
67 using LVObjectSetFunction = void (LVObject::*)();
68 using LVObjectGetFunction = bool (LVObject::*)() const;
108 class LVObject {
156 LVObject(const LVObject &Object) { in LVObject() function
195 LVObject() { in LVObject() function
200 LVObject &operator=(const LVObject &) = delete;
201 virtual ~LVObject() = default;
302 LVObject *Parent, StringRef Value,
H A DLVRange.h49 class LVRange final : public LVObject {
61 LVRange() : LVObject(), RangesTree(Allocator) {} in LVRange()
H A DLVLocation.h57 class LVLocation : public LVObject {
99 LVLocation() : LVObject() { setIsLocation(); } in LVLocation()
H A DLVReader.h31 class LVObject; variable
235 StringRef getFilename(LVObject *Object, size_t Index) const;
H A DLVElement.h67 class LVElement : public LVObject {
134 : LVObject(), SubclassID(ID), AccessibilityCode(0), InlineCode(0), in LVElement()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVSort.cpp27 LVSortValue llvm::logicalview::compareKind(const LVObject *LHS, in compareKind()
28 const LVObject *RHS) { in compareKind()
33 LVSortValue llvm::logicalview::compareLine(const LVObject *LHS, in compareLine()
34 const LVObject *RHS) { in compareLine()
39 LVSortValue llvm::logicalview::compareName(const LVObject *LHS, in compareName()
40 const LVObject *RHS) { in compareName()
45 LVSortValue llvm::logicalview::compareOffset(const LVObject *LHS, in compareOffset()
46 const LVObject *RHS) { in compareOffset()
51 LVSortValue llvm::logicalview::compareRange(const LVObject *LHS, in compareRange()
52 const LVObject *RHS) { in compareRange()
[all …]
H A DLVObject.cpp25 uint64_t LVObject::GID = 0;
35 std::string LVObject::indentAsString(LVLevel Level) const { in indentAsString()
40 std::string LVObject::indentAsString() const { in indentAsString()
47 std::string LVObject::noLineAsString(bool ShowZero) const { in noLineAsString()
52 std::string LVObject::lineAsString(uint32_t LineNumber, LVHalf Discriminator, in lineAsString()
75 std::string LVObject::lineNumberAsStringStripped(bool ShowZero) const { in lineNumberAsStringStripped()
79 std::string LVObject::referenceAsString(uint32_t LineNumber, in referenceAsString()
89 void LVObject::setParent(LVScope *Scope) { in setParent()
93 void LVObject::setParent(LVSymbol *Symbol) { in setParent()
98 void LVObject::markBranchAsMissing() { in markBranchAsMissing()
[all …]
H A DLVLine.cpp64 return LVObject::noLineAsString(ShowZero); in noLineAsString()
H A DLVReader.cpp184 StringRef LVReader::getFilename(LVObject *Object, size_t Index) const { in getFilename()
H A DLVType.cpp427 LVObject *BaseType = ArgType->getUnderlyingType(); in encodeTemplateArgument()
H A DLVLocation.cpp547 LVObject::print(OS, Full); in print()