当前位置: 首页>>代码示例>>C#>>正文


C# InstructionNode.ReplaceInstructionOnly方法代码示例

本文整理汇总了C#中InstructionNode.ReplaceInstructionOnly方法的典型用法代码示例。如果您正苦于以下问题:C# InstructionNode.ReplaceInstructionOnly方法的具体用法?C# InstructionNode.ReplaceInstructionOnly怎么用?C# InstructionNode.ReplaceInstructionOnly使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在InstructionNode的用法示例。


在下文中一共展示了InstructionNode.ReplaceInstructionOnly方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ProcessInstruction

        private void ProcessInstruction(InstructionNode node)
        {
            if (node.Instruction == IRInstruction.Load)
            {
                if (node.MosaType != null && TypeLayout.IsCompoundType(node.MosaType))
                {
                    if (node.Result.IsVirtualRegister && !repl.ContainsKey(node.Result))
                    {
                        repl[node.Result] = MethodCompiler.StackLayout.AddStackLocal(node.MosaType);
                    }
                    node.ReplaceInstructionOnly(IRInstruction.CompoundLoad);
                }
            }
            else if (node.Instruction == IRInstruction.Store)
            {
                if (node.MosaType != null && TypeLayout.IsCompoundType(node.MosaType))
                {
                    if (node.Operand3.IsVirtualRegister && !repl.ContainsKey(node.Operand3))
                    {
                        repl[node.Operand3] = MethodCompiler.StackLayout.AddStackLocal(node.MosaType);
                    }
                    node.ReplaceInstructionOnly(IRInstruction.CompoundStore);
                }
            }
            else if (node.Instruction == IRInstruction.Move)
            {
                if (node.Result.Type.Equals(node.Operand1.Type) && TypeLayout.IsCompoundType(node.Result.Type))
                {
                    var prevNode = node.Previous;
                    var nextNode = node.Next;
                    while (prevNode.IsEmpty)
                        prevNode = prevNode.Previous;
                    while (nextNode.IsEmpty)
                        nextNode = nextNode.Next;

                    // If this move is proceeded by a return then remove this instruction
                    // It is basically a double up caused by some instructions result in the same instruction output
                    if (nextNode.Instruction == IRInstruction.Return && nextNode.Operand1 == node.Result)
                    {
                        nextNode.Operand1 = node.Operand1;

                        node.Empty();
                        return;
                    }

                    // If this move is preceded by a compound move (which will turn into a compound move) remove this instruction
                    // It is basically a double up caused by some instructions result in the same IR output
                    if ((prevNode.Instruction == IRInstruction.CompoundMove
                            || prevNode.Instruction == IRInstruction.CompoundLoad
                            || prevNode.Instruction == IRInstruction.Call)
                        && prevNode.Result == node.Operand1)
                    {
                        if (repl.ContainsKey(prevNode.Result))
                            repl[node.Result] = repl[prevNode.Result];
                        prevNode.Result = node.Result;

                        node.Empty();
                        return;
                    }

                    if (node.Result.IsVirtualRegister && !repl.ContainsKey(node.Result))
                    {
                        repl[node.Result] = MethodCompiler.StackLayout.AddStackLocal(node.Result.Type);
                    }
                    if (node.Operand1.IsVirtualRegister && !repl.ContainsKey(node.Operand1))
                    {
                        repl[node.Operand1] = MethodCompiler.StackLayout.AddStackLocal(node.Operand1.Type);
                    }
                    node.ReplaceInstructionOnly(IRInstruction.CompoundMove);
                }
                else if (node.Result.Type.Equals(node.Operand1.Type) && node.Result.IsStackLocal && node.Operand1.IsStackLocal)
                {
                    node.ReplaceInstructionOnly(IRInstruction.CompoundMove);
                }
            }
            else if (node.Instruction == IRInstruction.Call)
            {
                if (node.Result != null && TypeLayout.IsCompoundType(node.Result.Type))
                {
                    if (node.Result.IsVirtualRegister && !repl.ContainsKey(node.Result))
                    {
                        repl[node.Result] = MethodCompiler.StackLayout.AddStackLocal(node.Result.Type);
                    }
                }
            }
        }
开发者ID:pacificIT,项目名称:MOSA-Project,代码行数:86,代码来源:ConvertCompoundStage.cs


注:本文中的InstructionNode.ReplaceInstructionOnly方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。