Package erjang.beam.repr.Operands

Examples of erjang.beam.repr.Operands.BitString


      case bs_match_string:
      {
        Label label = readLabel();
        DestinationOperand dest = readDestination();
        BitString bin = readBitstringRef();
        return new Insn.LDBi(opcode, label, dest, bin);
      }

      case bs_put_utf8:
      case bs_put_utf16:
View Full Code Here


    }

    public BitString readBitstringRef() throws IOException {
    int bits  = readCodeInteger();
    int start = readCodeInteger();
    return new BitString(bitstring(start,bits));
    }
View Full Code Here

TOP

Related Classes of erjang.beam.repr.Operands.BitString

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.