blob: 9bf1acb6d851e1cd342cb0ce1b5ccff6db5c582d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package libcore.io;
import java.io.FileDescriptor;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
/**
* Unsafe access to memory.
*/
public final class Memory {
private Memory() { }
/**
* Used to optimize nio heap buffer bulk get operations. 'dst' must be a primitive array.
* 'dstOffset' is measured in units of 'sizeofElements' bytes.
*/
public static native void unsafeBulkGet(Object dst, int dstOffset, int byteCount,
byte[] src, int srcOffset, int sizeofElements, boolean swap);
/**
* Used to optimize nio heap buffer bulk put operations. 'src' must be a primitive array.
* 'srcOffset' is measured in units of 'sizeofElements' bytes.
*/
public static native void unsafeBulkPut(byte[] dst, int dstOffset, int byteCount,
Object src, int srcOffset, int sizeofElements, boolean swap);
public static int peekInt(byte[] src, int offset, ByteOrder order) {
if (order == ByteOrder.BIG_ENDIAN) {
return (((src[offset++] & 0xff) << 24) |
((src[offset++] & 0xff) << 16) |
((src[offset++] & 0xff) << 8) |
((src[offset ] & 0xff) << 0));
} else {
return (((src[offset++] & 0xff) << 0) |
((src[offset++] & 0xff) << 8) |
((src[offset++] & 0xff) << 16) |
((src[offset ] & 0xff) << 24));
}
}
public static long peekLong(byte[] src, int offset, ByteOrder order) {
if (order == ByteOrder.BIG_ENDIAN) {
int h = ((src[offset++] & 0xff) << 24) |
((src[offset++] & 0xff) << 16) |
((src[offset++] & 0xff) << 8) |
((src[offset++] & 0xff) << 0);
int l = ((src[offset++] & 0xff) << 24) |
((src[offset++] & 0xff) << 16) |
((src[offset++] & 0xff) << 8) |
((src[offset ] & 0xff) << 0);
return (((long) h) << 32L) | ((long) l) & 0xffffffffL;
} else {
int l = ((src[offset++] & 0xff) << 0) |
((src[offset++] & 0xff) << 8) |
((src[offset++] & 0xff) << 16) |
((src[offset++] & 0xff) << 24);
int h = ((src[offset++] & 0xff) << 0) |
((src[offset++] & 0xff) << 8) |
((src[offset++] & 0xff) << 16) |
((src[offset ] & 0xff) << 24);
return (((long) h) << 32L) | ((long) l) & 0xffffffffL;
}
}
public static short peekShort(byte[] src, int offset, ByteOrder order) {
if (order == ByteOrder.BIG_ENDIAN) {
return (short) ((src[offset] << 8) | (src[offset + 1] & 0xff));
} else {
return (short) ((src[offset + 1] << 8) | (src[offset] & 0xff));
}
}
public static void pokeInt(byte[] dst, int offset, int value, ByteOrder order) {
if (order == ByteOrder.BIG_ENDIAN) {
dst[offset++] = (byte) ((value >> 24) & 0xff);
dst[offset++] = (byte) ((value >> 16) & 0xff);
dst[offset++] = (byte) ((value >> 8) & 0xff);
dst[offset ] = (byte) ((value >> 0) & 0xff);
} else {
dst[offset++] = (byte) ((value >> 0) & 0xff);
dst[offset++] = (byte) ((value >> 8) & 0xff);
dst[offset++] = (byte) ((value >> 16) & 0xff);
dst[offset ] = (byte) ((value >> 24) & 0xff);
}
}
public static void pokeLong(byte[] dst, int offset, long value, ByteOrder order) {
if (order == ByteOrder.BIG_ENDIAN) {
int i = (int) (value >> 32);
dst[offset++] = (byte) ((i >> 24) & 0xff);
dst[offset++] = (byte) ((i >> 16) & 0xff);
dst[offset++] = (byte) ((i >> 8) & 0xff);
dst[offset++] = (byte) ((i >> 0) & 0xff);
i = (int) value;
dst[offset++] = (byte) ((i >> 24) & 0xff);
dst[offset++] = (byte) ((i >> 16) & 0xff);
dst[offset++] = (byte) ((i >> 8) & 0xff);
dst[offset ] = (byte) ((i >> 0) & 0xff);
} else {
int i = (int) value;
dst[offset++] = (byte) ((i >> 0) & 0xff);
dst[offset++] = (byte) ((i >> 8) & 0xff);
dst[offset++] = (byte) ((i >> 16) & 0xff);
dst[offset++] = (byte) ((i >> 24) & 0xff);
i = (int) (value >> 32);
dst[offset++] = (byte) ((i >> 0) & 0xff);
dst[offset++] = (byte) ((i >> 8) & 0xff);
dst[offset++] = (byte) ((i >> 16) & 0xff);
dst[offset ] = (byte) ((i >> 24) & 0xff);
}
}
public static void pokeShort(byte[] dst, int offset, short value, ByteOrder order) {
if (order == ByteOrder.BIG_ENDIAN) {
dst[offset++] = (byte) ((value >> 8) & 0xff);
dst[offset ] = (byte) ((value >> 0) & 0xff);
} else {
dst[offset++] = (byte) ((value >> 0) & 0xff);
dst[offset ] = (byte) ((value >> 8) & 0xff);
}
}
/**
* Copies 'byteCount' bytes from the source to the destination. The objects are either
* instances of DirectByteBuffer or byte[]. The offsets in the byte[] case must include
* the Buffer.arrayOffset if the array came from a Buffer.array call. We could make this
* private and provide the four type-safe variants, but then ByteBuffer.put(ByteBuffer)
* would need to work out which to call based on whether the source and destination buffers
* are direct or not.
*
* @hide make type-safe before making public?
*/
public static native void memmove(Object dstObject, int dstOffset, Object srcObject, int srcOffset, long byteCount);
public static native byte peekByte(int address);
public static native int peekInt(int address, boolean swap);
public static native long peekLong(int address, boolean swap);
public static native short peekShort(int address, boolean swap);
public static native void peekByteArray(int address, byte[] dst, int dstOffset, int byteCount);
public static native void peekCharArray(int address, char[] dst, int dstOffset, int charCount, boolean swap);
public static native void peekDoubleArray(int address, double[] dst, int dstOffset, int doubleCount, boolean swap);
public static native void peekFloatArray(int address, float[] dst, int dstOffset, int floatCount, boolean swap);
public static native void peekIntArray(int address, int[] dst, int dstOffset, int intCount, boolean swap);
public static native void peekLongArray(int address, long[] dst, int dstOffset, int longCount, boolean swap);
public static native void peekShortArray(int address, short[] dst, int dstOffset, int shortCount, boolean swap);
public static native void pokeByte(int address, byte value);
public static native void pokeInt(int address, int value, boolean swap);
public static native void pokeLong(int address, long value, boolean swap);
public static native void pokeShort(int address, short value, boolean swap);
public static native void pokeByteArray(int address, byte[] src, int offset, int count);
public static native void pokeCharArray(int address, char[] src, int offset, int count, boolean swap);
public static native void pokeDoubleArray(int address, double[] src, int offset, int count, boolean swap);
public static native void pokeFloatArray(int address, float[] src, int offset, int count, boolean swap);
public static native void pokeIntArray(int address, int[] src, int offset, int count, boolean swap);
public static native void pokeLongArray(int address, long[] src, int offset, int count, boolean swap);
public static native void pokeShortArray(int address, short[] src, int offset, int count, boolean swap);
}