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


C# Compiler.LoadLength方法代码示例

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


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

示例1: EmitWriteArrayLoop

        private void EmitWriteArrayLoop(Compiler.CompilerContext ctx, Compiler.Local i, Compiler.Local arr)
        {
            // i = 0
            ctx.LoadValue(0);
            ctx.StoreValue(i);

            // range test is last (to minimise branches)
            Compiler.CodeLabel loopTest = ctx.DefineLabel(), processItem = ctx.DefineLabel();
            ctx.Branch(loopTest, false);
            ctx.MarkLabel(processItem);

            // {...}
            ctx.LoadArrayValue(arr, i);
            if (SupportNull)
            {
                Tail.EmitWrite(ctx, null);
            }
            else
            {
                ctx.WriteNullCheckedTail(itemType, Tail, null);
            }

            // i++
            ctx.LoadValue(i);
            ctx.LoadValue(1);
            ctx.Add();
            ctx.StoreValue(i);

            // i < arr.Length
            ctx.MarkLabel(loopTest);
            ctx.LoadValue(i);
            ctx.LoadLength(arr, false);
            ctx.BranchIfLess(processItem, false);
        }
开发者ID:CragonGame,项目名称:GameCloud.IM,代码行数:34,代码来源:ArrayDecorator.cs

示例2: EmitReadEndPacked

		private void EmitReadEndPacked(Compiler.CompilerContext ctx, Compiler.Local list, Compiler.Local oldArr,
										Compiler.Local newArr, Type listType)
		{
			// leave this "using" here, as it can share the "FieldNumber" local with EmitReadList
			using(Compiler.Local oldLen = AppendToCollection ? new ProtoBuf.Compiler.Local(ctx, typeof(int)) : null) {
				Type[] copyToArrayInt32Args = new Type[] { typeof(Array), typeof(int) };

				if (AppendToCollection)
				{
					ctx.LoadLength(oldArr, true);
					ctx.CopyValue();
					ctx.StoreValue(oldLen);

					ctx.LoadAddress(list, listType);
					ctx.LoadValue(listType.GetProperty("Count"));
					ctx.Add();
					ctx.CreateArray(itemType, null); // length is on the stack
					ctx.StoreValue(newArr);

					ctx.LoadValue(oldLen);
					Compiler.CodeLabel nothingToCopy = ctx.DefineLabel();
					ctx.BranchIfFalse(nothingToCopy, true);
					ctx.LoadValue(oldArr);
					ctx.LoadValue(newArr);
					ctx.LoadValue(0); // index in target

					ctx.EmitCall(ExpectedType.GetMethod("CopyTo", copyToArrayInt32Args));
					ctx.MarkLabel(nothingToCopy);

					ctx.LoadValue(list);
					ctx.LoadValue(newArr);
					ctx.LoadValue(oldLen);
                        
				}
				else
				{
					ctx.LoadAddress(list, listType);
					ctx.LoadValue(listType.GetProperty("Count"));
					ctx.CreateArray(itemType, null);
					ctx.StoreValue(newArr);

					ctx.LoadAddress(list, listType);
					ctx.LoadValue(newArr);
					ctx.LoadValue(0);
				}

				copyToArrayInt32Args[0] = ExpectedType; // // prefer: CopyTo(T[], int)
				MethodInfo copyTo = listType.GetMethod("CopyTo", copyToArrayInt32Args);
				if (copyTo == null)
				{ // fallback: CopyTo(Array, int)
					copyToArrayInt32Args[1] = typeof(Array);
					copyTo = listType.GetMethod("CopyTo", copyToArrayInt32Args);
				}
				ctx.EmitCall(copyTo);
			}

			ctx.LoadValue(newArr);
		}
开发者ID:JayCap,项目名称:Protobuf-net-Patch-and-T4-TypeModel-Generator,代码行数:58,代码来源:ArrayDecorator.cs


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