Home
last modified time | relevance | path

Searched refs:VariableSymbolNode (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DMicrosoftDemangle.h162 VariableSymbolNode *demangleVariableEncoding(std::string_view &MangledName,
232 VariableSymbolNode *demangleUntypedVariable(ArenaAllocator &Arena,
235 VariableSymbolNode *
H A DMicrosoftDemangleNodes.h294 struct VariableSymbolNode;
376 VariableSymbolNode *Variable = nullptr;
609 struct VariableSymbolNode : public SymbolNode { struct
610 VariableSymbolNode() : SymbolNode(NodeKind::VariableSymbol) {} in VariableSymbolNode() argument
/freebsd/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangle.cpp365 static VariableSymbolNode *synthesizeVariable(ArenaAllocator &Arena, in synthesizeVariable()
368 VariableSymbolNode *VSN = Arena.alloc<VariableSymbolNode>(); in synthesizeVariable()
374 VariableSymbolNode *
380 VariableSymbolNode *VSN = Arena.alloc<VariableSymbolNode>(); in demangleUntypedVariable()
389 VariableSymbolNode *
401 VariableSymbolNode *VSN = Arena.alloc<VariableSymbolNode>(); in demangleRttiBaseClassDescriptorNode()
425 DSIN->Variable = static_cast<VariableSymbolNode *>(Symbol); in demangleInitFiniStub()
880 VariableSymbolNode *
883 VariableSymbolNode *VSN = Arena.alloc<VariableSymbolNode>(); in demangleVariableEncoding()
H A DMicrosoftDemangleNodes.cpp592 void VariableSymbolNode::output(OutputBuffer &OB, OutputFlags Flags) const { in output()