Package org.allspice.bytecode.instructions

Examples of org.allspice.bytecode.instructions.LookupSwitch


    Mark two = new Mark() ;
    Mark three = new Mark() ;
    Mark others = new Mark() ;
    md = md.addInstructions(
        new Load(x),
        new LookupSwitch(new FIFO<CaseLabel>(new CaseLabel(3,three),new CaseLabel(1,one),new CaseLabel(2,two),new CaseLabel(null,others))),
        new Nop(one),new Const(1.0),new Return(TypeCode.DOUBLE),
        new Nop(two),new Const(2.0),new Return(TypeCode.DOUBLE),
        new Nop(three),new Const(3.0),new Return(TypeCode.DOUBLE),
        new Nop(others),new Const(0.0),new Return(TypeCode.DOUBLE)
        ) ;
View Full Code Here


      }
    }
    if (!deffound) {
      labels.add(new CaseLabel(null,theEnd)) ;
    }
    l.add(new LookupSwitch(labels)) ;
    for(Statement s: statements) {
      if (s instanceof CaseStatement) {
        CaseStatement cs = (CaseStatement)s ;
        Mark mark = marks.get(cs) ;
        l.add(new Nop(mark)) ;
View Full Code Here

TOP

Related Classes of org.allspice.bytecode.instructions.LookupSwitch

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.