aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/robertkrimen/otto/evaluate.go
blob: 093054cc31f65817e0b38c0f997993910974afa2 (plain) (blame)
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
package otto

import (
    "fmt"
    "math"
    "strings"

    "github.com/robertkrimen/otto/token"
)

func (self *_runtime) evaluateMultiply(left float64, right float64) Value {
    // TODO 11.5.1
    return Value{}
}

func (self *_runtime) evaluateDivide(left float64, right float64) Value {
    if math.IsNaN(left) || math.IsNaN(right) {
        return NaNValue()
    }
    if math.IsInf(left, 0) && math.IsInf(right, 0) {
        return NaNValue()
    }
    if left == 0 && right == 0 {
        return NaNValue()
    }
    if math.IsInf(left, 0) {
        if math.Signbit(left) == math.Signbit(right) {
            return positiveInfinityValue()
        } else {
            return negativeInfinityValue()
        }
    }
    if math.IsInf(right, 0) {
        if math.Signbit(left) == math.Signbit(right) {
            return positiveZeroValue()
        } else {
            return negativeZeroValue()
        }
    }
    if right == 0 {
        if math.Signbit(left) == math.Signbit(right) {
            return positiveInfinityValue()
        } else {
            return negativeInfinityValue()
        }
    }
    return toValue_float64(left / right)
}

func (self *_runtime) evaluateModulo(left float64, right float64) Value {
    // TODO 11.5.3
    return Value{}
}

func (self *_runtime) calculateBinaryExpression(operator token.Token, left Value, right Value) Value {

    leftValue := left.resolve()

    switch operator {

    // Additive
    case token.PLUS:
        leftValue = toPrimitive(leftValue)
        rightValue := right.resolve()
        rightValue = toPrimitive(rightValue)

        if leftValue.IsString() || rightValue.IsString() {
            return toValue_string(strings.Join([]string{leftValue.string(), rightValue.string()}, ""))
        } else {
            return toValue_float64(leftValue.float64() + rightValue.float64())
        }
    case token.MINUS:
        rightValue := right.resolve()
        return toValue_float64(leftValue.float64() - rightValue.float64())

        // Multiplicative
    case token.MULTIPLY:
        rightValue := right.resolve()
        return toValue_float64(leftValue.float64() * rightValue.float64())
    case token.SLASH:
        rightValue := right.resolve()
        return self.evaluateDivide(leftValue.float64(), rightValue.float64())
    case token.REMAINDER:
        rightValue := right.resolve()
        return toValue_float64(math.Mod(leftValue.float64(), rightValue.float64()))

        // Logical
    case token.LOGICAL_AND:
        left := leftValue.bool()
        if !left {
            return falseValue
        }
        return toValue_bool(right.resolve().bool())
    case token.LOGICAL_OR:
        left := leftValue.bool()
        if left {
            return trueValue
        }
        return toValue_bool(right.resolve().bool())

        // Bitwise
    case token.AND:
        rightValue := right.resolve()
        return toValue_int32(toInt32(leftValue) & toInt32(rightValue))
    case token.OR:
        rightValue := right.resolve()
        return toValue_int32(toInt32(leftValue) | toInt32(rightValue))
    case token.EXCLUSIVE_OR:
        rightValue := right.resolve()
        return toValue_int32(toInt32(leftValue) ^ toInt32(rightValue))

        // Shift
        // (Masking of 0x1f is to restrict the shift to a maximum of 31 places)
    case token.SHIFT_LEFT:
        rightValue := right.resolve()
        return toValue_int32(toInt32(leftValue) << (toUint32(rightValue) & 0x1f))
    case token.SHIFT_RIGHT:
        rightValue := right.resolve()
        return toValue_int32(toInt32(leftValue) >> (toUint32(rightValue) & 0x1f))
    case token.UNSIGNED_SHIFT_RIGHT:
        rightValue := right.resolve()
        // Shifting an unsigned integer is a logical shift
        return toValue_uint32(toUint32(leftValue) >> (toUint32(rightValue) & 0x1f))

    case token.INSTANCEOF:
        rightValue := right.resolve()
        if !rightValue.IsObject() {
            panic(self.panicTypeError("Expecting a function in instanceof check, but got: %v", rightValue))
        }
        return toValue_bool(rightValue._object().hasInstance(leftValue))

    case token.IN:
        rightValue := right.resolve()
        if !rightValue.IsObject() {
            panic(self.panicTypeError())
        }
        return toValue_bool(rightValue._object().hasProperty(leftValue.string()))
    }

    panic(hereBeDragons(operator))
}

func valueKindDispatchKey(left _valueKind, right _valueKind) int {
    return (int(left) << 2) + int(right)
}

var equalDispatch map[int](func(Value, Value) bool) = makeEqualDispatch()

func makeEqualDispatch() map[int](func(Value, Value) bool) {
    key := valueKindDispatchKey
    return map[int](func(Value, Value) bool){

        key(valueNumber, valueObject): func(x Value, y Value) bool { return x.float64() == y.float64() },
        key(valueString, valueObject): func(x Value, y Value) bool { return x.float64() == y.float64() },
        key(valueObject, valueNumber): func(x Value, y Value) bool { return x.float64() == y.float64() },
        key(valueObject, valueString): func(x Value, y Value) bool { return x.float64() == y.float64() },
    }
}

type _lessThanResult int

const (
    lessThanFalse _lessThanResult = iota
    lessThanTrue
    lessThanUndefined
)

func calculateLessThan(left Value, right Value, leftFirst bool) _lessThanResult {

    x := Value{}
    y := x

    if leftFirst {
        x = toNumberPrimitive(left)
        y = toNumberPrimitive(right)
    } else {
        y = toNumberPrimitive(right)
        x = toNumberPrimitive(left)
    }

    result := false
    if x.kind != valueString || y.kind != valueString {
        x, y := x.float64(), y.float64()
        if math.IsNaN(x) || math.IsNaN(y) {
            return lessThanUndefined
        }
        result = x < y
    } else {
        x, y := x.string(), y.string()
        result = x < y
    }

    if result {
        return lessThanTrue
    }

    return lessThanFalse
}

// FIXME Probably a map is not the most efficient way to do this
var lessThanTable [4](map[_lessThanResult]bool) = [4](map[_lessThanResult]bool){
    // <
    map[_lessThanResult]bool{
        lessThanFalse:     false,
        lessThanTrue:      true,
        lessThanUndefined: false,
    },

    // >
    map[_lessThanResult]bool{
        lessThanFalse:     false,
        lessThanTrue:      true,
        lessThanUndefined: false,
    },

    // <=
    map[_lessThanResult]bool{
        lessThanFalse:     true,
        lessThanTrue:      false,
        lessThanUndefined: false,
    },

    // >=
    map[_lessThanResult]bool{
        lessThanFalse:     true,
        lessThanTrue:      false,
        lessThanUndefined: false,
    },
}

func (self *_runtime) calculateComparison(comparator token.Token, left Value, right Value) bool {

    // FIXME Use strictEqualityComparison?
    // TODO This might be redundant now (with regards to evaluateComparison)
    x := left.resolve()
    y := right.resolve()

    kindEqualKind := false
    result := true
    negate := false

    switch comparator {
    case token.LESS:
        result = lessThanTable[0][calculateLessThan(x, y, true)]
    case token.GREATER:
        result = lessThanTable[1][calculateLessThan(y, x, false)]
    case token.LESS_OR_EQUAL:
        result = lessThanTable[2][calculateLessThan(y, x, false)]
    case token.GREATER_OR_EQUAL:
        result = lessThanTable[3][calculateLessThan(x, y, true)]
    case token.STRICT_NOT_EQUAL:
        negate = true
        fallthrough
    case token.STRICT_EQUAL:
        if x.kind != y.kind {
            result = false
        } else {
            kindEqualKind = true
        }
    case token.NOT_EQUAL:
        negate = true
        fallthrough
    case token.EQUAL:
        if x.kind == y.kind {
            kindEqualKind = true
        } else if x.kind <= valueNull && y.kind <= valueNull {
            result = true
        } else if x.kind <= valueNull || y.kind <= valueNull {
            result = false
        } else if x.kind <= valueString && y.kind <= valueString {
            result = x.float64() == y.float64()
        } else if x.kind == valueBoolean {
            result = self.calculateComparison(token.EQUAL, toValue_float64(x.float64()), y)
        } else if y.kind == valueBoolean {
            result = self.calculateComparison(token.EQUAL, x, toValue_float64(y.float64()))
        } else if x.kind == valueObject {
            result = self.calculateComparison(token.EQUAL, toPrimitive(x), y)
        } else if y.kind == valueObject {
            result = self.calculateComparison(token.EQUAL, x, toPrimitive(y))
        } else {
            panic(hereBeDragons("Unable to test for equality: %v ==? %v", x, y))
        }
    default:
        panic(fmt.Errorf("Unknown comparator %s", comparator.String()))
    }

    if kindEqualKind {
        switch x.kind {
        case valueUndefined, valueNull:
            result = true
        case valueNumber:
            x := x.float64()
            y := y.float64()
            if math.IsNaN(x) || math.IsNaN(y) {
                result = false
            } else {
                result = x == y
            }
        case valueString:
            result = x.string() == y.string()
        case valueBoolean:
            result = x.bool() == y.bool()
        case valueObject:
            result = x._object() == y._object()
        default:
            goto ERROR
        }
    }

    if negate {
        result = !result
    }

    return result

ERROR:
    panic(hereBeDragons("%v (%v) %s %v (%v)", x, x.kind, comparator, y, y.kind))
}