2003/05/12 05:10:30
[org.ibex.core.git] / src / org / mozilla / javascript / LabelTable.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-1999 Netscape Communications Corporation. All\r
19  * Rights Reserved.\r
20  *\r
21  * Contributor(s): \r
22  * Roger Lawrence\r
23  *\r
24  * Alternatively, the contents of this file may be used under the\r
25  * terms of the GNU Public License (the "GPL"), in which case the\r
26  * provisions of the GPL are applicable instead of those above.\r
27  * If you wish to allow use of your version of this file only\r
28  * under the terms of the GPL and not to allow others to use your\r
29  * version of this file under the NPL, indicate your decision by\r
30  * deleting the provisions above and replace them with the notice\r
31  * and other provisions required by the GPL.  If you do not delete\r
32  * the provisions above, a recipient may use your version of this\r
33  * file under either the NPL or the GPL.\r
34  */\r
35 \r
36 package org.mozilla.javascript;\r
37 \r
38 public class LabelTable {\r
39 \r
40     private static final boolean DEBUGLABELS = false;\r
41     \r
42     private static final int LabelTableSize = 32;\r
43     protected Label itsLabelTable[];\r
44     protected int itsLabelTableTop;\r
45 \r
46     public int acquireLabel()\r
47     {\r
48         if (itsLabelTable == null) {\r
49             itsLabelTable = new Label[LabelTableSize];\r
50             itsLabelTable[0] = new Label();\r
51             itsLabelTableTop = 1;\r
52             return 0x80000000;\r
53         }\r
54         else {\r
55             if (itsLabelTableTop == itsLabelTable.length) {\r
56                 Label oldTable[] = itsLabelTable;\r
57                 itsLabelTable = new Label[itsLabelTableTop * 2];\r
58                 System.arraycopy(oldTable, 0, itsLabelTable, 0, itsLabelTableTop);\r
59             }\r
60             itsLabelTable[itsLabelTableTop] = new Label();\r
61             int result = itsLabelTableTop++;\r
62             return result | 0x80000000;\r
63         }\r
64     }\r
65 \r
66     public int markLabel(int theLabel, int pc)\r
67     {\r
68         if (DEBUGLABELS) {\r
69             if ((theLabel & 0x80000000) != 0x80000000)\r
70                 throw new RuntimeException("Bad label, no biscuit");\r
71         }\r
72         theLabel &= 0x7FFFFFFF;\r
73         if (DEBUGLABELS) {\r
74             System.out.println("Marking label " + theLabel + " at " + pc);\r
75         }\r
76         itsLabelTable[theLabel].setPC((short)pc);\r
77         return theLabel | 0x80000000;\r
78     }\r
79 \r
80 }\r