annotate Jint.Runtime/VM/RuntimeContext.cs @ 5:cb13da6e3349

simple loop test
author cin
date Mon, 28 Oct 2013 00:49:15 +0400
parents aced2ae9957f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
1 using System;
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
2 using System.Collections.Generic;
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
3 using System.Linq;
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
4 using System.Text;
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
5 using Jint.Runtime.VM.OpCodes;
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
6
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
7 namespace Jint.Runtime.VM {
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
8 class RuntimeContext {
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
9 Dictionary<Type, object[]> m_impls;
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
10
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
11 public RuntimeContext() {
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
12 m_impls = new Dictionary<Type, object[]>();
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
13 }
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
14
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
15 public object[] GetImpl(Type type) {
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
16 return m_impls[type];
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
17 }
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
18
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
19 public Box<T> BoxValue<T>(T value) {
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
20 return new Box<T>(value, this);
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
21 }
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
22
5
cb13da6e3349 simple loop test
cin
parents: 3
diff changeset
23 object[] GetOrCreateOps(Type type) {
3
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
24 object[] ops;
5
cb13da6e3349 simple loop test
cin
parents: 3
diff changeset
25 if (!m_impls.TryGetValue(type, out ops))
cb13da6e3349 simple loop test
cin
parents: 3
diff changeset
26 ops = m_impls[type] = new object[(int)Codes.MaxOp];
cb13da6e3349 simple loop test
cin
parents: 3
diff changeset
27 return ops;
cb13da6e3349 simple loop test
cin
parents: 3
diff changeset
28 }
3
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
29
5
cb13da6e3349 simple loop test
cin
parents: 3
diff changeset
30 public void DefineBinaryOperation<T>(Codes code, BinaryOperation<T> op) {
cb13da6e3349 simple loop test
cin
parents: 3
diff changeset
31 object[] ops = GetOrCreateOps(typeof(T));
3
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
32 ops[(int)code] = op;
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
33 }
5
cb13da6e3349 simple loop test
cin
parents: 3
diff changeset
34
cb13da6e3349 simple loop test
cin
parents: 3
diff changeset
35 public void DefineCompareOperation<T>(CompareOperation<T> op) {
cb13da6e3349 simple loop test
cin
parents: 3
diff changeset
36 object[] ops = GetOrCreateOps(typeof(T));
cb13da6e3349 simple loop test
cin
parents: 3
diff changeset
37 ops[(int)Codes.Cmp] = op;
cb13da6e3349 simple loop test
cin
parents: 3
diff changeset
38 }
3
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
39 }
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 0
diff changeset
40 }