forked from gnolang/gno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
op_inc_dec.go
105 lines (97 loc) · 2.61 KB
/
op_inc_dec.go
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
package gno
func (m *Machine) doOpInc() {
s := m.PopStmt().(*IncDecStmt)
// Get reference to lhs.
pv := m.PopAsPointer(s.X)
lv := pv.TV
// Switch on the base type. NOTE: this is faster
// than computing the kind of kv.T. TODO: consider
// optimizing away this switch by implementing a
// general SetAnyInt(n int64) function that handles
// bounds checking. NOTE: no need to set .V to nil,
// as the type should be the same, and thus .V is
// expected to be nil.
if debug {
if lv.V != nil {
panic("expected lv.V to be nil for primitive type for OpInc")
}
}
switch baseOf(lv.T) {
case IntType:
lv.SetInt(lv.GetInt() + 1)
case Int8Type:
lv.SetInt8(lv.GetInt8() + 1)
case Int16Type:
lv.SetInt16(lv.GetInt16() + 1)
case Int32Type:
lv.SetInt32(lv.GetInt32() + 1)
case Int64Type:
lv.SetInt64(lv.GetInt64() + 1)
case UintType:
lv.SetUint(lv.GetUint() + 1)
case Uint8Type:
lv.SetUint8(lv.GetUint8() + 1)
case DataByteType:
lv.SetDataByte(lv.GetDataByte() + 1)
case Uint16Type:
lv.SetUint16(lv.GetUint16() + 1)
case Uint32Type:
lv.SetUint32(lv.GetUint32() + 1)
case Uint64Type:
lv.SetUint64(lv.GetUint64() + 1)
default:
panic("unexpected type in in operation")
}
// Mark dirty in realm.
if m.Realm != nil && pv.Base != nil {
m.Realm.DidUpdate(pv.Base.(Object), nil, nil)
}
}
func (m *Machine) doOpDec() {
s := m.PopStmt().(*IncDecStmt)
// Get result ptr depending on lhs.
pv := m.PopAsPointer(s.X)
lv := pv.TV
// Switch on the base type. NOTE: this is faster
// than computing the kind of kv.T. TODO: consider
// optimizing away this switch by implementing a
// general SetAnyInt(n int64) function that handles
// bounds checking. NOTE: no need to set .V to nil,
// as the type should be the same, and thus .V is
// expected to be nil.
if debug {
if lv.V != nil {
panic("expected lv.V to be nil for primitive type for OpDec")
}
}
switch baseOf(lv.T) {
case IntType:
lv.SetInt(lv.GetInt() - 1)
case Int8Type:
lv.SetInt8(lv.GetInt8() - 1)
case Int16Type:
lv.SetInt16(lv.GetInt16() - 1)
case Int32Type:
lv.SetInt32(lv.GetInt32() - 1)
case Int64Type:
lv.SetInt64(lv.GetInt64() - 1)
case UintType:
lv.SetUint(lv.GetUint() - 1)
case Uint8Type:
lv.SetUint8(lv.GetUint8() - 1)
case DataByteType:
lv.SetDataByte(lv.GetDataByte() - 1)
case Uint16Type:
lv.SetUint16(lv.GetUint16() - 1)
case Uint32Type:
lv.SetUint32(lv.GetUint32() - 1)
case Uint64Type:
lv.SetUint64(lv.GetUint64() - 1)
default:
panic("unexpected type in in operation")
}
// Mark dirty in realm.
if m.Realm != nil && pv.Base != nil {
m.Realm.DidUpdate(pv.Base.(Object), nil, nil)
}
}