internal static FunctionPointer LoadFnPtr(IBinaryAccessor accessor, Module module)
        {
            var callSite = CallSite.LoadCallSite(accessor, module);

            return(new FunctionPointer(callSite));
        }
        private void LoadInstructions(IBinaryAccessor accessor, Module module, int codeSize)
        {
            long startOffset = accessor.Position;

            var image = module.Image;

            _instructions = new List <Instruction>();

            while (accessor.Position < startOffset + codeSize)
            {
                OpCode opCode;
                byte   opByte = accessor.ReadByte();
                if (opByte == 0xFE)
                {
                    opByte = accessor.ReadByte();
                    opCode = OpCodes.OpCodeArray[256 + opByte];
                }
                else
                {
                    opCode = OpCodes.OpCodeArray[opByte];
                }

                if (opCode == null)
                {
                    throw new CodeModelException(string.Format(SR.AssemblyLoadError, module.Location));
                }

                object value;
                switch (opCode.OperandType)
                {
                case OperandType.InlineBrTarget:
                {
                    value = accessor.ReadInt32();
                }
                break;

                case OperandType.InlineField:
                {
                    int token = accessor.ReadInt32();
                    value = FieldReference.Load(module, token);
                }
                break;

                case OperandType.InlineI:
                {
                    value = accessor.ReadInt32();
                }
                break;

                case OperandType.InlineI8:
                {
                    value = accessor.ReadInt64();
                }
                break;

                case OperandType.InlineMethod:
                {
                    int token = accessor.ReadInt32();
                    value = MethodReference.Load(module, token);
                }
                break;

                case OperandType.InlineR:
                {
                    value = accessor.ReadDouble();
                }
                break;

                case OperandType.InlineSig:
                {
                    int token = accessor.ReadInt32();
                    if (MetadataToken.GetType(token) == MetadataTokenType.Signature)
                    {
                        int rid = MetadataToken.GetRID(token);
                        value = CallSite.LoadStandAloneSig(module, rid);
                    }
                    else
                    {
                        throw new CodeModelException(SR.MethodBodyBlobNotValid);
                    }
                }
                break;

                case OperandType.InlineString:
                {
                    // Token of a userdefined string, whose RID portion is actually an offset in the #US blob stream.
                    uint token = accessor.ReadUInt32();
                    int  rid   = (int)(token & 0x00ffffff);
                    value = image.GetUserString(rid);
                }
                break;

                case OperandType.InlineSwitch:
                {
                    int   count   = accessor.ReadInt32();
                    int[] targets = new int[count];
                    for (int i = 0; i < count; i++)
                    {
                        targets[i] = accessor.ReadInt32();
                    }

                    value = targets;
                }
                break;

                case OperandType.InlineTok:
                {
                    int token = accessor.ReadInt32();
                    int rid   = MetadataToken.GetRID(token);
                    switch (MetadataToken.GetType(token))
                    {
                    case MetadataTokenType.Method:
                        value = MethodReference.LoadMethodDef(module, rid);
                        break;

                    case MetadataTokenType.MethodSpec:
                        value = GenericMethodReference.LoadMethodSpec(module, rid);
                        break;

                    case MetadataTokenType.MemberRef:
                        value = MethodReference.LoadMemberRef(module, rid);
                        break;

                    case MetadataTokenType.Field:
                        value = FieldReference.LoadFieldDef(module, rid);
                        break;

                    case MetadataTokenType.TypeDef:
                        value = TypeReference.LoadTypeDef(module, rid);
                        break;

                    case MetadataTokenType.TypeRef:
                        value = TypeReference.LoadTypeRef(module, rid);
                        break;

                    case MetadataTokenType.TypeSpec:
                        value = TypeSignature.LoadTypeSpec(module, rid);
                        break;

                    default:
                        throw new CodeModelException(SR.MethodBodyBlobNotValid);
                    }
                }
                break;

                case OperandType.InlineType:
                {
                    int token = accessor.ReadInt32();
                    value = TypeSignature.Load(module, token);
                }
                break;

                case OperandType.InlineVar:
                {
                    value = accessor.ReadInt16();
                }
                break;

                case OperandType.ShortInlineBrTarget:
                {
                    value = accessor.ReadSByte();
                }
                break;

                case OperandType.ShortInlineI:
                {
                    value = accessor.ReadByte();
                }
                break;

                case OperandType.ShortInlineR:
                {
                    value = accessor.ReadSingle();
                }
                break;

                case OperandType.ShortInlineVar:
                {
                    value = accessor.ReadByte();
                }
                break;

                default:
                {
                    value = null;
                }
                break;
                }

                _instructions.Add(new Instruction(opCode, value));
            }
        }
Exemplo n.º 3
0
        internal static Signature LoadMemberRef(Module module, int rid)
        {
            var image = module.Image;

            var memberRef = image.MemberRefSignatures[rid - 1] as Signature;

            if (memberRef != null)
            {
                return(memberRef);
            }

            MemberRefRow row;

            image.GetMemberRef(rid, out row);

            string name = image.GetString(row.Name);

            // Owner
            TypeSignature owner;
            int           classToken = MetadataToken.DecompressMemberRefParent(row.Class);

            switch (MetadataToken.GetType(classToken))
            {
            case MetadataTokenType.ModuleRef:
            {
                // A ModuleRef token, if the member is defined, in another module of the same image,
                // as a global function or variable.
                var moduleRef = ModuleReference.LoadRef(module, MetadataToken.GetRID(classToken));
                var typeRef   = new TypeReference(CodeModelUtils.GlobalTypeName, null, moduleRef);
                module.AddSignature(ref typeRef);
                owner = typeRef;
            }
            break;

            case MetadataTokenType.Method:
            {
                // A MethodDef token, when used to supply a call-site signature for a vararg method that is
                // defined in this module. The Name shall match the Name in the corresponding MethodDef row.
                // The Signature shall match the Signature in the target method definition.
                int typeRID = image.GetTypeByMethod(MetadataToken.GetRID(classToken));
                owner = TypeReference.LoadTypeDef(module, typeRID);
            }
            break;

            default:
            {
                owner = TypeReference.Load(module, classToken);
            }
            break;
            }

            // Signature
            using (var accessor = image.OpenBlob(row.Signature))
            {
                byte sigType = accessor.ReadByte();
                if (sigType == Metadata.SignatureType.Field)
                {
                    var fieldType = TypeSignature.Load(accessor, module);
                    memberRef = new FieldReference(name, fieldType, owner);
                }
                else
                {
                    var callSite = CallSite.LoadCallSite(accessor, module, sigType);
                    memberRef = new MethodReference(name, owner, callSite);
                }
            }

            module.AddSignature(ref memberRef);
            image.MemberRefSignatures[rid - 1] = memberRef;

            return(memberRef);
        }