mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
43 lines
1.5 KiB
C#
43 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Compiler.XSharp {
|
|
public class TokenPatterns {
|
|
protected Dictionary<TokenPattern, string> mList = new Dictionary<TokenPattern, string>();
|
|
|
|
public TokenPatterns() {
|
|
Add(new TokenType[] { TokenType.LiteralAsm }, "new LiteralAssemblerCode(\"{0}\");");
|
|
Add(new TokenType[] { TokenType.Comment }, "new Comment(\"{0}\");");
|
|
|
|
Add("REG = 123", "new Mov{{ DestinationReg = RegistersEnum.{0}, SourceValue = {2} }};");
|
|
Add("REG = REG", "new Mov{{ DestinationReg = RegistersEnum.{0}, SourceReg = RegistersEnum.{2} }};");
|
|
Add("REG = REG[0]", "//new ;");
|
|
|
|
Add("ABC = REG", "//new ;");
|
|
|
|
// TODO: Allow asm to optimize these to Inc/Dec
|
|
Add("REG + 1", "new Add {{ DestinationReg = RegistersEnum.{0}, SourceValue = {2} }};");
|
|
Add("REG - 1", "new Sub {{ DestinationReg = RegistersEnum.{0}, SourceValue = {2} }};");
|
|
|
|
Add(new TokenType[] { TokenType.OpCode }, "//new ;");
|
|
}
|
|
|
|
public string GetCode(TokenType[] aPattern) {
|
|
string xResult;
|
|
if (!mList.TryGetValue(new TokenPattern(aPattern), out xResult)) {
|
|
throw new Exception("Token pattern not found.");
|
|
}
|
|
return xResult;
|
|
}
|
|
|
|
public void Add(string aPattern, string aCode) {
|
|
mList.Add(new TokenPattern(aPattern), aCode);
|
|
}
|
|
|
|
public void Add(TokenType[] aPattern, string aCode) {
|
|
mList.Add(new TokenPattern(aPattern), aCode);
|
|
}
|
|
}
|
|
}
|