本文整理匯總了C#中Mosa.Compiler.Framework.Context.Clone方法的典型用法代碼示例。如果您正苦於以下問題:C# Context.Clone方法的具體用法?C# Context.Clone怎麽用?C# Context.Clone使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Mosa.Compiler.Framework.Context
的用法示例。
在下文中一共展示了Context.Clone方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Split
/// <summary>
/// Splits the block.
/// </summary>
/// <param name="ctx">The context.</param>
/// <returns></returns>
private Context Split(Context ctx, BasicBlocks basicBlocks, InstructionSet instructionSet)
{
Context current = ctx.Clone();
Context next = ctx.Clone();
next.AppendInstruction(IRInstruction.BlockStart);
BasicBlock nextBlock = basicBlocks.CreateBlockWithAutoLabel(next.Index, current.BasicBlock.EndIndex);
Context nextContext = new Context(instructionSet, nextBlock);
foreach (BasicBlock block in current.BasicBlock.NextBlocks)
{
nextBlock.NextBlocks.Add(block);
block.PreviousBlocks.Remove(current.BasicBlock);
block.PreviousBlocks.Add(nextBlock);
}
current.BasicBlock.NextBlocks.Clear();
current.AppendInstruction(IRInstruction.BlockEnd);
current.BasicBlock.EndIndex = current.Index;
return nextContext;
}
示例2: Add
/// <summary>
/// Nexts the specified CTX.
/// </summary>
/// <param name="ctx">The CTX.</param>
public void Add(Context ctx)
{
for (int i = _length - 1; i > 0; i--)
_history[i] = _history[i - 1];
_history[0] = ctx.Clone();
if (_size < _length)
_size++;
}
示例3: ScanForOperatorNew
private IEnumerable<Context> ScanForOperatorNew()
{
foreach (BasicBlock block in this.basicBlocks)
{
Context context = new Context(instructionSet, block);
while (!context.EndOfInstruction)
{
if (context.Instruction is NewobjInstruction || context.Instruction is NewarrInstruction)
{
Debug.WriteLine(@"StaticAllocationResolutionStage: Found a newobj or newarr instruction.");
yield return context.Clone();
}
context.GotoNext();
}
}
}