1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
3 * ***** BEGIN LICENSE BLOCK *****
4 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 * The contents of this file are subject to the Mozilla Public License Version
7 * 1.1 (the "License"); you may not use this file except in compliance with
8 * the License. You may obtain a copy of the License at
9 * http://www.mozilla.org/MPL/
11 * Software distributed under the License is distributed on an "AS IS" basis,
12 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 * for the specific language governing rights and limitations under the
16 * The Original Code is Mozilla Communicator client code, released
19 * The Initial Developer of the Original Code is
20 * Netscape Communications Corporation.
21 * Portions created by the Initial Developer are Copyright (C) 1998
22 * the Initial Developer. All Rights Reserved.
26 * Alternatively, the contents of this file may be used under the terms of
27 * either of the GNU General Public License Version 2 or later (the "GPL"),
28 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29 * in which case the provisions of the GPL or the LGPL are applicable instead
30 * of those above. If you wish to allow use of your version of this file only
31 * under the terms of either the GPL or the LGPL, and not to allow others to
32 * use your version of this file under the terms of the MPL, indicate your
33 * decision by deleting the provisions above and replace them with the notice
34 * and other provisions required by the GPL or the LGPL. If you do not delete
35 * the provisions above, a recipient may use your version of this file under
36 * the terms of any one of the MPL, the GPL or the LGPL.
38 * ***** END LICENSE BLOCK ***** */
43 * JS private typename definitions.
45 * This header is included only in other .h files, for convenience and for
46 * simplicity of type naming. The alternative for structures is to use tags,
47 * which are named the same as their typedef names (legal in C/C++, and less
48 * noisy than suffixing the typedef name with "Struct" or "Str"). Instead,
49 * all .h files that include this file may use the same typedef name, whether
50 * declaring a pointer to struct type, or defining a member of struct type.
52 * A few fundamental scalar types are defined here too. Neither the scalar
53 * nor the struct typedefs should change much, therefore the nearly-global
54 * make dependency induced by this file should not prove painful.
59 /* Internal identifier (jsid) macros. */
61 #define JSID_IS_ATOM(id) JSVAL_IS_STRING((jsval)(id))
62 #define JSID_TO_ATOM(id) ((JSAtom *)(id))
63 #define ATOM_TO_JSID(atom) (JS_ASSERT(ATOM_IS_STRING(atom)), \
66 #define JSID_IS_INT(id) JSVAL_IS_INT((jsval)(id))
67 #define JSID_TO_INT(id) JSVAL_TO_INT((jsval)(id))
68 #define INT_TO_JSID(i) ((jsid)INT_TO_JSVAL(i))
69 #define INT_JSVAL_TO_JSID(v) ((jsid)(v))
70 #define INT_JSID_TO_JSVAL(id) ((jsval)(id))
72 #define JSID_IS_OBJECT(id) JSVAL_IS_OBJECT((jsval)(id))
73 #define JSID_TO_OBJECT(id) JSVAL_TO_OBJECT((jsval)(id))
74 #define OBJECT_TO_JSID(obj) ((jsid)OBJECT_TO_JSVAL(obj))
75 #define OBJECT_JSVAL_TO_JSID(v) ((jsid)v)
77 #define ID_TO_VALUE(id) ((jsval)(id))
80 * Convenience constants.
82 #define JS_BITS_PER_UINT32_LOG2 5
83 #define JS_BITS_PER_UINT32 32
85 /* Scalar typedefs. */
86 typedef uint8 jsbytecode
;
87 typedef uint8 jssrcnote
;
88 typedef uint32 jsatomid
;
90 /* Struct typedefs. */
91 typedef struct JSArgumentFormatMap JSArgumentFormatMap
;
92 typedef struct JSCodeGenerator JSCodeGenerator
;
93 typedef struct JSGCThing JSGCThing
;
94 typedef struct JSGenerator JSGenerator
;
95 typedef struct JSNativeEnumerator JSNativeEnumerator
;
96 typedef struct JSParseContext JSParseContext
;
97 typedef struct JSParsedObjectBox JSParsedObjectBox
;
98 typedef struct JSParseNode JSParseNode
;
99 typedef struct JSPropCacheEntry JSPropCacheEntry
;
100 typedef struct JSSharpObjectMap JSSharpObjectMap
;
101 typedef struct JSTempValueRooter JSTempValueRooter
;
102 typedef struct JSThread JSThread
;
103 typedef struct JSToken JSToken
;
104 typedef struct JSTokenPos JSTokenPos
;
105 typedef struct JSTokenPtr JSTokenPtr
;
106 typedef struct JSTokenStream JSTokenStream
;
107 typedef struct JSTreeContext JSTreeContext
;
108 typedef struct JSTryNote JSTryNote
;
109 typedef struct JSWeakRoots JSWeakRoots
;
111 /* Friend "Advanced API" typedefs. */
112 typedef struct JSAtom JSAtom
;
113 typedef struct JSAtomList JSAtomList
;
114 typedef struct JSAtomListElement JSAtomListElement
;
115 typedef struct JSAtomMap JSAtomMap
;
116 typedef struct JSAtomState JSAtomState
;
117 typedef struct JSCodeSpec JSCodeSpec
;
118 typedef struct JSPrinter JSPrinter
;
119 typedef struct JSRegExp JSRegExp
;
120 typedef struct JSRegExpStatics JSRegExpStatics
;
121 typedef struct JSScope JSScope
;
122 typedef struct JSScopeOps JSScopeOps
;
123 typedef struct JSScopeProperty JSScopeProperty
;
124 typedef struct JSStackHeader JSStackHeader
;
125 typedef struct JSStringBuffer JSStringBuffer
;
126 typedef struct JSSubString JSSubString
;
127 typedef struct JSTraceableNative JSTraceableNative
;
128 typedef struct JSXML JSXML
;
129 typedef struct JSXMLArray JSXMLArray
;
130 typedef struct JSXMLArrayCursor JSXMLArrayCursor
;
132 /* "Friend" types used by jscntxt.h and jsdbgapi.h. */
133 typedef enum JSTrapStatus
{
142 (* JSTrapHandler
)(JSContext
*cx
, JSScript
*script
, jsbytecode
*pc
, jsval
*rval
,
146 (* JSWatchPointHandler
)(JSContext
*cx
, JSObject
*obj
, jsval id
, jsval old
,
147 jsval
*newp
, void *closure
);
149 /* called just after script creation */
151 (* JSNewScriptHook
)(JSContext
*cx
,
152 const char *filename
, /* URL of script */
153 uintN lineno
, /* first line */
158 /* called just before script destruction */
160 (* JSDestroyScriptHook
)(JSContext
*cx
,
165 (* JSSourceHandler
)(const char *filename
, uintN lineno
, jschar
*str
,
166 size_t length
, void **listenerTSData
, void *closure
);
169 * This hook captures high level script execution and function calls (JS or
170 * native). It is used by JS_SetExecuteHook to hook top level scripts and by
171 * JS_SetCallHook to hook function calls. It will get called twice per script
172 * or function call: just before execution begins and just after it finishes.
173 * In both cases the 'current' frame is that of the executing code.
175 * The 'before' param is JS_TRUE for the hook invocation before the execution
176 * and JS_FALSE for the invocation after the code has run.
178 * The 'ok' param is significant only on the post execution invocation to
179 * signify whether or not the code completed 'normally'.
181 * The 'closure' param is as passed to JS_SetExecuteHook or JS_SetCallHook
182 * for the 'before'invocation, but is whatever value is returned from that
183 * invocation for the 'after' invocation. Thus, the hook implementor *could*
184 * allocate a structure in the 'before' invocation and return a pointer to that
185 * structure. The pointer would then be handed to the hook for the 'after'
186 * invocation. Alternately, the 'before' could just return the same value as
187 * in 'closure' to cause the 'after' invocation to be called with the same
188 * 'closure' value as the 'before'.
190 * Returning NULL in the 'before' hook will cause the 'after' hook *not* to
194 (* JSInterpreterHook
)(JSContext
*cx
, JSStackFrame
*fp
, JSBool before
,
195 JSBool
*ok
, void *closure
);
198 (* JSObjectHook
)(JSContext
*cx
, JSObject
*obj
, JSBool isNew
, void *closure
);
201 (* JSDebugErrorHook
)(JSContext
*cx
, const char *message
, JSErrorReport
*report
,
204 typedef struct JSDebugHooks
{
205 JSTrapHandler interruptHandler
;
206 void *interruptHandlerData
;
207 JSNewScriptHook newScriptHook
;
208 void *newScriptHookData
;
209 JSDestroyScriptHook destroyScriptHook
;
210 void *destroyScriptHookData
;
211 JSTrapHandler debuggerHandler
;
212 void *debuggerHandlerData
;
213 JSSourceHandler sourceHandler
;
214 void *sourceHandlerData
;
215 JSInterpreterHook executeHook
;
216 void *executeHookData
;
217 JSInterpreterHook callHook
;
219 JSObjectHook objectHook
;
220 void *objectHookData
;
221 JSTrapHandler throwHook
;
223 JSDebugErrorHook debugErrorHook
;
224 void *debugErrorHookData
;
228 * Type definitions for temporary GC roots that register with GC local C
229 * variables. See jscntxt.h for details.
232 (* JSTempValueTrace
)(JSTracer
*trc
, JSTempValueRooter
*tvr
);
234 typedef union JSTempValueUnion
{
239 JSTempValueTrace trace
;
240 JSScopeProperty
*sprop
;
241 JSWeakRoots
*weakRoots
;
242 JSParseContext
*parseContext
;
247 struct JSTempValueRooter
{
248 JSTempValueRooter
*down
;
254 * The following determines whether JS_EncodeCharacters and JS_DecodeBytes
255 * treat char[] as utf-8 or simply as bytes that need to be inflated/deflated.
257 #ifdef JS_C_STRINGS_ARE_UTF8
258 # define js_CStringsAreUTF8 JS_TRUE
260 extern JSBool js_CStringsAreUTF8
;
263 #endif /* jsprvtd_h___ */