Exemplo n.º 1
0
 public RuntimeMemory(Heap heap)
 {
     FramePointer = 0;
     Stack = new List<StackValue>();
     ConstructBlockIds = new List<int>();
     Heap = heap;
     StackRestorer = new StackAlignToFramePointerRestorer();
 }
Exemplo n.º 2
0
 public RuntimeMemory(Heap heap)
 {
     FramePointer = 0;
     Executable = null;
     Stack = new List<StackValue>();
     ConstructBlockIds = new List<int>();
     Heap = heap;
     StackRestorer = new StackAlignToFramePointerRestorer();
     mapModifiedSymbols = new Dictionary<string, SymbolNode>();
 }