com.alibaba.fastffi.llvm.MemoryBufferRef_cxx_0x2ff7597b Maven / Gradle / Ivy
The newest version!
package com.alibaba.fastffi.llvm;
import com.alibaba.fastffi.FFIForeignType;
import com.alibaba.fastffi.FFIPointerImpl;
import com.alibaba.fastffi.FFISynthetic;
import com.alibaba.fastffi.FFITypeFactory;
import java.lang.Object;
import java.lang.String;
import java.lang.UnsatisfiedLinkError;
@FFIForeignType("llvm::MemoryBufferRef")
@FFISynthetic("com.alibaba.fastffi.llvm.MemoryBufferRef")
public class MemoryBufferRef_cxx_0x2ff7597b extends FFIPointerImpl implements MemoryBufferRef {
public static final int SIZE;
public static final int HASH_SHIFT;
static {
try {
System.loadLibrary("llvm4jni");
} catch (UnsatisfiedLinkError e) {
System.load(FFITypeFactory.findNativeLibrary(MemoryBufferRef_cxx_0x2ff7597b.class, "llvm4jni"));
}
}
static {
SIZE = _elementSize$$$();
assert SIZE > 0;
HASH_SHIFT = 31 - Integer.numberOfLeadingZeros(1 + SIZE);
assert HASH_SHIFT > 0;
}
public MemoryBufferRef_cxx_0x2ff7597b(final long address) {
super(address);
}
private static final native int _elementSize$$$();
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
MemoryBufferRef_cxx_0x2ff7597b that = (MemoryBufferRef_cxx_0x2ff7597b) o;
return this.address == that.address;
}
public int hashCode() {
return (int) (address >> HASH_SHIFT);
}
public String toString() {
return getClass().getName() + "@" + Long.toHexString(address);
}
}