All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testifyproject.tukaani.xz.simple.ARMThumb Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
/*
 * BCJ filter for little endian ARM-Thumb instructions
 *
 * Authors: Lasse Collin 
 *          Igor Pavlov 
 *
 * This file has been put into the public domain.
 * You can do whatever you want with this file.
 */

package org.testifyproject.tukaani.xz.simple;

public final class ARMThumb implements SimpleFilter {
    private final boolean isEncoder;
    private int pos;

    public ARMThumb(boolean isEncoder, int startPos) {
        this.isEncoder = isEncoder;
        pos = startPos + 4;
    }

    public int code(byte[] buf, int off, int len) {
        int end = off + len - 4;
        int i;

        for (i = off; i <= end; i += 2) {
            if ((buf[i + 1] & 0xF8) == 0xF0 && (buf[i + 3] & 0xF8) == 0xF8) {
                int src = ((buf[i + 1] & 0x07) << 19)
                          | ((buf[i] & 0xFF) << 11)
                          | ((buf[i + 3] & 0x07) << 8)
                          | (buf[i + 2] & 0xFF);
                src <<= 1;

                int org.testifyproject.testifyprojectst;
                if (isEncoder)
                    org.testifyproject.testifyprojectst = src + (pos + i - off);
                else
                    org.testifyproject.testifyprojectst = src - (pos + i - off);

                org.testifyproject.testifyprojectst >>>= 1;
                buf[i + 1] = (byte)(0xF0 | ((org.testifyproject.testifyprojectst >>> 19) & 0x07));
                buf[i] = (byte)(org.testifyproject.testifyprojectst >>> 11);
                buf[i + 3] = (byte)(0xF8 | ((org.testifyproject.testifyprojectst >>> 8) & 0x07));
                buf[i + 2] = (byte)org.testifyproject.testifyprojectst;
                i += 2;
            }
        }

        i -= off;
        pos += i;
        return i;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy