Example #1
0
        private void EvalInstruction()
        {
            if (instruction.Location != null)
            {
                currentLocation = instruction.Location;
            }

            switch (instruction.OperationCode)
            {
            case Opcode.Pop:
            {
                Pop();
                break;
            }

            case Opcode.Dup:
            {
                IodineObject val = Pop();
                Push(val);
                Push(val);
                break;
            }

            case Opcode.LoadConst:
            {
                Push(Top.Module.ConstantPool [instruction.Argument]);
                break;
            }

            case Opcode.LoadNull:
            {
                Push(IodineNull.Instance);
                break;
            }

            case Opcode.LoadSelf:
            {
                Push(Top.Self);
                break;
            }

            case Opcode.LoadTrue:
            {
                Push(IodineBool.True);
                break;
            }

            case Opcode.LoadException:
            {
                Push(lastException);
                break;
            }

            case Opcode.LoadFalse:
            {
                Push(IodineBool.False);
                break;
            }

            case Opcode.StoreLocal:
            {
                string name = ((IodineName)Top.Module.ConstantPool [instruction.Argument]).Value;
                Top.StoreLocal(name, Pop());
                break;
            }

            case Opcode.LoadLocal:
            {
                string name = ((IodineName)Top.Module.ConstantPool [instruction.Argument]).Value;
                Push(Top.LoadLocal(name));
                break;
            }

            case Opcode.StoreGlobal:
            {
                string name = ((IodineName)Top.Module.ConstantPool [instruction.Argument]).Value;
                Top.Module.SetAttribute(this, name, Pop());
                break;
            }

            case Opcode.LoadGlobal:
            {
                string name = ((IodineName)Top.Module.ConstantPool [instruction.Argument]).Value;
                if (name == "_")
                {
                    Push(Top.Module);
                }
                else if (Top.Module.Attributes.ContainsKey(name))
                {
                    Push(Top.Module.GetAttribute(this, name));
                }
                else
                {
                    RaiseException(new IodineAttributeNotFoundException(name));
                }
                break;
            }

            case Opcode.StoreAttribute:
            {
                IodineObject target    = Pop();
                IodineObject value     = Pop();
                string       attribute = ((IodineName)Top.Module.ConstantPool [instruction.Argument]).Value;
                if (target.Attributes.ContainsKey(attribute) &&
                    target.Attributes [attribute] is IIodineProperty)
                {
                    IIodineProperty property = (IIodineProperty)target.Attributes [attribute];
                    property.Set(this, value);
                    break;
                }
                target.SetAttribute(this, attribute, value);
                break;
            }

            case Opcode.LoadAttribute:
            {
                IodineObject target    = Pop();
                string       attribute = ((IodineName)Top.Module.ConstantPool [instruction.Argument]).Value;
                if (target.Attributes.ContainsKey(attribute) &&
                    target.Attributes [attribute] is IIodineProperty)
                {
                    IIodineProperty property = (IIodineProperty)target.Attributes [attribute];
                    Push(property.Get(this));
                    break;
                }
                Push(target.GetAttribute(this, attribute));
                break;
            }

            case Opcode.LoadAttributeOrNull:
            {
                IodineObject target    = Pop();
                string       attribute = ((IodineName)Top.Module.ConstantPool [instruction.Argument]).Value;
                if (target.Attributes.ContainsKey(attribute))
                {
                    Push(target.GetAttribute(this, attribute));
                }
                else
                {
                    Push(IodineNull.Instance);
                }
                break;
            }

            case Opcode.StoreIndex:
            {
                IodineObject index  = Pop();
                IodineObject target = Pop();
                IodineObject value  = Pop();
                target.SetIndex(this, index, value);
                break;
            }

            case Opcode.LoadIndex:
            {
                IodineObject index  = Pop();
                IodineObject target = Pop();
                Push(target.GetIndex(this, index));
                break;
            }

            case Opcode.CastLocal:
            {
                IodineTypeDefinition type = Pop() as IodineTypeDefinition;
                string       name         = ((IodineName)Top.Module.ConstantPool [instruction.Argument]).Value;
                IodineObject o            = Top.LoadLocal(name);
                if (type == null)
                {
                    RaiseException(new IodineTypeException("TypeDef"));
                    break;
                }
                if (o.InstanceOf(type))
                {
                    Push(o);
                }
                else
                {
                    RaiseException(new IodineTypeException(type.Name));
                }
                break;
            }

            case Opcode.BinOp:
            {
                IodineObject op2 = Pop();
                IodineObject op1 = Pop();
                Push(op1.PerformBinaryOperation(this,
                                                (BinaryOperation)instruction.Argument,
                                                op2
                                                ));
                break;
            }

            case Opcode.UnaryOp:
            {
                Push(Pop().PerformUnaryOperation(this,
                                                 (UnaryOperation)instruction.Argument));
                break;
            }

            case Opcode.Invoke:
            {
                IodineObject   target    = Pop();
                IodineObject[] arguments = new IodineObject[instruction.Argument];
                for (int i = 1; i <= instruction.Argument; i++)
                {
                    arguments [instruction.Argument - i] = Pop();
                }
                Push(target.Invoke(this, arguments));
                break;
            }

            case Opcode.InvokeVar:
            {
                IodineObject        target    = Pop();
                List <IodineObject> arguments = new List <IodineObject> ();
                IodineTuple         tuple     = Pop() as IodineTuple;
                if (tuple == null)
                {
                    RaiseException(new IodineTypeException("Tuple"));
                    break;
                }
                for (int i = 0; i < instruction.Argument; i++)
                {
                    arguments.Add(Pop());
                }
                arguments.AddRange(tuple.Objects);
                Push(target.Invoke(this, arguments.ToArray()));
                break;
            }

            case Opcode.InvokeSuper:
            {
                IodineTypeDefinition target    = Pop() as IodineTypeDefinition;
                IodineObject[]       arguments = new IodineObject[instruction.Argument];
                for (int i = 1; i <= instruction.Argument; i++)
                {
                    arguments [instruction.Argument - i] = Pop();
                }

                target.Inherit(this, Top.Self, arguments);
                break;
            }

            case Opcode.Return:
            {
                Top.InstructionPointer = int.MaxValue;
                break;
            }

            case Opcode.Yield:
            {
                Top.Yielded = true;
                break;
            }

            case Opcode.JumpIfTrue:
            {
                if (Pop().IsTrue())
                {
                    Top.InstructionPointer = instruction.Argument;
                }
                break;
            }

            case Opcode.JumpIfFalse:
            {
                if (!Pop().IsTrue())
                {
                    Top.InstructionPointer = instruction.Argument;
                }
                break;
            }

            case Opcode.Jump:
            {
                Top.InstructionPointer = instruction.Argument;
                break;
            }

            case Opcode.BuildClass:
            {
                IodineName   name        = Pop() as IodineName;
                IodineString doc         = Pop() as IodineString;
                IodineMethod constructor = Pop() as IodineMethod;
                //CodeObject initializer = Pop as CodeObject;
                IodineTypeDefinition baseClass  = Pop() as IodineTypeDefinition;
                IodineTuple          interfaces = Pop() as IodineTuple;
                IodineClass          clazz      = new IodineClass(name.ToString(), new CodeObject(), constructor);

                if (baseClass != null)
                {
                    clazz.BaseClass = baseClass;
                    baseClass.BindAttributes(clazz);
                }

                for (int i = 0; i < instruction.Argument; i++)
                {
                    IodineObject val = Pop();
                    IodineObject key = Pop();

                    clazz.Attributes [val.ToString()] = key;
                }

                foreach (IodineObject obj in interfaces.Objects)
                {
                    IodineContract contract = obj as IodineContract;
                    if (!contract.InstanceOf(clazz))
                    {
                        //RaiseException (new IodineTypeException (contract.Name));
                        break;
                    }
                }

                clazz.SetAttribute("__doc__", doc);

                Push(clazz);
                break;
            }

            case Opcode.BuildMixin:
            {
                IodineName name = Pop() as IodineName;

                IodineMixin mixin = new IodineMixin(name.ToString());

                for (int i = 0; i < instruction.Argument; i++)
                {
                    IodineObject val = Pop();
                    IodineObject key = Pop();

                    mixin.Attributes [val.ToString()] = key;
                }

                Push(mixin);
                break;
            }

            case Opcode.BuildEnum:
            {
                IodineName name = Pop() as IodineName;

                IodineEnum ienum = new IodineEnum(name.ToString());
                for (int i = 0; i < instruction.Argument; i++)
                {
                    IodineInteger val = Pop() as IodineInteger;
                    IodineName    key = Pop() as IodineName;
                    ienum.AddItem(key.ToString(), (int)val.Value);
                }

                Push(ienum);
                break;
            }

            case Opcode.BuildContract:
            {
                IodineName name = Pop() as IodineName;

                IodineContract contract = new IodineContract(name.ToString());
                for (int i = 0; i < instruction.Argument; i++)
                {
                    IodineMethod val = Pop() as IodineMethod;
                    contract.AddMethod(val);
                }

                Push(contract);
                break;
            }

            case Opcode.BuildTrait:
            {
                IodineName name = Pop() as IodineName;

                IodineTrait trait = new IodineTrait(name.ToString());
                for (int i = 0; i < instruction.Argument; i++)
                {
                    IodineMethod val = Pop() as IodineMethod;
                    trait.AddMethod(val);
                }

                Push(trait);
                break;
            }

            case Opcode.BuildHash:
            {
                IodineDictionary hash = new IodineDictionary();
                for (int i = 0; i < instruction.Argument; i++)
                {
                    IodineObject val = Pop();
                    IodineObject key = Pop();
                    hash.Set(key, val);
                }
                Push(hash);
                break;
            }

            case Opcode.BuildList:
            {
                IodineObject[] items = new IodineObject[instruction.Argument];
                for (int i = 1; i <= instruction.Argument; i++)
                {
                    items [instruction.Argument - i] = Pop();
                }
                Push(new IodineList(items));
                break;
            }

            case Opcode.BuildTuple:
            {
                IodineObject[] items = new IodineObject[instruction.Argument];
                for (int i = 1; i <= instruction.Argument; i++)
                {
                    items [instruction.Argument - i] = Pop();
                }
                Push(new IodineTuple(items));
                break;
            }

            case Opcode.BuildClosure:
            {
                IodineObject obj    = Pop();
                IodineMethod method = obj as IodineMethod;
                Push(new IodineClosure(Top, method));
                break;
            }

            case Opcode.BuildGenExpr:
            {
                CodeObject method = Pop() as CodeObject;
                Push(new IodineGeneratorExpr(Top, method));
                break;
            }

            case Opcode.Slice:
            {
                IodineObject target = Pop();

                IodineInteger[] arguments = new IodineInteger[3];

                for (int i = 0; i < 3; i++)
                {
                    IodineObject obj = Pop();
                    arguments [i] = obj as IodineInteger;

                    if (obj != IodineNull.Instance && arguments [i] == null)
                    {
                        RaiseException(new IodineTypeException("Int"));
                        break;
                    }
                }

                IodineSlice slice = new IodineSlice(arguments [0], arguments [1], arguments [2]);

                Push(target.Slice(this, slice));

                break;
            }

            case Opcode.MatchPattern:
            {
                IodineObject collection = Pop().GetIterator(this);

                IodineObject[] items = new IodineObject[instruction.Argument];
                for (int i = 1; i <= instruction.Argument; i++)
                {
                    items [instruction.Argument - i] = Pop();
                }


                int index = 0;

                collection.IterReset(this);

                while (collection.IterMoveNext(this) && index < items.Length)
                {
                    IodineObject o = collection.IterGetCurrent(this);

                    if (items [index] is IodineTypeDefinition)
                    {
                        if (!o.InstanceOf(items [index] as IodineTypeDefinition))
                        {
                            Push(IodineBool.False);
                            break;
                        }
                    }
                    else
                    {
                        if (!o.Equals(items [index]))
                        {
                            Push(IodineBool.False);
                            break;
                        }
                    }

                    index++;
                }

                Push(IodineBool.Create(index == items.Length));

                break;
            }

            case Opcode.Unwrap:
            {
                IodineObject container = Pop();

                IodineObject value = container.Unwrap(this);

                if (instruction.Argument > 0)
                {
                    IodineInteger len = value.Len(this) as IodineInteger;

                    if (len == null || len.Value != instruction.Argument)
                    {
                        Push(IodineBool.False);
                        break;
                    }
                }

                Push(value);
                Push(IodineBool.True);

                break;
            }

            case Opcode.Unpack:
            {
                IodineTuple tuple = Pop() as IodineTuple;

                if (tuple == null)
                {
                    RaiseException(new IodineTypeException("Tuple"));
                    break;
                }

                if (tuple.Objects.Length != instruction.Argument)
                {
                    RaiseException(new IodineUnpackException(instruction.Argument));
                    break;
                }
                for (int i = tuple.Objects.Length - 1; i >= 0; i--)
                {
                    Push(tuple.Objects [i]);
                }
                break;
            }

            case Opcode.GetIter:
            {
                Push(Pop().GetIterator(this));
                break;
            }

            case Opcode.IterGetNext:
            {
                Push(Pop().IterGetCurrent(this));
                break;
            }

            case Opcode.IterMoveNext:
            {
                Push(IodineBool.Create(Pop().IterMoveNext(this)));
                break;
            }

            case Opcode.IterReset:
            {
                Pop().IterReset(this);
                break;
            }

            case Opcode.PushExceptionHandler:
            {
                Top.ExceptionHandlers.Push(new IodineExceptionHandler(frameCount, instruction.Argument));
                break;
            }

            case Opcode.PopExceptionHandler:
            {
                Top.ExceptionHandlers.Pop();
                break;
            }

            case Opcode.InstanceOf:
            {
                IodineObject         o    = Pop();
                IodineTypeDefinition type = Pop() as IodineTypeDefinition;
                if (type == null)
                {
                    RaiseException(new IodineTypeException("TypeDef"));
                    break;
                }
                Push(IodineBool.Create(o.InstanceOf(type)));
                break;
            }

            case Opcode.DynamicCast:
            {
                IodineObject         o    = Pop();
                IodineTypeDefinition type = Pop() as IodineTypeDefinition;
                if (type == null)
                {
                    RaiseException(new IodineTypeException("TypeDef"));
                    break;
                }
                if (o.InstanceOf(type))
                {
                    Push(o);
                }
                else
                {
                    Push(IodineNull.Instance);
                }
                break;
            }

            case Opcode.NullCoalesce:
            {
                IodineObject o1 = Pop();
                IodineObject o2 = Pop();
                if (o1 is IodineNull)
                {
                    Push(o2);
                }
                else
                {
                    Push(o1);
                }
                break;
            }

            case Opcode.BeginExcept:
            {
                bool rethrow = true;
                for (int i = 1; i <= instruction.Argument; i++)
                {
                    IodineTypeDefinition type = Pop() as IodineTypeDefinition;
                    if (type == null)
                    {
                        RaiseException(new IodineTypeException("TypeDef"));
                        break;
                    }

                    if (lastException.InstanceOf(type))
                    {
                        rethrow = false;
                        break;
                    }
                }
                if (rethrow)
                {
                    RaiseException(lastException);
                }
                break;
            }

            case Opcode.Raise:
            {
                IodineObject e = Pop();
                if (e.InstanceOf(IodineException.TypeDefinition))
                {
                    RaiseException(e);
                }
                else
                {
                    RaiseException(new IodineTypeException("Exception"));
                }
                break;
            }

            case Opcode.SwitchLookup:
            {
                Dictionary <int, IodineObject> lookup = new Dictionary <int, IodineObject> ();
                int needle = Pop().GetHashCode();
                for (int i = 0; i < instruction.Argument; i++)
                {
                    IodineObject value = Pop();
                    IodineObject key   = Pop();
                    lookup [key.GetHashCode()] = value;
                }
                if (lookup.ContainsKey(needle))
                {
                    lookup [needle].Invoke(this, new IodineObject[] { });
                    Push(IodineBool.True);
                }
                else
                {
                    Push(IodineBool.False);
                }
                break;
            }

            case Opcode.BeginWith:
            {
                IodineObject obj = Pop();
                obj.Enter(this);
                Top.DisposableObjects.Push(obj);
                break;
            }

            case Opcode.EndWith:
            {
                Top.DisposableObjects.Pop().Exit(this);
                break;
            }

            case Opcode.IncludeMixin:
            {
                IodineObject obj  = Pop();
                IodineObject type = Pop();

                foreach (KeyValuePair <string, IodineObject> attr in obj.Attributes)
                {
                    type.SetAttribute(attr.Key, attr.Value);
                }
                break;
            }

            case Opcode.ApplyMixin:
            {
                IodineObject type  = Pop();
                IodineMixin  mixin = Top.Module.ConstantPool [instruction.Argument] as IodineMixin;

                foreach (KeyValuePair <string, IodineObject> attr in mixin.Attributes)
                {
                    type.SetAttribute(attr.Key, attr.Value);
                }
                break;
            }

            case Opcode.BuildFunction:
            {
                MethodFlags flags = (MethodFlags)instruction.Argument;

                IodineString name       = Pop() as IodineString;
                IodineString doc        = Pop() as IodineString;
                CodeObject   bytecode   = Pop() as CodeObject;
                IodineTuple  parameters = Pop() as IodineTuple;

                IodineObject[] defaultValues      = new IodineObject[] { };
                int            defaultValuesStart = 0;

                if (flags.HasFlag(MethodFlags.HasDefaultParameters))
                {
                    IodineTuple   defaultValuesTuple = Pop() as IodineTuple;
                    IodineInteger startInt           = Pop() as IodineInteger;
                    defaultValues      = defaultValuesTuple.Objects;
                    defaultValuesStart = (int)startInt.Value;
                }

                IodineMethod method = new IodineMethod(
                    Top.Module,
                    name,
                    bytecode,
                    parameters,
                    flags,
                    defaultValues,
                    defaultValuesStart
                    );

                method.SetAttribute("__doc__", doc);

                Push(method);

                break;
            }
            }
        }
Example #2
0
        public IodineClass CompileClass(ClassDeclaration classDecl)
        {
            IodineMethod constructor = compileMethod (classDecl.Constructor);
            if (classDecl.Constructor.Children [0].Children.Count == 0 ||
                !(classDecl.Constructor.Children [0].Children [0] is SuperCallExpression)) {
                if (classDecl.Base.Count > 0) {
                    foreach (string subclass in classDecl.Base) {
                        string[] contract = subclass.Split ('.');
                        constructor.EmitInstruction (classDecl.Location, Opcode.LoadGlobal,
                            constructor.Module.DefineConstant (new IodineName (contract [0])));
                        for (int j = 1; j < contract.Length; j++) {
                            constructor.EmitInstruction (classDecl.Location, Opcode.LoadAttribute,
                                constructor.Module.DefineConstant (new IodineName (contract [0])));
                        }
                        constructor.EmitInstruction (classDecl.Location, Opcode.InvokeSuper, 0);
                    }
                }
            }
            IodineMethod initializer = new IodineMethod (module, "__init__", false, 0, 0);
            IodineClass clazz = new IodineClass (classDecl.Name, initializer, constructor);
            FunctionCompiler compiler = new FunctionCompiler (errorLog, symbolTable,
                clazz.Initializer);

            for (int i = 1; i < classDecl.Children.Count; i++) {
                if (classDecl.Children [i] is FunctionDeclaration) {
                    FunctionDeclaration func = classDecl.Children [i] as FunctionDeclaration;
                    if (func.InstanceMethod)
                        clazz.AddInstanceMethod (compileMethod (func));
                    else {
                        clazz.SetAttribute (func.Name, compileMethod (func));
                    }
                } else if (classDecl.Children [i] is ClassDeclaration) {
                    ClassDeclaration subclass = classDecl.Children [i] as ClassDeclaration;
                    clazz.SetAttribute (subclass.Name, CompileClass (subclass));
                } else if (classDecl.Children [i] is EnumDeclaration) {
                    EnumDeclaration enumeration = classDecl.Children [i] as EnumDeclaration;
                    clazz.SetAttribute (enumeration.Name, CompileEnum (enumeration));
                } else if (classDecl.Children [i] is BinaryExpression) {
                    BinaryExpression expr = classDecl.Children [i] as BinaryExpression;
                    NameExpression name = expr.Left as NameExpression;
                    expr.Right.Visit (compiler);
                    initializer.EmitInstruction (Opcode.LoadGlobal, module.DefineConstant (new
                        IodineName (classDecl.Name)));
                    initializer.EmitInstruction (Opcode.StoreAttribute, module.DefineConstant (new
                        IodineName (name.Value)));
                } else {
                    classDecl.Children [i].Visit (compiler);
                }
            }
            clazz.Initializer.FinalizeLabels ();
            return clazz;
        }
Example #3
0
        /// <summary>
        /// Evaluates an Iodine code object
        /// </summary>
        /// <returns>The code.</returns>
        /// <param name="bytecode">Bytecode.</param>
        public IodineObject EvalCode(CodeObject bytecode)
        {
            int insCount = bytecode.Instructions.Length;

            int pc = Top.InstructionPointer;

            StackFrame   top           = Top;
            IodineObject selfReference = null;

            top.SetLocationAccessor(() => {
                return(instruction.Location);
            });

            top.SetInstructionPointerAccessor(
                () => { return(pc); },
                (newIp) => { pc = newIp; }
                );

            while (pc < insCount && !top.AbortExecution && !top.Yielded)
            {
                instruction = bytecode.Instructions [pc++];


                switch (instruction.OperationCode)
                {
                case Opcode.Pop: {
                    top.Pop();
                    break;
                }

                case Opcode.Dup: {
                    var val = top.Pop();
                    top.Push(val);
                    top.Push(val);
                    break;
                }

                case Opcode.LoadConst: {
                    top.Push(instruction.ArgumentObject);
                    break;
                }

                case Opcode.LoadNull: {
                    top.Push(IodineNull.Instance);
                    break;
                }

                case Opcode.LoadSelf: {
                    top.Push(Top.Self);

                    if (Top.Self == null)
                    {
                        RaiseException(new IodineFunctionInvocationException());
                    }

                    break;
                }

                case Opcode.LoadTrue: {
                    top.Push(IodineBool.True);
                    break;
                }

                case Opcode.LoadException: {
                    top.Push(lastException);
                    break;
                }

                case Opcode.LoadFalse: {
                    top.Push(IodineBool.False);
                    break;
                }

                case Opcode.StoreLocal: {
                    Top.StoreLocal(instruction.ArgumentString, top.Pop());
                    break;
                }

                case Opcode.LoadLocal: {
                    top.Push(Top.LoadLocal(instruction.ArgumentString));
                    break;
                }

                case Opcode.StoreGlobal: {
                    Top.Module.SetAttribute(this, instruction.ArgumentString, top.Pop());
                    break;
                }

                case Opcode.LoadGlobal: {
                    if (instruction.ArgumentString == "_")
                    {
                        top.Push(Top.Module);
                    }
                    else if (Top.Module.Attributes.ContainsKey(instruction.ArgumentString))
                    {
                        top.Push(Top.Module.GetAttribute(this, instruction.ArgumentString));
                    }
                    else
                    {
                        RaiseException(new IodineAttributeNotFoundException(instruction.ArgumentString));
                    }
                    break;
                }

                case Opcode.StoreAttribute: {
                    var target = top.Pop();
                    var value  = top.Pop();

                    string attribute = instruction.ArgumentString;

                    if (target.Attributes.ContainsKey(attribute) &&
                        target.Attributes [attribute] is IIodineProperty)
                    {
                        var property = (IIodineProperty)target.Attributes [attribute];
                        property.Set(this, value);
                        break;
                    }
                    target.SetAttribute(this, attribute, value);
                    break;
                }

                case Opcode.LoadAttribute: {
                    var    target    = top.Pop();
                    string attribute = instruction.ArgumentString;
                    if (target.Attributes.ContainsKey(attribute) &&
                        target.Attributes [attribute] is IIodineProperty)
                    {
                        var property = (IIodineProperty)target.Attributes [attribute];
                        top.Push(property.Get(this));
                        selfReference = target;
                        break;
                    }
                    top.Push(target.GetAttribute(this, attribute));
                    selfReference = target;
                    break;
                }

                case Opcode.LoadAttributeOrNull: {
                    var    target    = top.Pop();
                    string attribute = instruction.ArgumentString;

                    if (target.Attributes.ContainsKey(attribute))
                    {
                        top.Push(target.GetAttribute(this, attribute));
                    }
                    else
                    {
                        top.Push(IodineNull.Instance);
                    }
                    selfReference = top.Stack.LastObject;
                    break;
                }

                case Opcode.StoreIndex: {
                    var index  = top.Pop();
                    var target = top.Pop();
                    var value  = top.Pop();
                    target.SetIndex(this, index, value);
                    break;
                }

                case Opcode.LoadIndex: {
                    var index  = top.Pop();
                    var target = top.Pop();
                    top.Push(target.GetIndex(this, index));
                    break;
                }

                case Opcode.CastLocal: {
                    var type = top.Pop() as IodineTypeDefinition;

                    var o = Top.LoadLocal(instruction.ArgumentString);

                    if (type == null)
                    {
                        RaiseException(new IodineTypeException("TypeDef"));
                        break;
                    }
                    if (o.InstanceOf(type))
                    {
                        top.Push(o);
                    }
                    else
                    {
                        RaiseException(new IodineTypeException(type.Name));
                    }
                    break;
                }

                case Opcode.Equals: {
                    top.Push(top.Pop().Equals(this, top.Pop()));
                    break;
                }

                case Opcode.NotEquals: {
                    top.Push(top.Pop().NotEquals(this, top.Pop()));
                    break;
                }

                case Opcode.BoolAnd: {
                    var left  = top.Pop();
                    var right = top.Pop();

                    top.Push(left.LogicalAnd(this, right));

                    break;
                }

                case Opcode.BoolOr: {
                    var left  = top.Pop();
                    var right = top.Pop();

                    top.Push(left.LogicalOr(this, right));

                    break;
                }

                case Opcode.Add: {
                    top.Push(top.Pop().Add(this, top.Pop()));
                    break;
                }

                case Opcode.Sub: {
                    top.Push(top.Pop().Sub(this, top.Pop()));
                    break;
                }

                case Opcode.Mul: {
                    top.Push(top.Pop().Mul(this, top.Pop()));
                    break;
                }

                case Opcode.Div: {
                    top.Push(top.Pop().Div(this, top.Pop()));
                    break;
                }

                case Opcode.Mod: {
                    top.Push(top.Pop().Mod(this, top.Pop()));
                    break;
                }

                case Opcode.Xor: {
                    top.Push(top.Pop().Xor(this, top.Pop()));
                    break;
                }

                case Opcode.And: {
                    top.Push(top.Pop().And(this, top.Pop()));
                    break;
                }

                case Opcode.Or: {
                    top.Push(top.Pop().Or(this, top.Pop()));
                    break;
                }

                case Opcode.LeftShift: {
                    top.Push(top.Pop().LeftShift(this, top.Pop()));
                    break;
                }

                case Opcode.RightShift: {
                    top.Push(top.Pop().RightShift(this, top.Pop()));
                    break;
                }

                case Opcode.GreaterThan: {
                    top.Push(top.Pop().GreaterThan(this, top.Pop()));
                    break;
                }

                case Opcode.GreaterThanOrEqu: {
                    top.Push(top.Pop().GreaterThanOrEqual(this, top.Pop()));
                    break;
                }

                case Opcode.LessThan: {
                    top.Push(top.Pop().LessThan(this, top.Pop()));
                    break;
                }

                case Opcode.LessThanOrEqu: {
                    top.Push(top.Pop().LessThanOrEqual(this, top.Pop()));
                    break;
                }

                case Opcode.HalfRange: {
                    top.Push(top.Pop().HalfRange(this, top.Pop()));
                    break;
                }

                case Opcode.ClosedRange: {
                    top.Push(top.Pop().ClosedRange(this, top.Pop()));
                    break;
                }

                case Opcode.UnaryOp: {
                    top.Push(top.Pop().PerformUnaryOperation(this,
                                                             (UnaryOperation)instruction.Argument));
                    break;
                }

                case Opcode.Invoke: {
                    var target    = top.Pop();
                    var arguments = new IodineObject [instruction.Argument];
                    for (int i = 1; i <= instruction.Argument; i++)
                    {
                        arguments [instruction.Argument - i] = top.Pop();
                    }
                    top.Push(target.Invoke(this, arguments));
                    break;
                }

                case Opcode.InvokeVar: {
                    var target    = top.Pop();
                    var arguments = new List <IodineObject> ();
                    var tuple     = top.Pop() as IodineTuple;
                    if (tuple == null)
                    {
                        RaiseException(new IodineTypeException("Tuple"));
                        break;
                    }
                    for (int i = 0; i < instruction.Argument; i++)
                    {
                        arguments.Add(top.Pop());
                    }
                    arguments.AddRange(tuple.Objects);
                    top.Push(target.Invoke(this, arguments.ToArray()));
                    break;
                }

                case Opcode.InvokeSuper: {
                    var target    = top.Pop() as IodineTypeDefinition;
                    var arguments = new IodineObject [instruction.Argument];

                    for (int i = 1; i <= instruction.Argument; i++)
                    {
                        arguments [instruction.Argument - i] = top.Pop();
                    }

                    target.Inherit(this, Top.Self, arguments);
                    break;
                }

                case Opcode.Return: {
                    pc = int.MaxValue;
                    break;
                }

                case Opcode.Yield: {
                    Top.Yielded = true;
                    break;
                }

                case Opcode.JumpIfTrue: {
                    if (top.Pop().IsTrue())
                    {
                        pc = instruction.Argument;
                    }
                    break;
                }

                case Opcode.JumpIfFalse: {
                    if (!top.Pop().IsTrue())
                    {
                        pc = instruction.Argument;
                    }
                    break;
                }

                case Opcode.Jump: {
                    pc = instruction.Argument;
                    break;
                }

                case Opcode.BuildClass: {
                    var name        = top.Pop() as IodineName;
                    var doc         = top.Pop() as IodineString;
                    var constructor = top.Pop() as IodineMethod;
                    //CodeObject initializer = Pop as CodeObject;
                    var baseClass  = top.Pop() as IodineTypeDefinition;
                    var interfaces = top.Pop() as IodineTuple;
                    var clazz      = new IodineClass(name.ToString(), new CodeObject(), constructor);

                    if (baseClass != null)
                    {
                        clazz.BaseClass = baseClass;
                        baseClass.BindAttributes(clazz);
                    }

                    for (int i = 0; i < instruction.Argument; i++)
                    {
                        var val = top.Pop();
                        var key = top.Pop();

                        clazz.Attributes [val.ToString()] = key;
                    }

                    foreach (IodineObject obj in interfaces.Objects)
                    {
                        var contract = obj as IodineContract;
                        if (!contract.InstanceOf(clazz))
                        {
                            //RaiseException (new IodineTypeException (contract.Name));
                            break;
                        }
                    }

                    clazz.SetAttribute("__doc__", doc);

                    top.Push(clazz);
                    break;
                }

                case Opcode.BuildMixin: {
                    var name = top.Pop() as IodineName;

                    var mixin = new IodineMixin(name.ToString());

                    for (int i = 0; i < instruction.Argument; i++)
                    {
                        var val = top.Pop();
                        var key = top.Pop();

                        mixin.Attributes [val.ToString()] = key;
                    }

                    top.Push(mixin);
                    break;
                }

                case Opcode.BuildEnum: {
                    var name  = top.Pop() as IodineName;
                    var ienum = new IodineEnum(name.ToString());

                    for (int i = 0; i < instruction.Argument; i++)
                    {
                        var val = top.Pop() as IodineInteger;
                        var key = top.Pop() as IodineName;
                        ienum.AddItem(key.ToString(), (int)val.Value);
                    }

                    top.Push(ienum);
                    break;
                }

                case Opcode.BuildContract: {
                    var name = top.Pop() as IodineName;

                    var contract = new IodineContract(name.ToString());
                    for (int i = 0; i < instruction.Argument; i++)
                    {
                        var val = top.Pop() as IodineMethod;
                        contract.AddMethod(val);
                    }

                    top.Push(contract);
                    break;
                }

                case Opcode.BuildTrait: {
                    var name  = top.Pop() as IodineName;
                    var trait = new IodineTrait(name.ToString());

                    for (int i = 0; i < instruction.Argument; i++)
                    {
                        var val = top.Pop() as IodineMethod;
                        trait.AddMethod(val);
                    }

                    top.Push(trait);
                    break;
                }

                case Opcode.BuildHash: {
                    var hash = new IodineDictionary();

                    for (int i = 0; i < instruction.Argument; i++)
                    {
                        var val = top.Pop();
                        var key = top.Pop();
                        hash.Set(key, val);
                    }
                    top.Push(hash);
                    break;
                }

                case Opcode.BuildList: {
                    var items = new IodineObject [instruction.Argument];

                    for (int i = 1; i <= instruction.Argument; i++)
                    {
                        items [instruction.Argument - i] = top.Pop();
                    }

                    top.Push(new IodineList(items));
                    break;
                }

                case Opcode.BuildTuple: {
                    var items = new IodineObject [instruction.Argument];
                    for (int i = 1; i <= instruction.Argument; i++)
                    {
                        items [instruction.Argument - i] = top.Pop();
                    }
                    top.Push(new IodineTuple(items));
                    break;
                }

                case Opcode.BuildClosure: {
                    var obj    = top.Pop();
                    var method = obj as IodineMethod;
                    top.Push(new IodineClosure(Top, method));
                    break;
                }

                case Opcode.BuildGenExpr: {
                    var method = top.Pop() as CodeObject;
                    top.Push(new IodineGeneratorExpr(Top, method));
                    break;
                }

                case Opcode.BuildRegex: {
                    var str = top.Pop() as IodineString;
                    top.Push(new RegexModule.IodineRegex(str.Value));
                    break;
                }

                case Opcode.Slice: {
                    var target = top.Pop();

                    var arguments = new IodineInteger [3];

                    for (int i = 0; i < 3; i++)
                    {
                        var obj = top.Pop();
                        arguments [i] = obj as IodineInteger;

                        if (obj != IodineNull.Instance && arguments [i] == null)
                        {
                            RaiseException(new IodineTypeException("Int"));
                            break;
                        }
                    }

                    var slice = new IodineSlice(arguments [0], arguments [1], arguments [2]);

                    top.Push(target.Slice(this, slice));

                    break;
                }

                case Opcode.RangeCheck: {
                    var range   = top.Pop() as IodineRange;
                    var matchee = top.Pop();


                    long longVal;


                    if (!MarshalUtil.MarshalAsInt64(matchee, out longVal) ||
                        range == null)
                    {
                        top.Stack.Push(IodineBool.False);
                        break;
                    }

                    top.Stack.Push(IodineBool.Create(
                                       range.LowerBound <= longVal &&
                                       range.UpperBound >= longVal
                                       ));

                    break;
                }

                case Opcode.MatchPattern: {
                    var collection = top.Pop().GetIterator(this);

                    var items = new IodineObject [instruction.Argument];
                    for (int i = 1; i <= instruction.Argument; i++)
                    {
                        items [instruction.Argument - i] = top.Pop();
                    }


                    int index = 0;

                    collection.IterReset(this);

                    while (collection.IterMoveNext(this) && index < items.Length)
                    {
                        var o = collection.IterGetCurrent(this);

                        if (items [index] is IodineTypeDefinition)
                        {
                            if (!o.InstanceOf(items [index] as IodineTypeDefinition))
                            {
                                top.Push(IodineBool.False);
                                break;
                            }
                        }
                        else if (items [index] is IodineRange)
                        {
                            var range = items [index] as IodineRange;

                            long longValue;

                            if (MarshalUtil.MarshalAsInt64(o, out longValue))
                            {
                                if (longValue > range.UpperBound ||
                                    longValue < range.LowerBound)
                                {
                                    top.Push(IodineBool.False);
                                    break;
                                }
                            }
                            else
                            {
                                top.Push(IodineBool.False);
                                break;
                            }
                        }
                        else
                        {
                            if (!o.Equals(items [index]))
                            {
                                top.Push(IodineBool.False);
                                break;
                            }
                        }

                        index++;
                    }

                    top.Push(IodineBool.Create(index == items.Length));

                    break;
                }

                case Opcode.Unwrap: {
                    var container = top.Pop();

                    var value = container.Unwrap(this);

                    if (instruction.Argument > 0)
                    {
                        var len = value.Len(this) as IodineInteger;

                        if (len == null || len.Value != instruction.Argument)
                        {
                            top.Push(IodineBool.False);
                            break;
                        }
                    }

                    top.Push(value);
                    top.Push(IodineBool.True);

                    break;
                }

                case Opcode.Unpack: {
                    var tuple = top.Pop() as IodineTuple;

                    if (tuple == null)
                    {
                        RaiseException(new IodineTypeException("Tuple"));
                        break;
                    }

                    if (tuple.Objects.Length != instruction.Argument)
                    {
                        RaiseException(new IodineUnpackException(instruction.Argument));
                        break;
                    }
                    for (int i = tuple.Objects.Length - 1; i >= 0; i--)
                    {
                        top.Push(tuple.Objects [i]);
                    }
                    break;
                }

                case Opcode.GetIter: {
                    top.Push(top.Pop().GetIterator(this));
                    break;
                }

                case Opcode.IterGetNext: {
                    top.Push(top.Pop().IterGetCurrent(this));
                    break;
                }

                case Opcode.IterMoveNext: {
                    top.Push(IodineBool.Create(top.Pop().IterMoveNext(this)));
                    break;
                }

                case Opcode.IterReset: {
                    top.Pop().IterReset(this);
                    break;
                }

                case Opcode.PushExceptionHandler: {
                    Top.ExceptionHandlers.Push(new IodineExceptionHandler(frameCount, instruction.Argument));
                    break;
                }

                case Opcode.PopExceptionHandler: {
                    Top.ExceptionHandlers.Pop();
                    break;
                }

                case Opcode.InstanceOf: {
                    var o    = top.Pop();
                    var type = top.Pop() as IodineTypeDefinition;
                    if (type == null)
                    {
                        RaiseException(new IodineTypeException("TypeDef"));
                        break;
                    }
                    top.Push(IodineBool.Create(o.InstanceOf(type)));
                    break;
                }

                case Opcode.DynamicCast: {
                    var o    = top.Pop();
                    var type = top.Pop() as IodineTypeDefinition;
                    if (type == null)
                    {
                        RaiseException(new IodineTypeException("TypeDef"));
                        break;
                    }
                    if (o.InstanceOf(type))
                    {
                        top.Push(o);
                    }
                    else
                    {
                        top.Push(IodineNull.Instance);
                    }
                    break;
                }

                case Opcode.NullCoalesce: {
                    var o1 = top.Pop();
                    var o2 = top.Pop();
                    if (o1 is IodineNull)
                    {
                        top.Push(o2);
                    }
                    else
                    {
                        top.Push(o1);
                    }
                    break;
                }

                case Opcode.BeginExcept: {
                    bool rethrow = true;

                    for (int i = 1; i <= instruction.Argument; i++)
                    {
                        var type = top.Pop() as IodineTypeDefinition;

                        if (type == null)
                        {
                            RaiseException(new IodineTypeException("TypeDef"));
                            break;
                        }

                        if (lastException.InstanceOf(type))
                        {
                            rethrow = false;
                            break;
                        }
                    }

                    if (rethrow)
                    {
                        RaiseException(lastException);
                    }
                    break;
                }

                case Opcode.Raise: {
                    var e = top.Pop();
                    if (e.InstanceOf(IodineException.TypeDefinition))
                    {
                        RaiseException(e);
                    }
                    else
                    {
                        RaiseException(new IodineTypeException("Exception"));
                    }
                    break;
                }

                case Opcode.SwitchLookup: {
                    var lookup = new Dictionary <int, IodineObject> ();
                    var needle = top.Pop().GetHashCode();

                    for (int i = 0; i < instruction.Argument; i++)
                    {
                        var value = top.Pop();
                        var key   = top.Pop();
                        lookup [key.GetHashCode()] = value;
                    }
                    if (lookup.ContainsKey(needle))
                    {
                        lookup [needle].Invoke(this, new IodineObject [] { });
                        top.Push(IodineBool.True);
                    }
                    else
                    {
                        top.Push(IodineBool.False);
                    }
                    break;
                }

                case Opcode.BeginWith: {
                    var obj = top.Pop();
                    obj.Enter(this);
                    Top.DisposableObjects.Push(obj);
                    break;
                }

                case Opcode.EndWith: {
                    Top.DisposableObjects.Pop().Exit(this);
                    break;
                }

                case Opcode.IncludeMixin: {
                    var obj  = top.Pop();
                    var type = top.Pop();

                    foreach (var attr in obj.Attributes)
                    {
                        type.SetAttribute(attr.Key, attr.Value);
                    }
                    break;
                }

                case Opcode.ApplyMixin: {
                    var type  = top.Pop();
                    var mixin = instruction.ArgumentObject as IodineMixin;

                    foreach (var attr in mixin.Attributes)
                    {
                        type.SetAttribute(attr.Key, attr.Value);
                    }
                    break;
                }

                case Opcode.BuildFunction: {
                    var flags = (MethodFlags)instruction.Argument;

                    var name       = top.Pop() as IodineString;
                    var doc        = top.Pop() as IodineString;
                    var codeObj    = top.Pop() as CodeObject;
                    var parameters = top.Pop() as IodineTuple;

                    var defaultValues = new IodineObject [] { };

                    int defaultValuesStart = 0;

                    if (flags.HasFlag(MethodFlags.HasDefaultParameters))
                    {
                        var defaultValuesTuple = top.Pop() as IodineTuple;
                        var startInt           = top.Pop() as IodineInteger;
                        defaultValues      = defaultValuesTuple.Objects;
                        defaultValuesStart = (int)startInt.Value;
                    }

                    var method = new IodineMethod(
                        Top.Module,
                        name,
                        codeObj,
                        parameters,
                        flags,
                        defaultValues,
                        defaultValuesStart
                        );

                    method.SetAttribute("__doc__", doc);

                    top.Push(method);

                    break;
                }
                }
            }
            return(top.Stack.LastObject ?? IodineNull.Instance);
        }