LawrencePeng's Blog

专注收集代码小精灵

用Go实现JVM指令集

  • go-jvm项目已经实现了接近80%的指令集,目前已经能执行一些简单的jvm程序。
  • 指令集的实现在go-jvm项目的instructions目录中。
  • 取一部分go-jvm做高斯5050的代码执行给大家看看。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
pc:11 inst:*loads.ILOAD_2 &{{}}
pc:12 inst:*math.IADD &{{}}
pc:13 inst:*stores.ISTORE_1 &{{}}
pc:14 inst:*math.IINC &{2 1}
pc:17 inst:*control.GOTO &{{-13}}
pc: 4 inst:*loads.ILOAD_2 &{{}}
pc: 5 inst:*constants.BIPUSH &{100}
pc: 7 inst:*comparisons.IF_ICMPGT &{{13}}
pc:10 inst:*loads.ILOAD_1 &{{}}
pc:11 inst:*loads.ILOAD_2 &{{}}
pc:12 inst:*math.IADD &{{}}
pc:13 inst:*stores.ISTORE_1 &{{}}
pc:14 inst:*math.IINC &{2 1}
pc:17 inst:*control.GOTO &{{-13}}
pc: 4 inst:*loads.ILOAD_2 &{{}}
pc: 5 inst:*constants.BIPUSH &{100}
pc: 7 inst:*comparisons.IF_ICMPGT &{{13}}
pc:10 inst:*loads.ILOAD_1 &{{}}
pc:11 inst:*loads.ILOAD_2 &{{}}
pc:12 inst:*math.IADD &{{}}
pc:13 inst:*stores.ISTORE_1 &{{}}
pc:14 inst:*math.IINC &{2 1}
pc:17 inst:*control.GOTO &{{-13}}
pc: 4 inst:*loads.ILOAD_2 &{{}}
pc: 5 inst:*constants.BIPUSH &{100}
pc: 7 inst:*comparisons.IF_ICMPGT &{{13}}
pc:10 inst:*loads.ILOAD_1 &{{}}
pc:11 inst:*loads.ILOAD_2 &{{}}
pc:12 inst:*math.IADD &{{}}
pc:13 inst:*stores.ISTORE_1 &{{}}
pc:14 inst:*math.IINC &{2 1}
pc:17 inst:*control.GOTO &{{-13}}
pc: 4 inst:*loads.ILOAD_2 &{{}}
pc: 5 inst:*constants.BIPUSH &{100}
pc: 7 inst:*comparisons.IF_ICMPGT &{{13}}
pc:10 inst:*loads.ILOAD_1 &{{}}
pc:11 inst:*loads.ILOAD_2 &{{}}
pc:12 inst:*math.IADD &{{}}
pc:13 inst:*stores.ISTORE_1 &{{}}
pc:14 inst:*math.IINC &{2 1}
pc:17 inst:*control.GOTO &{{-13}}
pc: 4 inst:*loads.ILOAD_2 &{{}}
pc: 5 inst:*constants.BIPUSH &{100}
pc: 7 inst:*comparisons.IF_ICMPGT &{{13}}
pc:10 inst:*loads.ILOAD_1 &{{}}
pc:11 inst:*loads.ILOAD_2 &{{}}
pc:12 inst:*math.IADD &{{}}
pc:13 inst:*stores.ISTORE_1 &{{}}
pc:14 inst:*math.IINC &{2 1}
pc:17 inst:*control.GOTO &{{-13}}
pc: 4 inst:*loads.ILOAD_2 &{{}}
pc: 5 inst:*constants.BIPUSH &{100}
pc: 7 inst:*comparisons.IF_ICMPGT &{{13}}
LocalVars:[{0 <nil>} {5050 <nil>} {101 <nil>}]
  • 确实说明高斯确实是对的。。。