Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/Demangle/
H A DMicrosoftDemangle.h161 VariableSymbolNode *demangleVariableEncoding(StringView &MangledName,
227 VariableSymbolNode *demangleUntypedVariable(ArenaAllocator &Arena,
230 VariableSymbolNode *
H A DMicrosoftDemangleNodes.h295 struct VariableSymbolNode;
377 VariableSymbolNode *Variable = nullptr;
609 struct VariableSymbolNode : public SymbolNode { struct
610 VariableSymbolNode() : SymbolNode(NodeKind::VariableSymbol) {} in VariableSymbolNode() function
/openbsd-src/gnu/llvm/llvm/lib/Demangle/
H A DMicrosoftDemangle.cpp344 static VariableSymbolNode *synthesizeVariable(ArenaAllocator &Arena, in synthesizeVariable()
347 VariableSymbolNode *VSN = Arena.alloc<VariableSymbolNode>(); in synthesizeVariable()
353 VariableSymbolNode *Demangler::demangleUntypedVariable( in demangleUntypedVariable()
357 VariableSymbolNode *VSN = Arena.alloc<VariableSymbolNode>(); in demangleUntypedVariable()
366 VariableSymbolNode *
378 VariableSymbolNode *VSN = Arena.alloc<VariableSymbolNode>(); in demangleRttiBaseClassDescriptorNode()
401 DSIN->Variable = static_cast<VariableSymbolNode *>(Symbol); in demangleInitFiniStub()
849 VariableSymbolNode *Demangler::demangleVariableEncoding(StringView &MangledName, in demangleVariableEncoding()
851 VariableSymbolNode *VSN = Arena.alloc<VariableSymbolNode>(); in demangleVariableEncoding()
H A DMicrosoftDemangleNodes.cpp592 void VariableSymbolNode::output(OutputBuffer &OB, OutputFlags Flags) const { in output()