jdk/src/share/classes/java/nio/Direct-X-Buffer.java.template
author ohair
Tue, 28 Dec 2010 15:53:50 -0800
changeset 7668 d4a77089c587
parent 7025 6e002f9a2899
child 10325 b72c20cd583a
permissions -rw-r--r--
6962318: Update copyright year Reviewed-by: xdono
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
7668
d4a77089c587 6962318: Update copyright year
ohair
parents: 7025
diff changeset
     2
 * Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4115
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4115
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4115
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4115
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4115
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#warn This file is preprocessed before being compiled
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
package java.nio;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
7025
6e002f9a2899 6816049: (bf) MappedByteBuffer.force() method does not flush data correctly
alanb
parents: 6902
diff changeset
    30
import java.io.FileDescriptor;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import sun.misc.Cleaner;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import sun.misc.Unsafe;
6902
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 5506
diff changeset
    33
import sun.misc.VM;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import sun.nio.ch.DirectBuffer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
class Direct$Type$Buffer$RW$$BO$
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
#if[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    extends {#if[byte]?Mapped$Type$Buffer:$Type$Buffer}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
#else[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    extends Direct$Type$Buffer$BO$
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
#end[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    implements DirectBuffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
#if[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    // Cached unsafe-access object
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    protected static final Unsafe unsafe = Bits.unsafe();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
1151
4070cecdb99d 6570619: (bf) DirectByteBuffer.get/put(byte[]) does not scale well
alanb
parents: 1143
diff changeset
    51
    // Cached array base offset
4070cecdb99d 6570619: (bf) DirectByteBuffer.get/put(byte[]) does not scale well
alanb
parents: 1143
diff changeset
    52
    private static final long arrayBaseOffset = (long)unsafe.arrayBaseOffset($type$[].class);
4070cecdb99d 6570619: (bf) DirectByteBuffer.get/put(byte[]) does not scale well
alanb
parents: 1143
diff changeset
    53
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    // Cached unaligned-access capability
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    protected static final boolean unaligned = Bits.unaligned();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    // Base address, used in all indexing calculations
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    // NOTE: moved up to Buffer.java for speed in JNI GetDirectBufferAddress
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    //    protected long address;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    // If this buffer is a view of another buffer then we keep a reference to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    // that buffer so that its memory isn't freed before we're done with it
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    protected Object viewedBuffer = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    public Object viewedBuffer() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        return viewedBuffer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
#if[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    private static class Deallocator
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        implements Runnable
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        private static Unsafe unsafe = Unsafe.getUnsafe();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        private long address;
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
    78
        private long size;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        private int capacity;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
    81
        private Deallocator(long address, long size, int capacity) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
            assert (address != 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
            this.address = address;
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
    84
            this.size = size;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            this.capacity = capacity;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            if (address == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
                // Paranoia
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            unsafe.freeMemory(address);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            address = 0;
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
    95
            Bits.unreserveMemory(size, capacity);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    private final Cleaner cleaner;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    public Cleaner cleaner() { return cleaner; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
#else[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    public Cleaner cleaner() { return null; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
#end[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
#end[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
#if[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    // Primary constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    Direct$Type$Buffer$RW$(int cap) {                   // package-private
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
#if[rw]
7025
6e002f9a2899 6816049: (bf) MappedByteBuffer.force() method does not flush data correctly
alanb
parents: 6902
diff changeset
   118
        super(-1, 0, cap, cap);
6902
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 5506
diff changeset
   119
        boolean pa = VM.isDirectMemoryPageAligned();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        int ps = Bits.pageSize();
6902
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 5506
diff changeset
   121
        long size = Math.max(1L, (long)cap + (pa ? ps : 0));
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
   122
        Bits.reserveMemory(size, cap);
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
   123
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        long base = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        try {
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
   126
            base = unsafe.allocateMemory(size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        } catch (OutOfMemoryError x) {
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
   128
            Bits.unreserveMemory(size, cap);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
            throw x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        }
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
   131
        unsafe.setMemory(base, size, (byte) 0);
6902
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 5506
diff changeset
   132
        if (pa && (base % ps != 0)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            // Round up to page boundary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            address = base + ps - (base & (ps - 1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
            address = base;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        }
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
   138
        cleaner = Cleaner.create(this, new Deallocator(base, size, cap));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
#else[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        super(cap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
#end[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
#if[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    // Invoked only by JNI: NewDirectByteBuffer(void*, long)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    private Direct$Type$Buffer(long addr, int cap) {
7025
6e002f9a2899 6816049: (bf) MappedByteBuffer.force() method does not flush data correctly
alanb
parents: 6902
diff changeset
   149
        super(-1, 0, cap, cap);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        address = addr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        cleaner = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
#end[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    // For memory-mapped buffers -- invoked by FileChannelImpl via reflection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    //
7025
6e002f9a2899 6816049: (bf) MappedByteBuffer.force() method does not flush data correctly
alanb
parents: 6902
diff changeset
   158
    protected Direct$Type$Buffer$RW$(int cap, long addr,
6e002f9a2899 6816049: (bf) MappedByteBuffer.force() method does not flush data correctly
alanb
parents: 6902
diff changeset
   159
                                     FileDescriptor fd,
6e002f9a2899 6816049: (bf) MappedByteBuffer.force() method does not flush data correctly
alanb
parents: 6902
diff changeset
   160
                                     Runnable unmapper)
6e002f9a2899 6816049: (bf) MappedByteBuffer.force() method does not flush data correctly
alanb
parents: 6902
diff changeset
   161
    {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
#if[rw]
7025
6e002f9a2899 6816049: (bf) MappedByteBuffer.force() method does not flush data correctly
alanb
parents: 6902
diff changeset
   163
        super(-1, 0, cap, cap, fd);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        address = addr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        viewedBuffer = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        cleaner = Cleaner.create(this, unmapper);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
#else[rw]
7025
6e002f9a2899 6816049: (bf) MappedByteBuffer.force() method does not flush data correctly
alanb
parents: 6902
diff changeset
   168
        super(cap, addr, fd, unmapper);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
#end[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
#end[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    // For duplicates and slices
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    Direct$Type$Buffer$RW$$BO$(DirectBuffer db,         // package-private
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                               int mark, int pos, int lim, int cap,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
                               int off)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
#if[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        super(mark, pos, lim, cap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        address = db.address() + off;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        viewedBuffer = db;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
#if[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        cleaner = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
#end[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
#else[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        super(db, mark, pos, lim, cap, off);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
#end[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
    public $Type$Buffer slice() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        int pos = this.position();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        int lim = this.limit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        assert (pos <= lim);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        int rem = (pos <= lim ? lim - pos : 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        int off = (pos << $LG_BYTES_PER_VALUE$);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        assert (off >= 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        return new Direct$Type$Buffer$RW$$BO$(this, -1, 0, rem, rem, off);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    public $Type$Buffer duplicate() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        return new Direct$Type$Buffer$RW$$BO$(this,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
                                              this.markValue(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
                                              this.position(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
                                              this.limit(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
                                              this.capacity(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
                                              0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    public $Type$Buffer asReadOnlyBuffer() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
#if[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        return new Direct$Type$BufferR$BO$(this,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
                                           this.markValue(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
                                           this.position(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
                                           this.limit(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
                                           this.capacity(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
                                           0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
#else[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        return duplicate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
#end[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
#if[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
    public long address() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        return address;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    private long ix(int i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        return address + (i << $LG_BYTES_PER_VALUE$);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    public $type$ get() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        return $fromBits$($swap$(unsafe.get$Swaptype$(ix(nextGetIndex()))));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    public $type$ get(int i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        return $fromBits$($swap$(unsafe.get$Swaptype$(ix(checkIndex(i)))));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    public $Type$Buffer get($type$[] dst, int offset, int length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
#if[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        if ((length << $LG_BYTES_PER_VALUE$) > Bits.JNI_COPY_TO_ARRAY_THRESHOLD) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
            checkBounds(offset, length, dst.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
            int pos = position();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
            int lim = limit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
            assert (pos <= lim);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
            int rem = (pos <= lim ? lim - pos : 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
            if (length > rem)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
                throw new BufferUnderflowException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
1151
4070cecdb99d 6570619: (bf) DirectByteBuffer.get/put(byte[]) does not scale well
alanb
parents: 1143
diff changeset
   253
#if[!byte]
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
            if (order() != ByteOrder.nativeOrder())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
                Bits.copyTo$Memtype$Array(ix(pos), dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
                                          offset << $LG_BYTES_PER_VALUE$,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
                                          length << $LG_BYTES_PER_VALUE$);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
            else
1151
4070cecdb99d 6570619: (bf) DirectByteBuffer.get/put(byte[]) does not scale well
alanb
parents: 1143
diff changeset
   259
#end[!byte]
4070cecdb99d 6570619: (bf) DirectByteBuffer.get/put(byte[]) does not scale well
alanb
parents: 1143
diff changeset
   260
                Bits.copyToArray(ix(pos), dst, arrayBaseOffset,
4070cecdb99d 6570619: (bf) DirectByteBuffer.get/put(byte[]) does not scale well
alanb
parents: 1143
diff changeset
   261
                                 offset << $LG_BYTES_PER_VALUE$,
4070cecdb99d 6570619: (bf) DirectByteBuffer.get/put(byte[]) does not scale well
alanb
parents: 1143
diff changeset
   262
                                 length << $LG_BYTES_PER_VALUE$);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
            position(pos + length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
            super.get(dst, offset, length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
#else[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        throw new ReadOnlyBufferException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
#end[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
#end[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    public $Type$Buffer put($type$ x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
#if[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        unsafe.put$Swaptype$(ix(nextPutIndex()), $swap$($toBits$(x)));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
#else[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        throw new ReadOnlyBufferException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
#end[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
    public $Type$Buffer put(int i, $type$ x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
#if[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
        unsafe.put$Swaptype$(ix(checkIndex(i)), $swap$($toBits$(x)));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
#else[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        throw new ReadOnlyBufferException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
#end[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
    public $Type$Buffer put($Type$Buffer src) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
#if[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        if (src instanceof Direct$Type$Buffer$BO$) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
            if (src == this)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
                throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
            Direct$Type$Buffer$RW$$BO$ sb = (Direct$Type$Buffer$RW$$BO$)src;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
            int spos = sb.position();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
            int slim = sb.limit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            assert (spos <= slim);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
            int srem = (spos <= slim ? slim - spos : 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
            int pos = position();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
            int lim = limit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
            assert (pos <= lim);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
            int rem = (pos <= lim ? lim - pos : 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
            if (srem > rem)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
                throw new BufferOverflowException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
            unsafe.copyMemory(sb.ix(spos), ix(pos), srem << $LG_BYTES_PER_VALUE$);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
            sb.position(spos + srem);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
            position(pos + srem);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        } else if (src.hb != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
            int spos = src.position();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
            int slim = src.limit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
            assert (spos <= slim);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
            int srem = (spos <= slim ? slim - spos : 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
            put(src.hb, src.offset + spos, srem);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
            src.position(spos + srem);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
            super.put(src);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
#else[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
        throw new ReadOnlyBufferException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
#end[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    public $Type$Buffer put($type$[] src, int offset, int length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
#if[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        if ((length << $LG_BYTES_PER_VALUE$) > Bits.JNI_COPY_FROM_ARRAY_THRESHOLD) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
            checkBounds(offset, length, src.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
            int pos = position();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
            int lim = limit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
            assert (pos <= lim);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
            int rem = (pos <= lim ? lim - pos : 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
            if (length > rem)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
                throw new BufferOverflowException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
1151
4070cecdb99d 6570619: (bf) DirectByteBuffer.get/put(byte[]) does not scale well
alanb
parents: 1143
diff changeset
   345
#if[!byte]
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
            if (order() != ByteOrder.nativeOrder())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
                Bits.copyFrom$Memtype$Array(src, offset << $LG_BYTES_PER_VALUE$,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
                                            ix(pos), length << $LG_BYTES_PER_VALUE$);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
            else
1151
4070cecdb99d 6570619: (bf) DirectByteBuffer.get/put(byte[]) does not scale well
alanb
parents: 1143
diff changeset
   350
#end[!byte]
4070cecdb99d 6570619: (bf) DirectByteBuffer.get/put(byte[]) does not scale well
alanb
parents: 1143
diff changeset
   351
                Bits.copyFromArray(src, arrayBaseOffset, offset << $LG_BYTES_PER_VALUE$,
4070cecdb99d 6570619: (bf) DirectByteBuffer.get/put(byte[]) does not scale well
alanb
parents: 1143
diff changeset
   352
                                   ix(pos), length << $LG_BYTES_PER_VALUE$);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
            position(pos + length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
            super.put(src, offset, length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
#else[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        throw new ReadOnlyBufferException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
#end[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
    public $Type$Buffer compact() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
#if[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        int pos = position();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
        int lim = limit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        assert (pos <= lim);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        int rem = (pos <= lim ? lim - pos : 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        unsafe.copyMemory(ix(pos), ix(0), rem << $LG_BYTES_PER_VALUE$);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
        position(rem);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
        limit(capacity());
1634
3871c2046043 6593946: (bf) X-Buffer.compact() does not discard mark as specified
alanb
parents: 1247
diff changeset
   373
        discardMark();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
#else[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
        throw new ReadOnlyBufferException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
#end[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
    public boolean isDirect() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    public boolean isReadOnly() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
        return {#if[rw]?false:true};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
#if[char]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    public String toString(int start, int end) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        if ((end > limit()) || (start > end))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
            throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
            int len = end - start;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
            char[] ca = new char[len];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
            CharBuffer cb = CharBuffer.wrap(ca);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
            CharBuffer db = this.duplicate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
            db.position(start);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
            db.limit(end);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
            cb.put(db);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
            return new String(ca);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        } catch (StringIndexOutOfBoundsException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
            throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
    // --- Methods to support CharSequence ---
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
1224
8c1bc7c5dd00 6733145: (bf) CharBuffer.subSequence can be updated to take advantage of covariant returns
martin
parents: 1151
diff changeset
   411
    public CharBuffer subSequence(int start, int end) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        int pos = position();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        int lim = limit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        assert (pos <= lim);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        pos = (pos <= lim ? pos : lim);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        int len = lim - pos;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
        if ((start < 0) || (end > len) || (start > end))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
            throw new IndexOutOfBoundsException();
2593
76032557be03 6795561: (bf) CharBuffer.subSequence() uses wrong capacity value for new buffer
alanb
parents: 1634
diff changeset
   420
        return new DirectCharBuffer$RW$$BO$(this,
76032557be03 6795561: (bf) CharBuffer.subSequence() uses wrong capacity value for new buffer
alanb
parents: 1634
diff changeset
   421
                                            -1,
76032557be03 6795561: (bf) CharBuffer.subSequence() uses wrong capacity value for new buffer
alanb
parents: 1634
diff changeset
   422
                                            pos + start,
76032557be03 6795561: (bf) CharBuffer.subSequence() uses wrong capacity value for new buffer
alanb
parents: 1634
diff changeset
   423
                                            pos + end,
76032557be03 6795561: (bf) CharBuffer.subSequence() uses wrong capacity value for new buffer
alanb
parents: 1634
diff changeset
   424
                                            capacity(),
76032557be03 6795561: (bf) CharBuffer.subSequence() uses wrong capacity value for new buffer
alanb
parents: 1634
diff changeset
   425
                                            offset);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
#end[char]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
#if[!byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    public ByteOrder order() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
#if[boS]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        return ((ByteOrder.nativeOrder() == ByteOrder.BIG_ENDIAN)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
                ? ByteOrder.LITTLE_ENDIAN : ByteOrder.BIG_ENDIAN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
#end[boS]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
#if[boU]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
        return ((ByteOrder.nativeOrder() != ByteOrder.BIG_ENDIAN)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
                ? ByteOrder.LITTLE_ENDIAN : ByteOrder.BIG_ENDIAN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
#end[boU]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
#end[!byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
#if[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
    byte _get(int i) {                          // package-private
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
        return unsafe.getByte(address + i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
    void _put(int i, byte b) {                  // package-private
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
#if[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
        unsafe.putByte(address + i, b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
#else[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        throw new ReadOnlyBufferException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
#end[rw]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
    // #BIN
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
    // Binary-data access methods  for short, char, int, long, float,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
    // and double will be inserted here
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
#end[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
}