|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--gnu.jel.OP | +--gnu.jel.OPunary
A tree node, representing unary operation.
Field Summary | |
int |
code
code of this operation |
Fields inherited from class gnu.jel.OP |
chi, resID, resType, specialTypes, unwrapType |
Constructor Summary | |
OPunary(java.util.Stack paramOPs,
int code)
Constructs a new unary operation. |
|
OPunary(java.util.Stack paramOPs,
int targetID,
java.lang.Class targetClass,
boolean allownarrowing)
Creates conversion operation to the given class. |
Method Summary | |
void |
compile(ClassFile cf)
Called to generate the code implementing this OP. |
java.lang.Object |
eval()
Called to evaluate this node and all its sub-nodes. |
Methods inherited from class gnu.jel.OP |
isWidening, isWidening, typeID, typeIDObject |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public int code
Constructor Detail |
public OPunary(java.util.Stack paramOPs, int code) throws CompilationException
Codes are following:
0 -- negation (applicable to anything except boolean) 1 -- bitwise not (applicable to all integral types) 2 -- logical not (applicable to booleans only) 3 -- return the type in stack
paramOPs
- stack holding the operandscode
- operation codepublic OPunary(java.util.Stack paramOPs, int targetID, java.lang.Class targetClass, boolean allownarrowing) throws CompilationException
paramOPs
- stack holding the operandstargetID
- ID of primitive type to convert to.targetClass
- the class to convert to, in case cldID=8allownarrowing
- if narrowing conversions are allowed.Method Detail |
public void compile(ClassFile cf)
OP
compile
in class OP
cf
- class file with a new open method to write the code into.public java.lang.Object eval() throws java.lang.Exception
OP
Upon success this node is to be replaced by the constant node holding the returned object.
eval
in class OP
java.lang.Exception
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |