2018-09-15 15:29:18 +02:00
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
|
|
|
|
{
|
|
|
|
|
public class SpecialSubstitution : BaseNode
|
|
|
|
|
{
|
|
|
|
|
public enum SpecialType
|
|
|
|
|
{
|
|
|
|
|
Allocator,
|
|
|
|
|
BasicString,
|
|
|
|
|
String,
|
|
|
|
|
IStream,
|
|
|
|
|
OStream,
|
2018-12-06 05:16:24 -06:00
|
|
|
IOStream
|
2018-09-15 15:29:18 +02:00
|
|
|
}
|
|
|
|
|
|
2023-07-16 19:31:14 +02:00
|
|
|
private readonly SpecialType _specialSubstitutionKey;
|
2018-09-15 15:29:18 +02:00
|
|
|
|
2018-12-06 05:16:24 -06:00
|
|
|
public SpecialSubstitution(SpecialType specialSubstitutionKey) : base(NodeType.SpecialSubstitution)
|
2018-09-15 15:29:18 +02:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
_specialSubstitutionKey = specialSubstitutionKey;
|
2018-09-15 15:29:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SetExtended()
|
|
|
|
|
{
|
|
|
|
|
Type = NodeType.ExpandedSpecialSubstitution;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string GetName()
|
|
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
switch (_specialSubstitutionKey)
|
2018-09-15 15:29:18 +02:00
|
|
|
{
|
|
|
|
|
case SpecialType.Allocator:
|
|
|
|
|
return "allocator";
|
|
|
|
|
case SpecialType.BasicString:
|
|
|
|
|
return "basic_string";
|
|
|
|
|
case SpecialType.String:
|
|
|
|
|
if (Type == NodeType.ExpandedSpecialSubstitution)
|
|
|
|
|
{
|
|
|
|
|
return "basic_string";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return "string";
|
|
|
|
|
case SpecialType.IStream:
|
|
|
|
|
return "istream";
|
|
|
|
|
case SpecialType.OStream:
|
|
|
|
|
return "ostream";
|
|
|
|
|
case SpecialType.IOStream:
|
|
|
|
|
return "iostream";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string GetExtendedName()
|
|
|
|
|
{
|
2023-07-16 19:31:14 +02:00
|
|
|
return _specialSubstitutionKey switch
|
2018-09-15 15:29:18 +02:00
|
|
|
{
|
2023-07-16 19:31:14 +02:00
|
|
|
SpecialType.Allocator => "std::allocator",
|
|
|
|
|
SpecialType.BasicString => "std::basic_string",
|
|
|
|
|
SpecialType.String => "std::basic_string<char, std::char_traits<char>, std::allocator<char> >",
|
|
|
|
|
SpecialType.IStream => "std::basic_istream<char, std::char_traits<char> >",
|
|
|
|
|
SpecialType.OStream => "std::basic_ostream<char, std::char_traits<char> >",
|
|
|
|
|
SpecialType.IOStream => "std::basic_iostream<char, std::char_traits<char> >",
|
|
|
|
|
_ => null,
|
|
|
|
|
};
|
2018-09-15 15:29:18 +02:00
|
|
|
}
|
|
|
|
|
|
2018-12-06 05:16:24 -06:00
|
|
|
public override void PrintLeft(TextWriter writer)
|
2018-09-15 15:29:18 +02:00
|
|
|
{
|
|
|
|
|
if (Type == NodeType.ExpandedSpecialSubstitution)
|
|
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
writer.Write(GetExtendedName());
|
2018-09-15 15:29:18 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
writer.Write("std::");
|
|
|
|
|
writer.Write(GetName());
|
2018-09-15 15:29:18 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-07-16 19:31:14 +02:00
|
|
|
}
|