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.h170 VariableSymbolNode *demangleVariableEncoding(std::string_view &MangledName,
248 VariableSymbolNode *demangleUntypedVariable(ArenaAllocator &Arena,
251 VariableSymbolNode *
H A DMicrosoftDemangleNodes.h313 struct VariableSymbolNode;
422 VariableSymbolNode *Variable = nullptr;
740 struct VariableSymbolNode : public SymbolNode { struct
741 VariableSymbolNode() : SymbolNode(NodeKind::VariableSymbol) {} in VariableSymbolNode() argument
/freebsd/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangle.cpp379 static VariableSymbolNode *synthesizeVariable(ArenaAllocator &Arena, in synthesizeVariable()
382 VariableSymbolNode *VSN = Arena.alloc<VariableSymbolNode>(); in synthesizeVariable()
388 VariableSymbolNode *
394 VariableSymbolNode *VSN = Arena.alloc<VariableSymbolNode>(); in demangleUntypedVariable()
403 VariableSymbolNode *
415 VariableSymbolNode *VSN = Arena.alloc<VariableSymbolNode>(); in demangleRttiBaseClassDescriptorNode()
439 DSIN->Variable = static_cast<VariableSymbolNode *>(Symbol); in demangleInitFiniStub()
894 VariableSymbolNode *
897 VariableSymbolNode *VSN = Arena.alloc<VariableSymbolNode>(); in demangleVariableEncoding()
H A DMicrosoftDemangleNodes.cpp604 void VariableSymbolNode::output(OutputBuffer &OB, OutputFlags Flags) const { in output()