Skip to content

Enhance Itanium demangler interface. #1880

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions llvm/include/llvm/Demangle/ItaniumDemangle.h
Original file line number Diff line number Diff line change
Expand Up @@ -2057,6 +2057,9 @@ class EnumLiteral : public Node {
else
S << Integer;
}

// Retrieves the string view of the integer value this node represents.
const StringView &getIntegerValue() const { return Integer; }
};

class IntegerLiteral : public Node {
Expand Down Expand Up @@ -2085,6 +2088,13 @@ class IntegerLiteral : public Node {
if (Type.size() <= 3)
S += Type;
}

// Retrieves the string view of the integer value represented by this node.
const StringView &getValue() const { return Value; }

// Retrieves the string view of the type string of the integer value this node
// represents.
const StringView &getType() const { return Type; }
};

template <class Float> struct FloatData;
Expand Down