コード例 #1
0
ファイル: TrashedRegisterFinder.cs プロジェクト: JieNou/reko
        public bool VisitDefInstruction(DefInstruction def)
        {
            var id = def.Identifier;

            ctx.SetValue(id, id, BitRange.Empty);
            return(true);
        }
コード例 #2
0
 void InstructionVisitor.VisitDefInstruction(DefInstruction def)
 {
     Build("Def");
     writer.Write("(");
     def.Identifier.Accept(this);
     writer.WriteLine(");");
 }
コード例 #3
0
        public override Instruction TransformDefInstruction(DefInstruction def)
        {
            var stm = stmDef.Block.Statements.Insert(iStmDef + 1, 0, new Store(Dereference(idOut, def.Identifier.DataType), def.Identifier));

            ssa.Uses.Add(stm);
            return(def);
        }
コード例 #4
0
        public void AddDefToEntryBlock(Identifier id)
        {
            var def = new DefInstruction(id);
            var stm = Procedure.EntryBlock.Statements.Add(0, def);

            ProcessInstruction(def, stm);
        }
コード例 #5
0
 public void VisitDefInstruction(DefInstruction def)
 {
     writer.Indent();
     writer.WriteKeyword("def");
     writer.Write(" ");
     def.Identifier.Accept(this);
     writer.Terminate();
 }
コード例 #6
0
ファイル: InstructionMatcher.cs プロジェクト: erenes/reko
        public bool VisitDefInstruction(DefInstruction def)
        {
            var defPat = pattern as DefInstruction;

            if (defPat == null)
            {
                return(false);
            }
            throw new NotImplementedException();
        }
コード例 #7
0
		public override void VisitDefInstruction(DefInstruction def)
		{
		}
コード例 #8
0
		public override Instruction TransformDefInstruction(DefInstruction def)
		{
			stmDef.Block.Statements.Insert(iStmDef + 1, 0, new Store(Dereference(idOut, def.Expression.DataType), def.Expression));
			return def;
		}
コード例 #9
0
 public AbsynStatement VisitDefInstruction(DefInstruction def)
 {
     throw new NotImplementedException();
 }
コード例 #10
0
 public Instruction VisitDefInstruction(DefInstruction def)
 {
     return(def);
 }
コード例 #11
0
 public override Instruction TransformDefInstruction(DefInstruction def)
 {
     stmDef.Block.Statements.Insert(iStmDef + 1, 0, new Store(Dereference(idOut, def.Expression.DataType), def.Expression));
     return(def);
 }
コード例 #12
0
ファイル: TraitCollector.cs プロジェクト: erenes/reko
 public DataType VisitDefInstruction(DefInstruction def)
 {
     return(def.Identifier.Accept(this));
 }
コード例 #13
0
 void InstructionVisitor.VisitDefInstruction(DefInstruction def)
 {
     stms.Add(new AbsynLineComment(def.ToString()));
 }
コード例 #14
0
 void InstructionVisitor.VisitDefInstruction(DefInstruction def)
 {
     throw new NotImplementedException();
 }
コード例 #15
0
 void InstructionVisitor.VisitDefInstruction(DefInstruction def)
 {
     stms.Add(new AbsynLineComment(def.ToString()));
 }
コード例 #16
0
 public override void VisitDefInstruction(DefInstruction def)
 {
     base.VisitDefInstruction(def);
     definitions.Add(def.Identifier);
 }
コード例 #17
0
 public DataType VisitDefInstruction(DefInstruction def)
 {
     return(def.Expression.Accept(this));
 }
コード例 #18
0
 public void VisitDefInstruction(DefInstruction def)
 {
 }
コード例 #19
0
ファイル: CodeFormatter.cs プロジェクト: gitter-badger/reko
		public void VisitDefInstruction(DefInstruction def)
		{
			writer.Indent();
            writer.WriteKeyword("def");
            writer.Write(" ");
			def.Expression.Accept(this);
			writer.Terminate();
		}
コード例 #20
0
 public override void VisitDefInstruction(DefInstruction def)
 {
 }
コード例 #21
0
 public AbsynStatement VisitDefInstruction(DefInstruction def)
 {
     //$TODO: should there be a warning? DefInstructions should have been
     // removed before entering this code.
     return(new AbsynDeclaration(def.Identifier, null));
 }
コード例 #22
0
 public Instruction VisitDefInstruction(DefInstruction def)
 {
     throw new NotImplementedException();
 }
コード例 #23
0
 public void VisitDefInstruction(DefInstruction def)
 {
     d.VisitDefInstruction(def);
 }
コード例 #24
0
		public virtual void VisitDefInstruction(DefInstruction def)
		{
			def.Expression.Accept(this);
		}
コード例 #25
0
ファイル: TypeCollector.cs プロジェクト: relaxar/reko
 public void VisitDefInstruction(DefInstruction def)
 {
 }