about summary refs log tree commit diff
path: root/pkg/lang/vm/code/op.go
blob: 6f9983ad9053533df46bb21ed66991116b10d9c5 (plain)
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
package code

type Op uint8

const (
	OpNop Op = iota
	OpHalt

	OpPushInt
	OpPushFloat
	OpPushString
	OpPushTrue
	OpPushFalse
	OpPushNull
	OpPushArray
	OpPushFunction
	OpPushObject

	OpShift
	OpDrop

	OpGetGlobal
	OpGetLocal
	OpGetMember

	OpGetEnv
	OpSetEnv
	OpAddToEnv

	OpAdd
	OpSub
	OpIndex
	OpLte
	OpCall

	OpJmp
	OpJt
	OpJf

	OpRet

	// Temporary operations, which will be removed with the advent of methods.
	OpTempArrLen
	OpTempArrPush
)