dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Reflection/Emit OpCod


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Reflection/Emit OpCodes.cs,1.2,1.3
Date: Tue, 18 Feb 2003 00:49:15 -0500

Update of /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit
In directory subversions:/tmp/cvs-serv14937/runtime/System/Reflection/Emit

Modified Files:
        OpCodes.cs 
Log Message:


Add the "ldelem.any", "stelem.any" and "unbox.any" opcodes
to the Reflection.Emit list.


Index: OpCodes.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Emit/OpCodes.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** OpCodes.cs  7 Feb 2003 17:38:02 -0000       1.2
--- OpCodes.cs  18 Feb 2003 05:49:12 -0000      1.3
***************
*** 834,837 ****
--- 834,852 ----
                                        StackBehaviour.Popref_popi_popref, 
StackBehaviour.Push0);
  
+       public static readonly OpCode Ldelem_Any =
+                new OpCode("ldelem.any", 0xA3, FlowControl.Next,
+                                       OpCodeType.Objmodel, 
OperandType.InlineType,
+                                       StackBehaviour.Popref_popi, 
StackBehaviour.Push1);
+ 
+       public static readonly OpCode Stelem_Any =
+                new OpCode("stelem.any", 0xA4, FlowControl.Next,
+                                       OpCodeType.Objmodel, 
OperandType.InlineType,
+                                       StackBehaviour.Popref_popi_popref, 
StackBehaviour.Push0);
+ 
+       public static readonly OpCode Unbox_Any =
+                new OpCode("unbox.any", 0xA5, FlowControl.Next,
+                                       OpCodeType.Objmodel, 
OperandType.InlineType,
+                                       StackBehaviour.Popref, 
StackBehaviour.Push1);
+ 
        public static readonly OpCode Conv_Ovf_I1 =
                 new OpCode("conv.ovf.i1", 0xB3, FlowControl.Next,





reply via email to

[Prev in Thread] Current Thread [Next in Thread]