KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > aspectj > compiler > base > ast > ShiftOpExpr


1 /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2  *
3  * This file is part of the compiler and core tools for the AspectJ(tm)
4  * programming language; see http://aspectj.org
5  *
6  * The contents of this file are subject to the Mozilla Public License
7  * Version 1.1 (the "License"); you may not use this file except in
8  * compliance with the License. You may obtain a copy of the License at
9  * either http://www.mozilla.org/MPL/ or http://aspectj.org/MPL/.
10  *
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
14  * License.
15  *
16  * The Original Code is AspectJ.
17  *
18  * The Initial Developer of the Original Code is Xerox Corporation. Portions
19  * created by Xerox Corporation are Copyright (C) 1999-2002 Xerox Corporation.
20  * All Rights Reserved.
21  *
22  * Contributor(s):
23  */

24
25 package org.aspectj.compiler.base.ast;
26
27 import org.aspectj.compiler.base.JavaCompiler;
28 import org.aspectj.compiler.base.CodeWriter;
29 import java.io.IOException JavaDoc;
30
31 import java.util.*;
32
33 import org.aspectj.compiler.base.bcg.CodeBuilder;
34 import org.aspectj.compiler.base.bcg.Label;
35
36 /**
37  * @grammar rand1 <op> rand2
38  */

39 public class ShiftOpExpr extends BinopExpr {
40
41     protected Type discoverType() {
42         Expr rand1 = getRand1();
43         Expr rand2 = getRand2();
44         Type ty1 = rand1.getType();
45         Type ty2 = rand2.getType();
46
47         if (ty1 instanceof IntegralType && ty2 instanceof IntegralType) {
48             return getTypeManager().unaryNumericPromotion(ty1);
49         } else {
50             showOperatorTypeError(op, ty1, ty2);
51             return getTypeManager().anyType;
52         }
53     }
54
55     protected Type getLiftType() {
56         return getType();
57     }
58
59     protected LiteralExpr halfFold(Type type, LiteralExpr lit1, LiteralExpr lit2) {
60         return type.foldShiftOp(getOp(), lit1, lit2);
61     }
62
63     // ------------------------------
64
// bcg
65

66     protected void cgValue(CodeBuilder cb) {
67         Type liftType = getLiftType();
68         getRand1().cgValue(cb, liftType);
69         getRand2().cgValue(cb, getTypeManager().intType);
70         liftType.emitShiftOp(cb, getOp());
71     }
72
73     protected void cgOp(CodeBuilder cb, Type ty) {
74         ty.emitShiftOp(cb, getOp());
75     }
76
77     //BEGIN: Generated from @child and @property
78

79     public ShiftOpExpr(SourceLocation location, Expr _rand1, String JavaDoc _op, Expr _rand2) {
80         super(location, _rand1, _op, _rand2);
81
82     }
83     protected ShiftOpExpr(SourceLocation source) {
84         super(source);
85     }
86
87     public ASTObject copyWalk(CopyWalker walker) {
88         ShiftOpExpr ret = new ShiftOpExpr(getSourceLocation());
89         ret.preCopy(walker, this);
90         if (rand1 != null) ret.setRand1( (Expr)walker.process(rand1) );
91         ret.op = op;
92         if (rand2 != null) ret.setRand2( (Expr)walker.process(rand2) );
93         return ret;
94     }
95
96
97     public String JavaDoc getDefaultDisplayName() {
98         return "ShiftOpExpr(op: "+op+")";
99     }
100
101     //END: Generated from @child and @property
102
}
103
Popular Tags