2003/05/12 05:10:30
[org.ibex.core.git] / src / org / mozilla / javascript / InterpreterData.java
1 /* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-\r
2  *\r
3  * The contents of this file are subject to the Netscape Public\r
4  * License Version 1.1 (the "License"); you may not use this file\r
5  * except in compliance with the License. You may obtain a copy of\r
6  * the License at http://www.mozilla.org/NPL/\r
7  *\r
8  * Software distributed under the License is distributed on an "AS\r
9  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express oqr\r
10  * implied. See the License for the specific language governing\r
11  * rights and limitations under the License.\r
12  *\r
13  * The Original Code is Rhino code, released\r
14  * May 6, 1999.\r
15  *\r
16  * The Initial Developer of the Original Code is Netscape\r
17  * Communications Corporation.  Portions created by Netscape are\r
18  * Copyright (C) 1997-2000 Netscape Communications Corporation. All\r
19  * Rights Reserved.\r
20  *\r
21  * Contributor(s): \r
22  * Norris Boyd\r
23  * Roger Lawrence\r
24  *\r
25  * Alternatively, the contents of this file may be used under the\r
26  * terms of the GNU Public License (the "GPL"), in which case the\r
27  * provisions of the GPL are applicable instead of those above.\r
28  * If you wish to allow use of your version of this file only\r
29  * under the terms of the GPL and not to allow others to use your\r
30  * version of this file under the NPL, indicate your decision by\r
31  * deleting the provisions above and replace them with the notice\r
32  * and other provisions required by the GPL.  If you do not delete\r
33  * the provisions above, a recipient may use your version of this\r
34  * file under either the NPL or the GPL.\r
35  */\r
36 \r
37 package org.mozilla.javascript;\r
38 \r
39 import java.util.Vector;\r
40 \r
41 class InterpreterData {\r
42     \r
43     static final int INITIAL_MAX_ICODE_LENGTH = 1024;\r
44     static final int INITIAL_STRINGTABLE_SIZE = 64;\r
45     static final int INITIAL_NUMBERTABLE_SIZE = 64;\r
46     \r
47     InterpreterData(int lastICodeTop, int lastStringTableIndex, \r
48                     int lastNumberTableIndex, Object securityDomain,\r
49                     boolean useDynamicScope, boolean checkThis)\r
50     {\r
51         itsICodeTop = lastICodeTop == 0 \r
52                       ? INITIAL_MAX_ICODE_LENGTH\r
53                       : lastICodeTop * 2;\r
54         itsICode = new byte[itsICodeTop];\r
55 \r
56         itsStringTable = new String[lastStringTableIndex == 0\r
57                                     ? INITIAL_STRINGTABLE_SIZE\r
58                                     : lastStringTableIndex * 2];\r
59 \r
60         itsNumberTable = new double[lastNumberTableIndex == 0\r
61                                     ? INITIAL_NUMBERTABLE_SIZE\r
62                                     : lastNumberTableIndex * 2];\r
63         \r
64         itsUseDynamicScope = useDynamicScope;\r
65         itsCheckThis = checkThis;\r
66         if (securityDomain == null)\r
67             Context.checkSecurityDomainRequired();\r
68         this.securityDomain = securityDomain;\r
69     }\r
70     \r
71     public boolean placeBreakpoint(int line) { // XXX throw exn?\r
72         int offset = getOffset(line);\r
73         if (offset != -1 && (itsICode[offset] == (byte)TokenStream.LINE ||\r
74                              itsICode[offset] == (byte)TokenStream.BREAKPOINT))\r
75         {\r
76             itsICode[offset] = (byte) TokenStream.BREAKPOINT;\r
77             return true;\r
78         }\r
79         return false;\r
80     }\r
81     \r
82     public boolean removeBreakpoint(int line) {\r
83         int offset = getOffset(line);\r
84         if (offset != -1 && itsICode[offset] == (byte) TokenStream.BREAKPOINT)\r
85         {\r
86             itsICode[offset] = (byte) TokenStream.LINE;\r
87             return true;\r
88         }\r
89         return false;\r
90     }\r
91     \r
92     private int getOffset(int line) {\r
93         int offset = itsLineNumberTable.getInt(line, -1);\r
94         if (0 <= offset && offset <= itsICode.length) {\r
95             return offset;\r
96         }\r
97         return -1;\r
98     }    \r
99     \r
100     String itsName;\r
101     String itsSource;\r
102     String itsSourceFile;\r
103     boolean itsNeedsActivation;\r
104     boolean itsFromEvalCode;\r
105     boolean itsUseDynamicScope;\r
106     boolean itsCheckThis;\r
107     byte itsFunctionType;\r
108 \r
109     String[] itsStringTable;\r
110     int itsStringTableIndex;\r
111 \r
112     double[] itsNumberTable;\r
113     int itsNumberTableIndex;\r
114     \r
115     InterpretedFunction[] itsNestedFunctions;\r
116     \r
117     Object[] itsRegExpLiterals;\r
118 \r
119     byte[] itsICode;\r
120     int itsICodeTop;\r
121     \r
122     int itsMaxLocals;\r
123     int itsMaxArgs;\r
124     int itsMaxStack;\r
125     int itsMaxTryDepth;\r
126     \r
127     UintMap itsLineNumberTable;\r
128 \r
129     Object securityDomain;\r
130 }\r