~ubuntu-branches/ubuntu/karmic/rhino/karmic

« back to all changes in this revision

Viewing changes to src/org/mozilla/javascript/Label.java

  • Committer: Bazaar Package Importer
  • Author(s): Jerry Haltom
  • Date: 2005-03-19 16:56:07 UTC
  • mto: (11.1.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20050319165607-geu3j3fnqlkpqkh1
Tags: upstream-1.6.R1
ImportĀ upstreamĀ versionĀ 1.6.R1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2
 
 *
3
 
 * The contents of this file are subject to the Netscape Public
4
 
 * License Version 1.1 (the "License"); you may not use this file
5
 
 * except in compliance with the License. You may obtain a copy of
6
 
 * the License at http://www.mozilla.org/NPL/
7
 
 *
8
 
 * Software distributed under the License is distributed on an "AS
9
 
 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express oqr
10
 
 * implied. See the License for the specific language governing
11
 
 * rights and limitations under the License.
12
 
 *
13
 
 * The Original Code is Rhino code, released
14
 
 * May 6, 1999.
15
 
 *
16
 
 * The Initial Developer of the Original Code is Netscape
17
 
 * Communications Corporation.  Portions created by Netscape are
18
 
 * Copyright (C) 1997-1999 Netscape Communications Corporation. All
19
 
 * Rights Reserved.
20
 
 *
21
 
 * Contributor(s): 
22
 
 * Roger Lawrence
23
 
 *
24
 
 * Alternatively, the contents of this file may be used under the
25
 
 * terms of the GNU Public License (the "GPL"), in which case the
26
 
 * provisions of the GPL are applicable instead of those above.
27
 
 * If you wish to allow use of your version of this file only
28
 
 * under the terms of the GPL and not to allow others to use your
29
 
 * version of this file under the NPL, indicate your decision by
30
 
 * deleting the provisions above and replace them with the notice
31
 
 * and other provisions required by the GPL.  If you do not delete
32
 
 * the provisions above, a recipient may use your version of this
33
 
 * file under either the NPL or the GPL.
34
 
 */
35
 
 
36
 
package org.mozilla.javascript;
37
 
 
38
 
public class Label {
39
 
    
40
 
    private static final int FIXUPTABLE_SIZE = 8;
41
 
 
42
 
    private static final boolean DEBUG = true;
43
 
 
44
 
    public Label()
45
 
    {
46
 
        itsPC = -1;
47
 
    }
48
 
 
49
 
    public short getPC()
50
 
    {
51
 
        return itsPC;
52
 
    }
53
 
    
54
 
    public void fixGotos(byte theCodeBuffer[])
55
 
    {
56
 
        if (DEBUG) {
57
 
            if ((itsPC == -1) && (itsFixupTable != null))
58
 
                throw new RuntimeException("Unlocated label");
59
 
        }
60
 
        if (itsFixupTable != null) {
61
 
            for (int i = 0; i < itsFixupTableTop; i++) {
62
 
                int fixupSite = itsFixupTable[i];
63
 
                // -1 to get delta from instruction start
64
 
                short offset = (short)(itsPC - (fixupSite - 1));
65
 
                theCodeBuffer[fixupSite++] = (byte)(offset >> 8);
66
 
                theCodeBuffer[fixupSite] = (byte)offset;
67
 
            }
68
 
        }
69
 
        itsFixupTable = null;
70
 
    }
71
 
 
72
 
    public void setPC(short thePC)
73
 
    {
74
 
        if (DEBUG) {
75
 
            if ((itsPC != -1) && (itsPC != thePC))
76
 
                throw new RuntimeException("Duplicate label");
77
 
        }
78
 
        itsPC = thePC;
79
 
    }
80
 
 
81
 
    public void addFixup(int fixupSite)
82
 
    {
83
 
        if (itsFixupTable == null) {
84
 
            itsFixupTableTop = 1;
85
 
            itsFixupTable = new int[FIXUPTABLE_SIZE];
86
 
            itsFixupTable[0] = fixupSite;            
87
 
        }
88
 
        else {
89
 
            if (itsFixupTableTop == itsFixupTable.length) {
90
 
                int oldLength = itsFixupTable.length;
91
 
                int newTable[] = new int[oldLength + FIXUPTABLE_SIZE];
92
 
                System.arraycopy(itsFixupTable, 0, newTable, 0, oldLength);
93
 
                itsFixupTable = newTable;
94
 
            }
95
 
            itsFixupTable[itsFixupTableTop++] = fixupSite;            
96
 
        }
97
 
    }
98
 
 
99
 
    private short itsPC;
100
 
    private int itsFixupTable[];
101
 
    private int itsFixupTableTop;
102
 
 
103
 
}
104