JavaPatternMatching/src/de/dhbwstuttgart/syntaxtree/statement/LongLiteral.java

181 lines
5.5 KiB
Java
Raw Normal View History

2013-10-18 11:33:46 +00:00
// ino.module.IntLiteral.8635.package
2014-09-02 08:33:54 +00:00
package de.dhbwstuttgart.syntaxtree.statement;
2013-10-18 11:33:46 +00:00
// ino.end
// ino.module.IntLiteral.8635.import
import java.util.Hashtable;
import de.dhbwstuttgart.typeinference.Menge;
2013-10-18 11:33:46 +00:00
2014-10-09 10:01:16 +00:00
import de.dhbwstuttgart.logger.Logger;
2013-10-18 11:33:46 +00:00
2014-09-04 14:35:44 +00:00
import de.dhbwstuttgart.bytecode.ClassFile;
import de.dhbwstuttgart.bytecode.CodeAttribute;
import de.dhbwstuttgart.bytecode.JVMCode;
import de.dhbwstuttgart.myexception.CTypeReconstructionException;
import de.dhbwstuttgart.myexception.JVMCodeException;
2014-09-02 08:33:54 +00:00
import de.dhbwstuttgart.syntaxtree.Class;
2014-09-04 14:35:44 +00:00
import de.dhbwstuttgart.syntaxtree.SyntaxTreeNode;
2014-09-02 08:33:54 +00:00
import de.dhbwstuttgart.syntaxtree.type.GenericTypeVar;
import de.dhbwstuttgart.syntaxtree.type.IntegerType;
import de.dhbwstuttgart.syntaxtree.type.LongType;
import de.dhbwstuttgart.syntaxtree.type.RefType;
import de.dhbwstuttgart.syntaxtree.type.Type;
import de.dhbwstuttgart.typeinference.ConstraintsSet;
import de.dhbwstuttgart.typeinference.JavaCodeResult;
import de.dhbwstuttgart.typeinference.ResultSet;
import de.dhbwstuttgart.typeinference.assumptions.TypeAssumptions;
import de.dhbwstuttgart.typeinference.unify.CSubstitutionSet;
2013-10-18 11:33:46 +00:00
// ino.class.IntLiteral.25447.declaration
public class LongLiteral extends Literal
// ino.end
// ino.class.IntLiteral.25447.body
{
// ino.attribute.Int.25451.declaration
private long Long;
// ino.end
// ino.attribute.parserlog.25454.declaration
protected static Logger parserlog = Logger.getLogger("parser");
// ino.end
// ino.method.IntLiteral.25457.definition
public LongLiteral()
// ino.end
// ino.method.IntLiteral.25457.body
{
super(-1,-1);
this.setType(new LongType(this));
2013-10-18 11:33:46 +00:00
}
// ino.end
// ino.method.set_Int.25460.definition
public void set_Long(long i)
// ino.end
// ino.method.set_Int.25460.body
{
this.Long = i;
}
// ino.end
// ino.method.get_Int.25463.definition
public long get_Long()
// ino.end
// ino.method.get_Int.25463.body
{
return Long;
}
// ino.end
2014-11-04 12:47:05 +00:00
/*
2013-10-18 11:33:46 +00:00
// ino.method.sc_check.25466.definition
public void sc_check(Menge<Class> classname, Hashtable ch, Hashtable<String, String> bh, boolean ext, Hashtable parach, Hashtable<String, Hashtable> parabh)
2013-10-18 11:33:46 +00:00
// ino.end
// ino.method.sc_check.25466.body
{
2015-05-12 12:57:12 +00:00
parserlog.debug("SC -> Semantik-Check f�r LongLiteral wurde aufgerufen --> nichts zu tun!");
2013-10-18 11:33:46 +00:00
}
// ino.end
2014-11-04 12:47:05 +00:00
*/
2013-10-18 11:33:46 +00:00
// ino.method.get_Name.25469.definition
public String get_Name()
// ino.end
// ino.method.get_Name.25469.body
{
return null;
}
// ino.end
// ino.method.codegen.25472.definition
public void codegen(ClassFile classfile, CodeAttribute code, Menge paralist)
2013-10-18 11:33:46 +00:00
throws JVMCodeException
// ino.end
// ino.method.codegen.25472.body
{
/*if (Int >= 0 && Int <= 5) // Kleine Werte lassen sich direkt realisieren
code.add_code(JVMCode.nconst_n("int", Int));
else if (Int >= -128 && Int <= 127) { // Aenderung des Codes fuer etwas groessere Werte
code.add_code(JVMCode.bipush);
code.add_code_byte((byte) Int);
} else if (Int >= -32768 && Int <= 32767) { // Aenderung des Codes fuer groessere Werte
code.add_code(JVMCode.sipush);
code.add_code_short((short) Int);
} else { // Ablage als Konstante
int index = classfile.add_CONSTANT_Integer_info(Int);
if (index < 256) {
code.add_code(JVMCode.ldc);
code.add_code_byte((byte) index);
} else {
code.add_code(JVMCode.ldc_w);
code.add_code_short((short) index);
}
}
// Auto-Boxing: Da int nicht so nicht weiterverwendet werden kann,
// in Integer umwandeln.
if (!getPrimitiveFlag()) {
code.add_code(JVMCode.invokestatic);
code.add_code_short(classfile.add_method_ref("java/lang/Integer", "valueOf", "(I)Ljava/lang/Integer;"));
}*/
throw new JVMCodeException("Bytecode nicht implementiert");
}
// ino.end
// ino.method.ConstantCodegen.25475.definition
public short ConstantCodegen(ClassFile classfile)
throws JVMCodeException
// ino.end
// ino.method.ConstantCodegen.25475.body
{
//return (short) classfile.add_CONSTANT_Integer_info(get_Int());
throw new JVMCodeException("Bytecode nicht implementiert");
}
// ino.end
// ino.method.toString.25484.defdescription type=javadoc
/**
2015-05-12 12:57:12 +00:00
* <br/>Author: Martin Pl�micke
2013-10-18 11:33:46 +00:00
* @return
*/
// ino.end
// ino.method.toString.25484.definition
public String toString()
// ino.end
// ino.method.toString.25484.body
{
return getType().toString() + " " + Long;
2013-10-18 11:33:46 +00:00
}
// ino.end
// ino.method.wandleRefTypeAttributes2GenericAttributes.25487.definition
public void wandleRefTypeAttributes2GenericAttributes(Menge<Type> paralist, Menge<GenericTypeVar> genericMethodParameters)
2013-10-18 11:33:46 +00:00
// ino.end
// ino.method.wandleRefTypeAttributes2GenericAttributes.25487.body
{
}
// ino.end
@Override
public ConstraintsSet TYPEExpr(TypeAssumptions assumptions) {
// TODO Auto-generated method stub
return null;
}
@Override
public JavaCodeResult printJavaCode(ResultSet resultSet) {
// TODO Auto-generated method stub
return null;
}
2014-02-22 03:58:49 +00:00
@Override
public Menge<SyntaxTreeNode> getChildren() {
Menge<SyntaxTreeNode> ret = new Menge<SyntaxTreeNode>();
2014-02-22 03:58:49 +00:00
return ret;
}
2013-10-18 11:33:46 +00:00
}
// ino.end