2 * Copyright 2012 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 * jsval_t structure is used to represent JavaScript dynamically-typed values.
26 * It's a (type,value) pair, usually represented as a structure of enum (type)
27 * and union (value of given type). For both memory and speed performance, we
28 * use tricks allowing storing both values as a struct with size equal to
29 * size of double (that is 64-bit) on 32-bit systems. For that, we use the fact
30 * that NaN value representation has 52 (almost) free bits.
34 #define JSVAL_DOUBLE_LAYOUT_PTR32
37 #ifdef JSVAL_DOUBLE_LAYOUT_PTR32
38 /* NaN exponent and our 0x80000 marker */
39 #define JSV_VAL(x) (0x7ff80000|x)
45 JSV_UNDEFINED = JSV_VAL(1),
46 JSV_NULL = JSV_VAL(2),
47 JSV_OBJECT = JSV_VAL(3),
48 JSV_STRING = JSV_VAL(4),
49 JSV_NUMBER = JSV_VAL(5),
50 JSV_BOOL = JSV_VAL(6),
51 JSV_VARIANT = JSV_VAL(7)
55 #ifdef JSVAL_DOUBLE_LAYOUT_PTR32
81 #ifdef JSVAL_DOUBLE_LAYOUT_PTR32
83 C_ASSERT(sizeof(jsval_t) == sizeof(double));
85 #define __JSVAL_TYPE(x) ((x).u.s.tag)
86 #define __JSVAL_BOOL(x) ((x).u.s.u.b)
87 #define __JSVAL_STR(x) ((x).u.s.u.str)
88 #define __JSVAL_OBJ(x) ((x).u.s.u.obj)
89 #define __JSVAL_VAR(x) ((x).u.s.u.v)
93 #define __JSVAL_TYPE(x) ((x).type)
94 #define __JSVAL_BOOL(x) ((x).u.b)
95 #define __JSVAL_STR(x) ((x).u.str)
96 #define __JSVAL_OBJ(x) ((x).u.obj)
97 #define __JSVAL_VAR(x) ((x).u.v)
101 static inline jsval_t jsval_bool(BOOL b)
104 __JSVAL_TYPE(ret) = JSV_BOOL;
105 __JSVAL_BOOL(ret) = b;
109 static inline jsval_t jsval_string(jsstr_t *str)
112 __JSVAL_TYPE(ret) = JSV_STRING;
113 __JSVAL_STR(ret) = str;
117 static inline jsval_t jsval_disp(IDispatch *obj)
120 __JSVAL_TYPE(ret) = JSV_OBJECT;
121 __JSVAL_OBJ(ret) = obj;
125 static inline jsval_t jsval_obj(jsdisp_t *obj)
127 return jsval_disp(to_disp(obj));
130 static inline jsval_t jsval_null(void)
133 __JSVAL_TYPE(ret) = JSV_NULL;
137 static inline jsval_t jsval_undefined(void)
140 __JSVAL_TYPE(ret) = JSV_UNDEFINED;
144 static inline jsval_t jsval_number(double n)
147 #ifdef JSVAL_DOUBLE_LAYOUT_PTR32
149 /* normalize NaN value */
150 if((ret.u.s.tag & 0x7ff00000) == 0x7ff00000) {
152 if(ret.u.s.tag & 0xfffff) {
153 ret.u.s.tag = 0x7ff00000;
154 ret.u.s.u.as_uintptr = ~0;
155 }else if(ret.u.s.u.as_uintptr) {
156 ret.u.s.tag = 0x7ff00000;
160 ret.type = JSV_NUMBER;
166 static inline BOOL is_object_instance(jsval_t v)
168 return __JSVAL_TYPE(v) == JSV_OBJECT;
171 static inline BOOL is_undefined(jsval_t v)
173 return __JSVAL_TYPE(v) == JSV_UNDEFINED;
176 static inline BOOL is_null(jsval_t v)
178 return __JSVAL_TYPE(v) == JSV_NULL;
181 static inline BOOL is_null_instance(jsval_t v)
183 return is_null(v) || (is_object_instance(v) && !__JSVAL_OBJ(v));
186 static inline BOOL is_string(jsval_t v)
188 return __JSVAL_TYPE(v) == JSV_STRING;
191 static inline BOOL is_number(jsval_t v)
193 #ifdef JSVAL_DOUBLE_LAYOUT_PTR32
194 return (v.u.s.tag & 0x7ff80000) != 0x7ff80000;
196 return v.type == JSV_NUMBER;
200 static inline BOOL is_variant(jsval_t v)
202 return __JSVAL_TYPE(v) == JSV_VARIANT;
205 static inline BOOL is_bool(jsval_t v)
207 return __JSVAL_TYPE(v) == JSV_BOOL;
210 static inline jsval_type_t jsval_type(jsval_t v)
212 #ifdef JSVAL_DOUBLE_LAYOUT_PTR32
213 return is_number(v) ? JSV_NUMBER : v.u.s.tag;
219 static inline IDispatch *get_object(jsval_t v)
221 return __JSVAL_OBJ(v);
224 static inline double get_number(jsval_t v)
229 static inline jsstr_t *get_string(jsval_t v)
231 return __JSVAL_STR(v);
234 static inline VARIANT *get_variant(jsval_t v)
236 return __JSVAL_VAR(v);
239 static inline BOOL get_bool(jsval_t v)
241 return __JSVAL_BOOL(v);
244 HRESULT variant_to_jsval(VARIANT*,jsval_t*) DECLSPEC_HIDDEN;
245 HRESULT jsval_to_variant(jsval_t,VARIANT*) DECLSPEC_HIDDEN;
246 void jsval_release(jsval_t) DECLSPEC_HIDDEN;
247 HRESULT jsval_copy(jsval_t,jsval_t*) DECLSPEC_HIDDEN;