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 12:16:24 +01:00
|
|
|
IOStream
|
2018-09-15 15:29:18 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
private SpecialType _specialSubstitutionKey;
|
2018-09-15 15:29:18 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public SpecialSubstitution(SpecialType specialSubstitutionKey) : base(NodeType.SpecialSubstitution)
|
2018-09-15 15:29:18 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
_specialSubstitutionKey = specialSubstitutionKey;
|
2018-09-15 15:29:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void SetExtended()
|
|
|
|
{
|
|
|
|
Type = NodeType.ExpandedSpecialSubstitution;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override string GetName()
|
|
|
|
{
|
2018-12-06 12:16:24 +01: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()
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
switch (_specialSubstitutionKey)
|
2018-09-15 15:29:18 +02:00
|
|
|
{
|
|
|
|
case SpecialType.Allocator:
|
|
|
|
return "std::allocator";
|
|
|
|
case SpecialType.BasicString:
|
|
|
|
return "std::basic_string";
|
|
|
|
case SpecialType.String:
|
|
|
|
return "std::basic_string<char, std::char_traits<char>, std::allocator<char> >";
|
|
|
|
case SpecialType.IStream:
|
|
|
|
return "std::basic_istream<char, std::char_traits<char> >";
|
|
|
|
case SpecialType.OStream:
|
|
|
|
return "std::basic_ostream<char, std::char_traits<char> >";
|
|
|
|
case SpecialType.IOStream:
|
|
|
|
return "std::basic_iostream<char, std::char_traits<char> >";
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public override void PrintLeft(TextWriter writer)
|
2018-09-15 15:29:18 +02:00
|
|
|
{
|
|
|
|
if (Type == NodeType.ExpandedSpecialSubstitution)
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
writer.Write(GetExtendedName());
|
2018-09-15 15:29:18 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
writer.Write("std::");
|
|
|
|
writer.Write(GetName());
|
2018-09-15 15:29:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|