public string[] SubstituteSymbolsWithValues(string[] assemblyInstructions) { List <string> assemblyInstructionsWithoutSymbols = new List <string>(); foreach (string instruction in assemblyInstructions) { if (!SyntaxValidator.IsLabel(instruction)) { if (SyntaxValidator.IsAddressInstructionWithSymbol(instruction)) { string addressSymbol = instruction.Remove(0, 1); if (!symbolTable.Contains(addressSymbol)) { symbolTable.AddVariable(addressSymbol); } assemblyInstructionsWithoutSymbols.Add("@" + symbolTable.GetValue(addressSymbol)); } else { assemblyInstructionsWithoutSymbols.Add(instruction); } } } return(assemblyInstructionsWithoutSymbols.ToArray()); }
static public string[] GetMachineCodeArray(string[] assemblyInstructions) { int lineNumber = 0; try { SymbolHandler symbolHandler = new SymbolHandler(assemblyInstructions); Console.WriteLine("Labels saved to symbol table..."); assemblyInstructions = symbolHandler.SubstituteSymbolsWithValues(assemblyInstructions); Console.WriteLine("Symbol to value substitution complete..."); List <string> machineCodeInstructionArray = new List <string>(); Instruction newInstruction; string newInstructionAsMachineCode; foreach (string assemblyInstruction in assemblyInstructions) { if (!SyntaxValidator.IsLabel(assemblyInstruction)) { newInstruction = GetInstructionFromAssemblyCommand(assemblyInstruction); newInstructionAsMachineCode = newInstruction.GetInstructionAsMachineCode(); machineCodeInstructionArray.Add(newInstructionAsMachineCode); lineNumber++; } } Console.WriteLine("Assembly language converted to machine code..."); return(machineCodeInstructionArray.ToArray()); } catch (Exception e) { throw new Exception("Error on line " + lineNumber.ToString() + ": " + e.Message); } }
public SymbolHandler(string[] assemblyInstructions) { Dictionary <string, int> labelDictionary = new Dictionary <string, int>(); string label; int instructionLineNumber = 0; foreach (string instruction in assemblyInstructions) { if (SyntaxValidator.IsLabel(instruction)) { label = instruction.Trim('(', ')'); labelDictionary.Add(label, instructionLineNumber); } else { instructionLineNumber++; } } symbolTable = new SymbolTable(labelDictionary); }