public override void Compile(Kernel k) { k.EmitPush("1u"); k.Emit(Opcode.ALLOC).SetDebug(File, Line, Column, DebugType.Define, this.VariableName); k.CurrentScope.MemorySpace += 1; Symbol symbol = new Symbol() { Name = this.VariableName, SMode = Symbol.Mode.Intern, SType = Symbol.Type.Variable, Id = k.CurrentScope.RequestId() }; k.RegisterSymbol(symbol); if (this.Value == null) { k.Emit(Opcode.PUSHNIL).Comment = "clear memory for variable"; } else { this.Value.Compile(k); } k.EmitPush(symbol.Id.ToString() + "u"); k.Emit(Opcode.STLO).SetDebug(File, Line, Column, DebugType.Set, this.VariableName); }
public override void Compile(Kernel k) { Symbol symbol = new Symbol() { SMode = Symbol.Mode.Extern, SType = Symbol.Type.Function, Name = this.SymbolName, Args = (uint)this.Arguments.Count }; k.RegisterSymbol(symbol); }
public override void Compile(Kernel k) { k.CurrentScope.PushMemory(k); Scope scope = k.PushScope(); scope.Name = "for" + scope.Parent.RequestLabelId(); if (this.Init != null) this.Init.Compile(k); string forLabel = "sl_fl_" + k.GetScopeName(); string endLabel = "sl_flh_" + k.GetScopeName(); Symbol breakSymbol = new Symbol() { Name = "+break", AsmName = endLabel }; k.RegisterSymbol(breakSymbol); k.Emit(Opcode.LABEL, forLabel).Comment = "for loop"; k.Emit(Opcode.NOOP).SetDebug(File, Line, Column, DebugType.ForLoop, ""); this.Check.Compile(k); k.Emit(Opcode.NOT); k.Emit(Opcode.GOTOF, '"' + endLabel + '"'); scope.PushMemory(k); Scope innerScope = k.PushScope(); innerScope.Name = "in"; if (this.Body != null) this.Body.Compile(k); k.EmitPush(innerScope.MemorySpace.ToString() + "u"); k.Emit(Opcode.DEALLOC); k.PopScope(); scope.PopMemory(k); if (this.Increment != null) this.Increment.Compile(k); k.Emit(Opcode.GOTO, '"' + forLabel + '"'); k.Emit(Opcode.LABEL, endLabel).Comment = "end for"; k.PopScope(); k.CurrentScope.PopMemory(k); }
public override void Compile(Kernel k) { Symbol symbol = new Symbol() { Name = this.Function, SMode = Symbol.Mode.Intern, SType = Symbol.Type.Function, Args = (uint)this.Arguments.Count }; k.RegisterSymbol(symbol); Scope scope = k.PushScope(); scope.Name = this.Function; scope.MemorySpace += (uint)this.Arguments.Count + 1; symbol.AsmName = string.Format("sl_f_{0}", k.GetScopeName()); switch(k.CurrentImportMode) { case ImportMode.Library: k.PopScope(); symbol.SMode = Symbol.Mode.Library; symbol.Id = k.CurrentScope.RequestId(); k.CurrentScope.MemorySpace++; k.AddImport(symbol); return; case ImportMode.Export: k.AddExport(symbol); break; } k.Emit(Opcode.LABEL, symbol.AsmName).Comment = "function " + this.Function; // function label k.Emit(Opcode.NOOP).SetDebug(File, Line, Column, DebugType.Function, this.Function); k.EmitPush(scope.MemorySpace.ToString() + "u").Comment = "allocate function parameter memory"; // allocate memory space for arguments and return location k.Emit(Opcode.ALLOC); Symbol returnSymbol = new Symbol() { Name = "+return", SMode = Symbol.Mode.Intern, SType = Symbol.Type.Variable, Id = k.CurrentScope.RequestId() }; k.RegisterSymbol(returnSymbol); k.EmitPush(returnSymbol.Id.ToString() + "u").Comment = "store return location"; // store the return location k.Emit(Opcode.STLO); foreach(string arg in this.Arguments) { Symbol argSymbol = new Symbol() { Name = arg, SMode = Symbol.Mode.Intern, SType = Symbol.Type.Variable, Id = k.CurrentScope.RequestId() }; k.RegisterSymbol(argSymbol); k.EmitPush(argSymbol.Id.ToString() + "u").Comment = "store argument " + arg; // store the argument k.Emit(Opcode.STLO); } k.Emit(Opcode.NOOP).Comment = "function body"; if (this.Body != null) this.Body.Compile(k); new ReturnNode(-1, -1).Compile(k); k.PopScope(); k.Emit(Opcode.NOOP).Comment = "end of function"; }