FMethod is the read/write fcode representation of sys::Method.
Inheritance: FSlot
コード例 #1
0
ファイル: FMixinBodyEmit.cs プロジェクト: nomit007/f4
        protected override void emit(FMethod m)
        {
            string name = m.m_name;
              if (name == "static$init") { emitStaticInit(m); cctorEmit = true; return; }

              new FMethodEmit(this, m).emitMixinBody();
        }
コード例 #2
0
ファイル: FPrinter.cs プロジェクト: syatanic/fantom
 public void method(FMethod m)
 {
     Write("  " + typeRef(m.m_ret) + " " + m.m_name + "(");
     FMethodVar[] pars = m.pars();
     for (int i = 0; i < pars.Length; ++i)
     {
         FMethodVar p = pars[i];
         if (i > 0)
         {
             Write(", ");
         }
         Write(typeRef(p.type) + " " + p.name);
     }
     WriteLine(") [" + StrUtil.flagsToString(m.m_flags).Trim() + "]");
     for (int i = 0; i < m.m_vars.Length; i++)
     {
         FMethodVar v    = m.m_vars[i];
         string     role = v.IsParam() ?  "Param" : "Local";
         int        reg  = i + ((m.m_flags & FConst.Static) != 0 ? 0 : 1);
         WriteLine("    [" + role + " " + reg + "] " + v.name + ": " + typeRef(v.type));
         if (v.def != null)
         {
             code(v.def);
         }
     }
     if (m.m_code != null)
     {
         WriteLine("    [Code]");
         code(m.m_code);
     }
     attrs(m.m_attrs);
     WriteLine();
 }
コード例 #3
0
ファイル: FCodeEmit.cs プロジェクト: nomit007/f4
        internal FMethodVar[] vars; // method variables must be set for loadVar/storeVar

        #endregion Fields

        #region Constructors

        //////////////////////////////////////////////////////////////////////////
        // Constructor
        //////////////////////////////////////////////////////////////////////////
        public FCodeEmit(FTypeEmit parent, FMethod fmethod, CILInstructions code)
            : this(parent, fmethod.m_code, code,
         initRegs(parent.pod,  fmethod.isStatic(), fmethod.m_vars),
         parent.pod.typeRef(fmethod.m_ret))
        {
            this.fmethod    = fmethod;
              this.vars       = fmethod.m_vars;
              this.isStatic   = (fmethod.m_flags & FConst.Static) != 0;
              this.paramCount = fmethod.m_paramCount;
              if (!isStatic) paramCount++;
        }
コード例 #4
0
ファイル: FErrEmit.cs プロジェクト: nomit007/f4
        //////////////////////////////////////////////////////////////////////////
        // Overrides
        //////////////////////////////////////////////////////////////////////////
        protected override void emitInstanceInit(FMethod m)
        {
            hasInstanceInit = true;

              // make peer
              if (isNative)
            throw new System.Exception("No native support for Err subclasses");

              // stub ctor2
              PERWAPI.MethodDef ctor2 = emitter.findMethod(selfName, ".ctor",
            new string[] { "Fan.Sys.Err/Val" }, "System.Void") as PERWAPI.MethodDef;
              ctor2.SetMethAttributes(
            PERWAPI.MethAttr.Public |
            PERWAPI.MethAttr.HideBySig |
            PERWAPI.MethAttr.SpecialRTSpecialName);
              ctor2.AddCallConv(PERWAPI.CallConv.Instance);

              // no arg constructor -> calls this(Err/Val)
              PERWAPI.CILInstructions code = ctor.CreateCodeBuffer();
              code.Inst(PERWAPI.Op.ldarg_0);
              PERWAPI.Method valctor = emitter.findMethod(className+"/Val", ".ctor", new string[0], "System.Void");
              code.MethInst(PERWAPI.MethodOp.newobj, valctor);
              code.MethInst(PERWAPI.MethodOp.call, ctor2);
              code.Inst(PERWAPI.Op.ret);

              // arg constructor with Err$Val (and init implementation)
              code = ctor2.CreateCodeBuffer();
              code.Inst(PERWAPI.Op.ldarg_0);
              code.Inst(PERWAPI.Op.ldarg_1);
              PERWAPI.Method baseCtor = emitter.findMethod(baseClassName, ".ctor",
            new string[] { "Fan.Sys.Err/Val" }, "System.Void");
              baseCtor.AddCallConv(PERWAPI.CallConv.Instance); // if stub, make sure instance callconv
              code.MethInst(PERWAPI.MethodOp.call, baseCtor);
              if (m == null)
              {
            //code.maxLocals = 2;
            //code.maxStack  = 2;
            code.Inst(PERWAPI.Op.ret);
              }
              else
              {
            // e.code.maxLocals++;  // alloc room for Val extra argument
            new FCodeEmit(this, m, code).emit();
              }
        }
コード例 #5
0
ファイル: FType.cs プロジェクト: nomit007/f4
        public void read(FStore.Input input)
        {
            if (input.fpod.m_fcodeVersion == null)
            throw new IOException("FStore.Input.version == null");

              m_fields = new FField[input.u2()];
              for (int i=0; i<m_fields.Length; i++)
            m_fields[i] = new FField().read(input);

              m_methods = new FMethod[input.u2()];
              for (int i=0; i<m_methods.Length; i++)
            m_methods[i] = new FMethod().read(input);

              m_attrs = FAttrs.read(input);

              m_hollow = false;
              input.Close();
        }
コード例 #6
0
ファイル: FMethodEmit.cs プロジェクト: nomit007/f4
        internal string selfName; // class name for self if self is true

        #endregion Fields

        #region Constructors

        //////////////////////////////////////////////////////////////////////////
        // Constructor
        //////////////////////////////////////////////////////////////////////////
        /// <summary>
        /// Constructor.
        /// </summary>
        public FMethodEmit(FTypeEmit emit, FMethod method)
        {
            this.emitter    = emit.emitter;
              this.emit       = emit;
              this.method     = method;
              this.code       = method.m_code;
              this.name       = FanUtil.toDotnetMethodName(method.m_name);
              this.paramLen   = method.m_paramCount;
              this.isStatic   = (method.m_flags & FConst.Static) != 0;
              this.isInternal = false; //(method.m_flags & FConst.Internal) != 0;
              this.isPrivate  = (method.m_flags & FConst.Private) != 0;
              this.isAbstract = (method.m_flags & FConst.Abstract) != 0;
              this.isVirtual  = (method.m_flags & FConst.Virtual) != 0;
              this.isOverride = (method.m_flags & FConst.Override) != 0;
              this.isCtor     = (method.m_flags & FConst.Ctor) != 0;
              this.isNative   = (method.m_flags & FConst.Native) != 0;
              this.isHide     = false; // only used for make/make_
              this.ret        = emit.pod.typeRef(method.m_inheritedRet);
              this.selfName   = emit.selfName;
        }
コード例 #7
0
        public void read(FStore.Input input)
        {
            if (input.fpod.m_fcodeVersion == null)
            {
                throw new IOException("FStore.Input.version == null");
            }

            m_fields = new FField[input.u2()];
            for (int i = 0; i < m_fields.Length; i++)
            {
                m_fields[i] = new FField().read(input);
            }

            m_methods = new FMethod[input.u2()];
            for (int i = 0; i < m_methods.Length; i++)
            {
                m_methods[i] = new FMethod().read(input);
            }

            m_attrs = FAttrs.read(input);

            m_hollow = false;
            input.Close();
        }
コード例 #8
0
ファイル: ClassType.cs プロジェクト: nomit007/f4
 /// <summary>
 /// Map fcode method to a sys::Method.
 /// </summary>
 private Method map(FPod fpod, FMethod m)
 {
     string name = String.Intern(m.m_name);
       Type returnType = m_pod.findType(m.m_ret);
       Type inheritedReturnType = m_pod.findType(m.m_inheritedRet);
       List pars = new List(Sys.ParamType, m.m_paramCount);
       for (int j=0; j<m.m_paramCount; j++)
       {
     FMethodVar p = m.m_vars[j];
     int pflags = (p.def == null) ? 0 : Param.HAS_DEFAULT;
     pars.add(new Param(String.Intern(p.name), m_pod.findType(p.type), pflags));
       }
       Facets facets = Facets.mapFacets(m_pod, m.m_attrs.m_facets);
       return new Method(this, name, m.m_flags, facets, m.m_attrs.m_lineNum, returnType, inheritedReturnType, pars);
 }
コード例 #9
0
ファイル: FTypeEmit.cs プロジェクト: nomit007/f4
        protected virtual void emitInstanceInit(FMethod m)
        {
            hasInstanceInit = true;
              PERWAPI.CILInstructions code = ctor.CreateCodeBuffer();

              // initalize code to call super
              code.Inst(PERWAPI.Op.ldarg_0);

              // if closure, push FuncType static field
              if (funcType != null)
              {
            code.FieldInst(PERWAPI.FieldOp.ldsfld, typeField);
            PERWAPI.Method baseCtor = emitter.findMethod(baseClassName, ".ctor",
              new string[] { "Fan.Sys.FuncType" }, "System.Void");
            baseCtor.AddCallConv(PERWAPI.CallConv.Instance); // if stub, make sure instance callconv
            code.MethInst(PERWAPI.MethodOp.call, baseCtor);
              }
              else
              {
            PERWAPI.Method baseCtor = emitter.findMethod(baseClassName, ".ctor",
              new string[0], "System.Void");
            baseCtor.AddCallConv(PERWAPI.CallConv.Instance); // if stub, make sure instance callconv
            code.MethInst(PERWAPI.MethodOp.call, baseCtor);
              }

              // make peer
              if (isNative)
              {
            //code.op(ALOAD_0);  // for putfield
            //code.op(DUP);      // for arg to make
            //code.op2(INVOKESTATIC, method(selfName + "Peer.make(L" + className + ";)L" + className + "Peer;"));
            //code.op2(PUTFIELD, peerField.ref());

            code.Inst(PERWAPI.Op.ldarg_0);
            code.Inst(PERWAPI.Op.dup);
            PERWAPI.Method peerMake = emitter.findMethod(className + "Peer", "make",
              new string[] { className }, className + "Peer");
            code.MethInst(PERWAPI.MethodOp.call, peerMake);
            code.FieldInst(PERWAPI.FieldOp.stfld, peerField);
              }

              if (m == null)
            code.Inst(PERWAPI.Op.ret);
              else
            new FCodeEmit(this, m, code).emit();
        }
コード例 #10
0
ファイル: FTypeEmit.cs プロジェクト: nomit007/f4
        /// <summary>
        /// Emit a method.
        /// </summary>
        protected virtual void emit(FMethod m)
        {
            string n = m.m_name;
              bool isNative = (m.m_flags & FConst.Native) != 0;
              bool isCtor   = (m.m_flags & FConst.Ctor)   != 0;

              // static$init -> .cctor
              // instance$init -> .ctor
              if (n == "static$init")   { emitStaticInit(m); return; }
              if (n == "instance$init") { emitInstanceInit(m); return; }

              // handle native/constructor/normal method
              if (isNative)
              {
            new FMethodEmit(this, m).emitNative();
              }
              else if (isCtor)
              {
            new FMethodEmit(this, m).emitCtor();
              }
              else
              {
            new FMethodEmit(this, m).emitStandard();
              }
        }
コード例 #11
0
ファイル: FTypeEmit.cs プロジェクト: nomit007/f4
        internal void emitStaticInit(FMethod m)
        {
            // make sure we add local defs
              if (m != null && m.m_localCount > 0)
              {
            PERWAPI.Local[] locals = new PERWAPI.Local[m.m_vars.Length];
            for (int i=0; i<locals.Length; i++)
            {
              string name = m.m_vars[i].name;
              string type = nname(m.m_vars[i].type);
              locals[i] = new PERWAPI.Local(name, emitter.findType(type));
            }
            cctor.AddLocals(locals, true);
              }

              hasStaticInit = true;
              PERWAPI.CILInstructions code = cctor.CreateCodeBuffer();

              // set $Type field with type (if we this is a closure,
              // then the FuncType will be the type exposed)
              if (!parent.isMixin())
              {
            Type t = parent;
            if (parent.@base() is FuncType) t = parent.@base();

            code.ldstr(t.signature());
            PERWAPI.Method findType = emitter.findMethod("Fan.Sys.Type", "find",
              new string[] { "System.String" }, "Fan.Sys.Type");
            code.MethInst(PERWAPI.MethodOp.call, findType);
            code.FieldInst(PERWAPI.FieldOp.stsfld, typeField);
              }

              if (m == null)
            code.Inst(PERWAPI.Op.ret);
              else
            new FCodeEmit(this, m, code).emit();
        }
コード例 #12
0
ファイル: FMixinInterfaceEmit.cs プロジェクト: nomit007/f4
 protected override void emit(FMethod m)
 {
     new FMethodEmit(this, m).emitMixinInterface();
 }
コード例 #13
0
ファイル: FPrinter.cs プロジェクト: nomit007/f4
 public void method(FMethod m)
 {
     Write("  " + typeRef(m.m_ret) + " " + m.m_name + "(");
       FMethodVar[] pars = m.pars();
       for (int i=0; i<pars.Length; ++i)
       {
     FMethodVar p = pars[i];
     if (i > 0) Write(", ");
     Write(typeRef(p.type) + " " + p.name);
       }
       WriteLine(") [" + StrUtil.flagsToString(m.m_flags).Trim() + "]");
       for (int i=0; i<m.m_vars.Length; i++)
       {
     FMethodVar v = m.m_vars[i];
     string role = v.IsParam() ?  "Param" : "Local";
     int reg = i + ((m.m_flags & FConst.Static) != 0 ? 0 : 1);
     WriteLine("    [" + role + " " + reg + "] " + v.name + ": " + typeRef(v.type));
     if (v.def != null) code(v.def);
       }
       if (m.m_code != null)
       {
     WriteLine("    [Code]");
     code(m.m_code);
       }
       attrs(m.m_attrs);
       WriteLine();
 }