Example #1
0
 private void Asserts(ExtendedWarrior warrior)
 {
     if (warrior.Length>warrior.Rules.MaxLength)
     {
         WriteError("Too many instructions");
     }
 }
Example #2
0
 public override void ExpandStatements(ExtendedWarrior warrior, WarriorParser parser, ref int currentAddress,
     int coreSize, bool evaluate)
 {
     foreach (Statement statement in Statements)
     {
         statement.ExpandStatements(warrior, parser, ref currentAddress, coreSize, evaluate);
     }
 }
Example #3
0
 public override void ExpandStatements(ExtendedWarrior warrior, WarriorParser parser, ref int currentAddress,
     int coreSize, bool evaluate)
 {
     //set labels, except last which is EQU expression
     for (int l = 0; l < Labels.Count; l++)
     {
         LabelName label = Labels[l];
         if (l == Labels.Count - 1)
         {//equ
             parser.variables[label.GetFullName(parser, currentAddress)] = expression;
         }
         else
         {//labels
             parser.variables[label.GetFullName(parser, currentAddress)] = new Address(currentAddress);
         }
     }
     return;
 }
Example #4
0
        private ExtendedWarrior Parse(string sourceText, string implicitName)
        {
            errCount = 0;
            Prepare();
            try
            {
                Statement statement = ParseInternal(sourceText);
                if (statement == null)
                    return null;
                ExtendedWarrior warrior = new ExtendedWarrior(project.Rules);
                int currentAddress;

                //first pass to expand for-rof cycles
                currentAddress = 0;
                variables["CURLINE"] = new Value(0);
                statement.ExpandStatements(warrior, this, ref currentAddress, project.Rules.CoreSize, false);
                SetRegisters();

                //second pass to evaluate variables/labels in context of for cycles
                currentAddress = 0;
                variables["CURLINE"] = new Value(0);
                statement.ExpandStatements(warrior, this, ref currentAddress, project.Rules.CoreSize, true);

                SetOrg(warrior);
                SetPin(warrior);
                SetName(warrior, implicitName);
                SetAuthor(warrior);
                Asserts(warrior);
                warrior.Variables = variables;
                if (errCount > 0)
                    return null;
                return warrior;
            }
            catch (ParserException)
            {
                return null;
            }
        }
        public override void ExpandStatements(ExtendedWarrior warrior, WarriorParser parser, ref int currentAddress,
            int coreSize, bool evaluate)
        {
            //set all labels
            foreach (LabelName label in Labels)
            {
                parser.variables[label.GetFullName(parser, currentAddress)] = new Address(currentAddress);
            }

            ExtendedInstruction instruction;
            if (!evaluate)
            {
                instruction =
                    new ExtendedInstruction(Operation, Modifier, A.Mode, Int32.MinValue, B.Mode, Int32.MinValue);
                instruction.Address = currentAddress;
                warrior.Add(instruction);
            }
            else
            {
                instruction = (ExtendedInstruction)warrior.Instructions[currentAddress];
                instruction.ValueA = Instruction.Mod(A.Expression.Evaluate(parser, currentAddress, coreSize), coreSize);
                instruction.ValueB = Instruction.Mod(B.Expression.Evaluate(parser, currentAddress, coreSize), coreSize);
                instruction.ExpressionA = A.Expression.ToString();
                instruction.ExpressionB = B.Expression.ToString();
                if (instruction.ModeA == Mode.NULL)
                {
                    instruction.ModeA=A.Expression.GetMode(parser, currentAddress);
                }
                if (instruction.ModeA == Mode.NULL)
                {
                    instruction.ModeA = Mode.Direct;
                }
                if (instruction.ModeB == Mode.NULL)
                {
                    instruction.ModeB=B.Expression.GetMode(parser, currentAddress);
                }
                if (instruction.ModeB == Mode.NULL)
                {
                    instruction.ModeB = Mode.Direct;
                }
                if (instruction.Modifier == Modifier.NULL)
                {
                    instruction.Modifier =
                        Instruction.DefaultModifier(instruction.Operation, instruction.ModeA, instruction.ModeB);
                }

                if (Comments != null)
                {
                    instruction.Comment = Comments[Comments.Count - 1];
                }
                else
                {
                    instruction.Comment = "";
                }
                instruction.OriginalInstruction = OriginalInstruction;

                if (Labels.Count > 0)
                {
                    instruction.Label = Labels[Labels.Count - 1].GetFullName(parser, currentAddress);
                }
                else
                {
                    instruction.Label = "";
                }
            }
            currentAddress++;
            parser.variables["CURLINE"] = new Value(currentAddress);
        }
Example #6
0
 private void SetPin(ExtendedWarrior warrior)
 {
     if (pin != null)
     {
         warrior.Pin = pin.Evaluate(this, 0);
     }
     else
     {
         warrior.Pin = PSpace.UNSHARED;
     }
 }
Example #7
0
 private void SetOrg(ExtendedWarrior warrior)
 {
     if (org != null)
     {
         warrior.StartOffset = org.Evaluate(this, 0);
     }
 }
Example #8
0
 private void SetName(ExtendedWarrior warrior, string implicitName)
 {
     if (warriorName != null)
     {
         warrior.Name = warriorName;
     }
     else
     {
         warrior.Name = implicitName;
     }
 }
Example #9
0
 private void SetAuthor(ExtendedWarrior warrior)
 {
     if (authorName != null)
     {
         warrior.Author = authorName;
     }
 }
Example #10
0
 public abstract void ExpandStatements(ExtendedWarrior warrior, WarriorParser parser, ref int currentAddress,
     int coreSize, bool evaluate);
Example #11
0
        public void ProcessInstructionInternal(ExtendedInstruction test, string tA, string tB, string dA, string dB)
        {
            string name = "test-" + test.Operation + "." + test.Modifier + "-" + test.ModeA + tA + "-" + test.ModeB + tB +
                          "-" + dA + dB + ".red";

            ExtendedWarrior w = new ExtendedWarrior(rules);

            w.FileName = @"N:\nMarsRelease\regression\gen\" + name;
            w.Name = name;
            w.Author = "Pavel Savara";
            w.Date = DateTime.Today.ToShortDateString();

            ExtendedInstruction dat1 = new ExtendedInstruction();
            dat1.Modifier = Modifier.A;
            dat1.Label = "dat1";
            dat1.ValueA = rand.Next(0, Rules.DefaultRules.CoreSize - 1);
            dat1.ValueB = rand.Next(0, Rules.DefaultRules.CoreSize - 1);
            w.Add(dat1);

            ExtendedInstruction dat2 = new ExtendedInstruction();
            dat2.Modifier = Modifier.B;
            dat2.Label = "dat2";
            dat2.ValueA = rand.Next(0, Rules.DefaultRules.CoreSize - 1);
            dat2.ValueB = rand.Next(0, Rules.DefaultRules.CoreSize - 1);
            w.Add(dat2);

            ExtendedInstruction dat3 = new ExtendedInstruction();
            dat3.Modifier = Modifier.AB;
            dat3.Label = "dat3";
            dat3.ExpressionA = dA;
            dat3.ExpressionB = dB;
            w.Add(dat3);

            //tested instruction
            test.Label = "test";
            test.ExpressionA = tA;
            test.ExpressionB = tB;
            w.Add(test);
            w.StartOffset = test.Address;

            ExtendedInstruction step = new ExtendedInstruction();
            //step.Modifier = Modifier.BA;
            step.Label = "step";
            w.Add(step);

            ExtendedInstruction skip = new ExtendedInstruction();
            //skip.Modifier = Modifier.X;
            skip.Label = "skip";
            w.Add(skip);

            ExtendedInstruction jump = new ExtendedInstruction();
            //jump.Modifier = Modifier.I;
            jump.Label = "jump";
            w.Add(jump);

            switch (test.ModeA)
            {
                case Mode.Direct:
                case Mode.Immediate:
                    test.ExpressionA = "dat1";
                    break;
                default:
                    break;
            }
            switch (test.ModeB)
            {
                case Mode.Direct:
                case Mode.Immediate:
                    test.ExpressionB = "dat2";
                    break;
                default:
                    break;
            }
            switch (test.Operation)
            {
                case Operation.JMZ:
                case Operation.JMP:
                case Operation.JMN:
                case Operation.DJN:
                case Operation.SLT:
                case Operation.SNE:
                    switch (test.ModeA)
                    {
                        case Mode.Direct:
                            test.ExpressionA = "skip";
                            break;
                        case Mode.Immediate:
                            //jump to same address
                            File.Delete(w.FileName);
                            return;
                        case Mode.IndirectA:
                        case Mode.PreDecIndirectA:
                        case Mode.PostIncIndirectA:
                            test.ExpressionA = "dat1";
                            dat1.ExpressionA = "skip";
                            break;
                        case Mode.IndirectB:
                        case Mode.PreDecIndirectB:
                        case Mode.PostIncIndirectB:
                            test.ExpressionA = "dat2";
                            dat2.ExpressionB = "skip";
                            break;
                        default:
                            throw new NotImplementedException();
                    }
                    /*switch (test.ModeB)
                    {
                        case Mode.Direct:
                        case Mode.Immediate:
                            test.ExpressionB = "skip";
                            break;
                        case Mode.IndirectA:
                        case Mode.PreDecIndirectA:
                        case Mode.PostIncIndirectA:
                            test.ExpressionB = "dat1";
                            dat1.ExpressionA = "skip-test";
                            break;
                        case Mode.IndirectB:
                        case Mode.PreDecIndirectB:
                        case Mode.PostIncIndirectB:
                            test.ExpressionB = "dat2";
                            dat2.ExpressionB = "skip-test";
                            break;
                        default:
                            throw new NotImplementedException();
                    }*/
                    break;
                default:
                    break;
            }

            DumpWarrior(w, ParserOptions.Full);

            Project project = new Project(rules);
            project.WarriorFiles.Add(w.FileName);
            parser.Parse(project, null);

            engine.BeginMatch(project);
            engine.NextStep();

            if (engine.NextInstructionAddress == skip.Address)
            {
                skip.Operation = Operation.JMP;
                skip.ExpressionA = "cck0";
                /*
                step.Label = "k1ll";
                jump.Label = "k3ll";
                 */
            }
            else if (engine.NextInstructionAddress == step.Address)
            {
                step.Operation = Operation.JMP;
                step.ExpressionA = "cck0";
                /*
                skip.Label = "k2ll";
                jump.Label = "k3ll";
                 */
            }
            else if (engine.NextInstructionAddress == jump.Address)
            {
                jump.Operation = Operation.JMP;
                jump.ExpressionA = "cck0";
                /*
                skip.Label = "k1ll";
                step.Label = "k2ll";
                 */
            }
            else if (engine.NextInstructionAddress == -1)
            {
                //died
                File.Delete(w.FileName);
                return;
            }
            else
            {
                while(true)
                {
                    engine.EndMatch(null);
                    engine.BeginMatch(project);
                    engine.NextStep();
                }
            }

            List<ExtendedInstruction> check=new List<ExtendedInstruction>();

            for (int address = 0; address < rules.CoreSize; address++)
            {
                IRunningInstruction runningInstruction = engine[address];
                if (!runningInstruction.Equals(empty) || address<=w.StartOffset)
                {
                    ExtendedInstruction cck = new ExtendedInstruction();
                    cck.Operation = Operation.CMP;
                    cck.Modifier = Modifier.I;
                    cck.ExpressionA = "cpy" + check.Count;
                    cck.ExpressionB = runningInstruction.Address + "+" + "dat1";
                    cck.Label = "cck" + check.Count;
                    w.Add(cck);

                    ExtendedInstruction killer=new ExtendedInstruction();
                    killer.Label = "klr" + check.Count;
                    killer.Modifier = Modifier.I;
                    w.Add(killer);

                    ExtendedInstruction copy = new ExtendedInstruction(runningInstruction);
                    copy.Label = "cpy" + check.Count;
                    check.Add(copy);
                }
            }

            ExtendedInstruction loop = new ExtendedInstruction();
            loop.Label = "loop";
            loop.Operation = Operation.JMP;
            w.Add(loop);

            engine.EndMatch(null);

            foreach (ExtendedInstruction ccks in check)
            {
                w.Add(ccks);
            }

            DumpWarrior(w, ParserOptions.Full);
            parser.Parse(project, null);
            DumpWarrior(project.Warriors[0], ParserOptions.Pure);
        }