Searched refs:LVObject (Results 1 – 12 of 12) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
H A D | LVSort.h | 19 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 D | LVObject.h | 48 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 D | LVRange.h | 49 class LVRange final : public LVObject { 61 LVRange() : LVObject(), RangesTree(Allocator) {} in LVRange()
|
H A D | LVLocation.h | 57 class LVLocation : public LVObject { 99 LVLocation() : LVObject() { setIsLocation(); } in LVLocation()
|
H A D | LVReader.h | 31 class LVObject; variable 235 StringRef getFilename(LVObject *Object, size_t Index) const;
|
H A D | LVElement.h | 67 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 D | LVSort.cpp | 27 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 D | LVObject.cpp | 25 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 D | LVLine.cpp | 64 return LVObject::noLineAsString(ShowZero); in noLineAsString()
|
H A D | LVReader.cpp | 184 StringRef LVReader::getFilename(LVObject *Object, size_t Index) const { in getFilename()
|
H A D | LVType.cpp | 427 LVObject *BaseType = ArgType->getUnderlyingType(); in encodeTemplateArgument()
|
H A D | LVLocation.cpp | 547 LVObject::print(OS, Full); in print()
|