using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; namespace Cosmos.Compiler.XSharp { public class TokenPatterns { protected class Pattern { public readonly TokenList Tokens; public readonly int Hash; public readonly CodeFunc Code; public bool RawAsm; public Pattern(TokenList aTokens, CodeFunc aCode) { Tokens = aTokens; Hash = aTokens.GetHashCode(); Code = aCode; } } public bool EmitUserComments = true; public delegate void CodeFunc(TokenList aTokens, ref List rCode); protected List mPatterns = new List(); protected string mGroup; protected string mProcedureName = null; protected bool mInIntHandler; public TokenPatterns() { AddPatterns(); } protected string Quoted(string aString) { return "\"" + aString + "\""; } protected int IntValue(Token aToken) { if (aToken.Value.StartsWith("0x")) { return int.Parse(aToken.Value.Substring(2), NumberStyles.AllowHexSpecifier); } else { return int.Parse(aToken.Value); } } protected string GroupLabel(string aLabel) { return mGroup + "_" + aLabel; } protected string ProcLabel(string aLabel) { return mGroup + "_" + mProcedureName + "_" + aLabel; } protected string GetLabel(Token aToken) { if (aToken.Type != TokenType.AlphaNum) { throw new Exception("Label must be AlphaNum."); } string xValue = aToken.Value; if (mProcedureName == null) { if (xValue.StartsWith(".")) { return xValue.Substring(1); } return GroupLabel(xValue); } else { if (xValue.StartsWith("..")) { return xValue.Substring(2); } else if (xValue.StartsWith(".")) { return GroupLabel(xValue.Substring(1)); } return ProcLabel(xValue); } } protected string GetDestRegister(TokenList aTokens, int aIdx) { return GetRegister("Destination", aTokens, aIdx); } protected string GetSrcRegister(TokenList aTokens, int aIdx) { return GetRegister("Source", aTokens, aIdx); } protected string GetRegister(string aPrefix, TokenList aTokens, int aIdx) { var xToken = aTokens[aIdx].Type; Token xNext = null; if (aIdx + 1 < aTokens.Count) { xNext = aTokens[aIdx + 1]; } string xResult = aPrefix + "Reg = RegistersEnum." + aTokens[aIdx].Value; if (xNext != null) { if (xNext.Value == "[") { string xDisplacement; if (aTokens[aIdx + 2].Value == "-") { xDisplacement = "-" + aTokens[aIdx + 2].Value; } else { xDisplacement = aTokens[aIdx + 2].Value; } xResult = xResult + ", " + aPrefix + "IsIndirect = true, " + aPrefix + "Displacement = " + xDisplacement; } } return xResult; } protected string GetJump(Token aToken) { if (aToken.Value == "<") { return "JB"; // unsigned } else if (aToken.Value == ">") { return "JA"; // unsigned } else if (aToken.Value == "=") { return "JE"; } else if (aToken.Value == "0") { // Same as JE, but implies intent in .asm better return "JZ"; } else if (aToken.Value == "!=") { return "JNE"; } else if (aToken.Value == "<=") { return "JBE"; // unsigned } else if (aToken.Value == ">=") { return "JAE"; // unsigned } else { throw new Exception("Unrecognized symbol in conditional: " + aToken.Value); } } protected void AddPatterns() { AddPattern("! Move EAX, 0", "{0}"); AddPattern("// Comment", delegate(TokenList aTokens, ref List rCode) { if (EmitUserComments) { string xValue = aTokens[0].Value; xValue = xValue.Replace("\"", "\\\""); rCode.Add("; " + xValue); } }); // Labels // Local and proc level are used most, so designed to make their syntax shortest. // Think of the dots like a directory, . is current group, .. is above that. // ..Name: - Global level. Emitted exactly as is. // .Name: - Group level. Group_Name // Name: - Procedure level. Group_ProcName_Name AddPattern("_ABC:", delegate(TokenList aTokens, ref List rCode) { rCode.Add(GetLabel(aTokens[0]) + ":"); }); AddPattern("Call _ABC", delegate(TokenList aTokens, ref List rCode) { rCode.Add("Call " + GetLabel(aTokens[1])); }); AddPattern("Goto _ABC", delegate(TokenList aTokens, ref List rCode) { rCode.Add("Jp " + GetLabel(aTokens[1])); }); AddPattern("const _ABC = 123", delegate(TokenList aTokens, ref List rCode) { rCode.Add(GroupLabel("Const_" + aTokens[1]) + " equ " + aTokens[3]); }); AddPattern(false, "var _ABC", delegate(TokenList aTokens, ref List rCode) { rCode.Add("mAssembler.DataMembers.Add(new DataMember(" + Quoted(GetLabel(aTokens[1])) + ", 0));"); }); AddPattern(false, "var _ABC = 123", delegate(TokenList aTokens, ref List rCode) { rCode.Add("mAssembler.DataMembers.Add(new DataMember(" + Quoted(GetLabel(aTokens[1])) + ", " + aTokens[3].Value + "));"); }); AddPattern(false, "var _ABC = 'Text'", delegate(TokenList aTokens, ref List rCode) { rCode.Add("mAssembler.DataMembers.Add(new DataMember(" + Quoted(GetLabel(aTokens[1])) + ", \"" + aTokens[3].Value + "\"));"); }); AddPattern(false, "var _ABC _ABC[123]", delegate(TokenList aTokens, ref List rCode) { rCode.Add("mAssembler.DataMembers.Add(new DataMember(" + Quoted(GetLabel(aTokens[1])) + ", new " + aTokens[2].Value + "[" + aTokens[4].Value + "]));"); }); AddPattern(new string[] { "if 0 goto _ABC", "if 0 Exit", "if < goto _ABC", "if < Exit", "if > goto _ABC", "if > Exit", "if = goto _ABC", "if = Exit", "if != goto _ABC", "if != Exit", "if <= goto _ABC", "if <= Exit", "if >= goto _ABC" , "if >= Exit" }, delegate(TokenList aTokens, ref List rCode) { string xLabel; if (string.Equals(aTokens[2].Value, "exit", StringComparison.InvariantCultureIgnoreCase)) { xLabel = ProcLabel("Exit"); } else { xLabel = GetLabel(aTokens[3]); } rCode.Add(GetJump(aTokens[1]) + " " + xLabel); } ); // Must test separate since !0 is two tokens AddPattern("if !0 goto _ABC", delegate(TokenList aTokens, ref List rCode) { rCode.Add("JNZ " + GetLabel(aTokens[4])); }); AddPattern("if !0 Exit", delegate(TokenList aTokens, ref List rCode) { rCode.Add("JNZ " + ProcLabel("Exit")); }); AddPattern(new string[] { //0 1 2 3 4 5 "if _REG < 123 goto _ABC", "if _REG < 123 exit", "if _REG > 123 goto _ABC", "if _REG > 123 exit", "if _REG = 123 goto _ABC", "if _REG = 123 exit", "if _REG != 123 goto _ABC", "if _REG != 123 exit", "if _REG <= 123 goto _ABC", "if _REG <= 123 exit", "if _REG >= 123 goto _ABC", "if _REG >= 123 exit" }, delegate(TokenList aTokens, ref List rCode) { rCode.Add("Cmp {1}, {3}"); string xLabel; if (string.Equals(aTokens[4].Value, "exit", StringComparison.InvariantCultureIgnoreCase)) { xLabel = ProcLabel("Exit"); } else { xLabel = GetLabel(aTokens[5]); } rCode.Add(GetJump(aTokens[2]) + " " + xLabel); } ); AddPattern("_REG ?= 123", "Cmp {0}, {2}"); AddPattern("_REG ?= _ABC", delegate(TokenList aTokens, ref List rCode) { rCode.Add("Cmp {0}, " + GetLabel(aTokens[2])); }); AddPattern("_REG ?= #_ABC", delegate(TokenList aTokens, ref List rCode) { rCode.Add("Cmp {0}, " + GroupLabel("Const_" + aTokens[3])); }); AddPattern("_REG ?& 123", "Test {0}, {2}"); AddPattern("_REG ?& _ABC", delegate(TokenList aTokens, ref List rCode) { rCode.Add("Test {0}, " + GetLabel(aTokens[2])); }); AddPattern("_REG ?& #_ABC", delegate(TokenList aTokens, ref List rCode) { rCode.Add("Test {0}, " + GroupLabel("Const_" + aTokens[3])); }); AddPattern("_REG ~> 123", "ROR {0}, {2}"); AddPattern("_REG <~ 123", "ROL {0}, {2}"); AddPattern("_REG >> 123", "SHR {0}, {2}"); AddPattern("_REG << 123", "SHL {0}, {2}"); AddPattern("_REG = 123", "Mov {0}, {2}"); AddPattern(new string[] { "_REG32[1] = 123", "_REGIDX[1] = 123" }, "Mov dword [{0} + {2}], {5}" ); AddPattern(new string[] { "_REG32[-1] = 123", "_REGIDX[-1] = 123" }, "Mov dword [{0} - {2}], {5}" ); AddPattern("_REG = #_ABC", delegate(TokenList aTokens, ref List rCode) { rCode.Add("Mov {0}, " + GroupLabel("Const_" + aTokens[3])); }); AddPattern(new string[] { "_REG32[1] = 123", "_REGIDX[1] = 123" }, delegate(TokenList aTokens, ref List rCode) { rCode.Add("Mov dword [{0} + {2}], " + GroupLabel("Const_" + aTokens[5])); }); AddPattern(new string[] { "_REG32[-1] = 123", "_REGIDX[-1] = 123" }, delegate(TokenList aTokens, ref List rCode) { rCode.Add("Mov dword [{0} - {2}], " + GroupLabel("Const_" + aTokens[5])); }); AddPattern("_REG = _REG", "Mov {0}, {2}"); AddPattern(new string[] { "_REG32[1] = _REG", "_REGIDX[1] = _REG"}, // "Mov [{0} + {2}], {5}" ); AddPattern(new string[] { "_REG32[-1] = _REG", "_REGIDX[-1] = _REG"}, // "Mov [{0} - {3}], {6}" ); AddPattern(new string[] { "_REG = _REG32[1]", "_REG = _REGIDX[1]"}, // "Mov {0}, [{2} + {4}]" ); AddPattern(new string[] { "_REG = _REG32[-1]", "_REG = _REGIDX[-1]"}, // "Mov {0}, [{2} - {5}]" ); AddPattern("_REG = _ABC", delegate(TokenList aTokens, ref List rCode) { rCode.Add("Mov {0}, [" + GetLabel(aTokens[2]) + "]"); }); // why not [var] like registers? Because its less frequent to access th ptr // and it is like a reg.. without [] to get the value... AddPattern("_REG = @_ABC", delegate(TokenList aTokens, ref List rCode) { rCode.Add("Mov {0}, " + GetLabel(aTokens[3])); }); AddPattern(new string[] { "Port[DX] = AL", "Port[DX] = AX", "Port[DX] = EAX" }, "Out DX, {5}" ); AddPattern(new string[] { "AL = Port[DX]", "AX = Port[DX]", "EAX = Port[DX]"}, // "In {0}, DX" ); AddPattern("+123", "Push dword {1}"); AddPattern(new string[] { "+123 as byte", "+123 as word", "+123 as dword"}, "Push {3} {1}"); AddPattern("+_REG", "Push {1}"); AddPattern("-_REG", "Pop {1}"); AddPattern("_ABC = _REG", delegate(TokenList aTokens, ref List rCode) { rCode.Add("Mov [" + GetLabel(aTokens[0]) + "], {2}"); }); AddPattern("_ABC = 123", delegate(TokenList aTokens, ref List rCode) { rCode.Add("Mov dword [" + GetLabel(aTokens[0]) + "], {2}"); }); AddPattern(new string[] { "_ABC = 123 as byte", "_ABC = 123 as word", "_ABC = 123 as dword"}, delegate(TokenList aTokens, ref List rCode) { rCode.Add("Mov {4} [" + GetLabel(aTokens[0]) + "], {2}"); }); // TODO: Allow asm to optimize these to Inc/Dec AddPattern("_REG + 1", "Add {0}, {2}"); AddPattern("_REG - 1", "Sub {0}, {2}"); AddPattern("_REG++", "Inc {0}"); AddPattern("_REG--", "Dec {0}"); AddPattern("}", delegate(TokenList aTokens, ref List rCode) { rCode.Add(mGroup + "_" + mProcedureName + "_Exit:"); if (mInIntHandler) { rCode.Add("IRet"); } else { rCode.Add("Ret"); } mProcedureName = null; }); AddPattern("Group _ABC", delegate(TokenList aTokens, ref List rCode) { mGroup = aTokens[1].Value; }); AddPattern("Exit", delegate(TokenList aTokens, ref List rCode) { rCode.Add("Jp " + ProcLabel("Exit")); }); AddPattern("InterruptHandler _ABC {", delegate(TokenList aTokens, ref List rCode) { mInIntHandler = true; mProcedureName = aTokens[1].Value; rCode.Add(mGroup + "_{1}:"); }); AddPattern("Jump _ABC", delegate(TokenList aTokens, ref List rCode) { rCode.Add("Jp " + GetLabel(aTokens[1])); }); AddPattern("Return", "Ret"); AddPattern("ReturnInterrupt", "IRet"); AddPattern("PopAll", "Popad"); AddPattern("PushAll", "Pushad"); AddPattern("Procedure _ABC {", delegate(TokenList aTokens, ref List rCode) { mInIntHandler = false; mProcedureName = aTokens[1].Value; rCode.Add(mGroup + "_{1}:"); }); AddPattern("Checkpoint 'Text'", delegate(TokenList aTokens, ref List rCode) { // This method emits a lot of ASM, but thats what we want becuase // at this point we need ASM as simple as possible and completely transparent. // No stack changes, no register mods, no calls, no jumps, etc. // TODO: Add an option on the debug project properties to turn this off. // Also see WriteDebugVideo in CosmosAssembler.cs var xPreBootLogging = true; if (xPreBootLogging) { UInt32 xVideo = 0xB8000; for (UInt32 i = xVideo; i < xVideo + 80 * 2; i = i + 2) { rCode.Add("mov byte [0x" + i.ToString("X") + "], 0"); rCode.Add("mov byte [0x" + (i + 1).ToString("X") + "], 0x02"); } foreach (var xChar in aTokens[1].Value) { rCode.Add("mov byte [0x" + xVideo.ToString("X") + "], " + (byte)xChar); xVideo = xVideo + 2; } } }); } protected Pattern FindMatch(TokenList aTokens) { int xHash = aTokens.GetPatternHashCode(); // Get a list of matching hashes, but then we have to // search for exact pattern match because it is possible // to have duplicate hashes. Hashes just provide us a quick way // to reduce the search. foreach (var xPattern in mPatterns.Where(q => q.Hash == xHash)) { if (xPattern.Tokens.PatternMatches(aTokens)) { return xPattern; } } return null; } void AsmToCSharp(List aLines) { for (int i = 0; i < aLines.Count; i++) { aLines[i] = "new LiteralAssemblerCode(\"" + aLines[i] + "\");"; } } public List GetPatternCode(TokenList aTokens) { var xPattern = FindMatch(aTokens); if (xPattern == null) { return null; } var xResult = new List(); xPattern.Code(aTokens, ref xResult); // Apply {0} etc into string for (int i = 0; i < xResult.Count; i++) { xResult[i] = string.Format(xResult[i], aTokens.ToArray()); } if (xPattern.RawAsm) { AsmToCSharp(xResult); } return xResult; } public List GetNonPatternCode(TokenList aTokens) { var xResult = new List(); // Find match and emit X# if (aTokens.Count == 2 && aTokens[0].Type == TokenType.AlphaNum && aTokens[1].Value == "()") { // () could be handled by pattern, but best to keep in one place for future xResult.Add("Call " + GroupLabel(aTokens[0].Value)); } // No matches if (xResult.Count == 0) { return null; } AsmToCSharp(xResult); return xResult; } public List GetCode(string aLine) { var xParser = new Parser(aLine, false, false); var xTokens = xParser.Tokens; var xResult = GetPatternCode(xTokens); if (xResult != null) { return xResult; } return GetNonPatternCode(xTokens); } protected void AddPattern(string aPattern, string aCode) { AddPattern(true, aPattern, aCode); } protected void AddPattern(string aPattern, CodeFunc aCode) { AddPattern(true, aPattern, aCode); } protected void AddPattern(string[] aPatterns, string aCode) { AddPattern(true, aPatterns, aCode); } protected void AddPattern(string[] aPatterns, CodeFunc aCode) { AddPattern(true, aPatterns, aCode); } protected void AddPattern(bool aRawAsm, string aPattern, CodeFunc aCode) { var xParser = new Parser(aPattern, false, true); var xPattern = new Pattern(xParser.Tokens, aCode); xPattern.RawAsm = aRawAsm; mPatterns.Add(xPattern); } protected void AddPattern(bool aRawAsm, string[] aPatterns, CodeFunc aCode) { foreach (var xPattern in aPatterns) { AddPattern(aRawAsm, xPattern, aCode); } } protected void AddPattern(bool aRawAsm, string aPattern, string aCode) { AddPattern(aRawAsm, aPattern, delegate(TokenList aTokens, ref List rCode) { rCode.Add(aCode); }); } protected void AddPattern(bool aRawAsm, string[] aPatterns, string aCode) { foreach (var xPattern in aPatterns) { AddPattern(aRawAsm, xPattern, aCode); } } } }