2015-07-28 20:36:41 +08:00
|
|
|
/*
|
|
|
|
|
* X86Options
|
|
|
|
|
*
|
|
|
|
|
* Author: Lasse Collin <lasse.collin@tukaani.org>
|
|
|
|
|
*
|
|
|
|
|
* This file has been put into the public domain.
|
|
|
|
|
* You can do whatever you want with this file.
|
|
|
|
|
*/
|
|
|
|
|
package org.tukaani.xz;
|
|
|
|
|
|
|
|
|
|
import java.io.InputStream;
|
|
|
|
|
import org.tukaani.xz.simple.X86;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* BCJ filter for x86 (32-bit and 64-bit) instructions.
|
|
|
|
|
*/
|
|
|
|
|
public class X86Options extends BCJOptions {
|
2015-11-17 12:51:04 +08:00
|
|
|
|
2015-07-28 20:36:41 +08:00
|
|
|
private static final int ALIGNMENT = 1;
|
|
|
|
|
|
|
|
|
|
public X86Options() {
|
|
|
|
|
super(ALIGNMENT);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public FinishableOutputStream getOutputStream(FinishableOutputStream out) {
|
|
|
|
|
return new SimpleOutputStream(out, new X86(true, startOffset));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public InputStream getInputStream(InputStream in) {
|
|
|
|
|
return new SimpleInputStream(in, new X86(false, startOffset));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FilterEncoder getFilterEncoder() {
|
|
|
|
|
return new BCJEncoder(this, BCJCoder.X86_FILTER_ID);
|
|
|
|
|
}
|
|
|
|
|
}
|