LLVM
15.0.0git
|
A forward-reference to a template argument that was not known at the point where the template parameter name was parsed in a mangling. More...
#include "llvm/Demangle/ItaniumDemangle.h"
Public Member Functions | |
ForwardTemplateReference (size_t Index_) | |
template<typename Fn > | |
void | match (Fn F) const =delete |
bool | hasRHSComponentSlow (OutputBuffer &OB) const override |
bool | hasArraySlow (OutputBuffer &OB) const override |
bool | hasFunctionSlow (OutputBuffer &OB) const override |
const Node * | getSyntaxNode (OutputBuffer &OB) const override |
void | printLeft (OutputBuffer &OB) const override |
void | printRight (OutputBuffer &OB) const override |
![]() | |
Node (Kind K_, Prec Precedence_=Prec::Primary, Cache RHSComponentCache_=Cache::No, Cache ArrayCache_=Cache::No, Cache FunctionCache_=Cache::No) | |
Node (Kind K_, Cache RHSComponentCache_, Cache ArrayCache_=Cache::No, Cache FunctionCache_=Cache::No) | |
template<typename Fn > | |
void | visit (Fn F) const |
Visit the most-derived object corresponding to this object. More... | |
bool | hasRHSComponent (OutputBuffer &OB) const |
bool | hasArray (OutputBuffer &OB) const |
bool | hasFunction (OutputBuffer &OB) const |
Kind | getKind () const |
Prec | getPrecedence () const |
void | printAsOperand (OutputBuffer &OB, Prec P=Prec::Default, bool StrictlyWorse=false) const |
void | print (OutputBuffer &OB) const |
virtual StringView | getBaseName () const |
virtual | ~Node ()=default |
DEMANGLE_DUMP_METHOD void | dump () const |
Public Attributes | |
size_t | Index |
Node * | Ref = nullptr |
bool | Printing = false |
![]() | |
Cache | RHSComponentCache: 2 |
Tracks if this node has a component on its right side, in which case we need to call printRight. More... | |
Cache | ArrayCache: 2 |
Track if this node is a (possibly qualified) array type. More... | |
Cache | FunctionCache: 2 |
Track if this node is a (possibly qualified) function type. More... | |
Additional Inherited Members | |
![]() | |
enum | Kind : unsigned char |
enum | Cache : unsigned char { Cache::Yes, Cache::No, Cache::Unknown } |
Three-way bool to track a cached value. More... | |
enum | Prec { Prec::Primary, Prec::Postfix, Prec::Unary, Prec::Cast, Prec::PtrMem, Prec::Multiplicative, Prec::Additive, Prec::Shift, Prec::Spaceship, Prec::Relational, Prec::Equality, Prec::And, Prec::Xor, Prec::Ior, Prec::AndIf, Prec::OrIf, Prec::Conditional, Prec::Assign, Prec::Comma, Prec::Default } |
Operator precedence for expression nodes. More... | |
A forward-reference to a template argument that was not known at the point where the template parameter name was parsed in a mangling.
This is created when demangling the name of a specialization of a conversion function template:
When demangling a specialization of the conversion function template, we encounter the name of the template (including the T
) before we reach the template argument list, so we cannot substitute the parameter name for the corresponding argument while parsing. Instead, we create a ForwardTemplateReference
node that is resolved after we parse the template arguments.
Definition at line 1406 of file ItaniumDemangle.h.
|
inline |
Definition at line 1416 of file ItaniumDemangle.h.
|
inlineoverridevirtual |
Reimplemented from Node.
Definition at line 1444 of file ItaniumDemangle.h.
References Node::getSyntaxNode(), llvm::X86II::OB, Printing, and Ref.
|
inlineoverridevirtual |
Reimplemented from Node.
Definition at line 1432 of file ItaniumDemangle.h.
References Node::hasArray(), llvm::X86II::OB, Printing, and Ref.
|
inlineoverridevirtual |
Reimplemented from Node.
Definition at line 1438 of file ItaniumDemangle.h.
References Node::hasFunction(), llvm::X86II::OB, Printing, and Ref.
|
inlineoverridevirtual |
Reimplemented from Node.
Definition at line 1426 of file ItaniumDemangle.h.
References Node::hasRHSComponent(), llvm::X86II::OB, Printing, and Ref.
|
delete |
|
inlineoverridevirtual |
Implements Node.
Definition at line 1451 of file ItaniumDemangle.h.
References llvm::X86II::OB, Printing, Node::printLeft(), and Ref.
|
inlineoverridevirtual |
Reimplemented from Node.
Definition at line 1457 of file ItaniumDemangle.h.
References llvm::X86II::OB, Printing, Node::printRight(), and Ref.
size_t ForwardTemplateReference::Index |
Definition at line 1407 of file ItaniumDemangle.h.
|
mutable |
Definition at line 1414 of file ItaniumDemangle.h.
Referenced by getSyntaxNode(), hasArraySlow(), hasFunctionSlow(), hasRHSComponentSlow(), printLeft(), and printRight().
Node* ForwardTemplateReference::Ref = nullptr |
Definition at line 1408 of file ItaniumDemangle.h.
Referenced by getSyntaxNode(), hasArraySlow(), hasFunctionSlow(), hasRHSComponentSlow(), printLeft(), and printRight().