35
35
import sun .misc .Unsafe ;
36
36
37
37
import jdk .incubator .foreign .MemorySegment ;
38
+ import java .nio .ByteBuffer ;
38
39
import java .util .concurrent .TimeUnit ;
39
40
40
41
import static jdk .incubator .foreign .MemoryLayouts .JAVA_INT ;
@@ -60,6 +61,36 @@ public class BulkOps {
60
61
static final MemorySegment bytesSegment = MemorySegment .ofArray (bytes );
61
62
static final int UNSAFE_INT_OFFSET = unsafe .arrayBaseOffset (int [].class );
62
63
64
+ // large(ish) segments/buffers with same content, 0, for mismatch, non-multiple-of-8 sized
65
+ static final int SIZE_WITH_TAIL = (1024 * 1024 ) + 7 ;
66
+ static final MemorySegment mismatchSegmentLarge1 = MemorySegment .allocateNative (SIZE_WITH_TAIL );
67
+ static final MemorySegment mismatchSegmentLarge2 = MemorySegment .allocateNative (SIZE_WITH_TAIL );
68
+ static final ByteBuffer mismatchBufferLarge1 = ByteBuffer .allocateDirect (SIZE_WITH_TAIL );
69
+ static final ByteBuffer mismatchBufferLarge2 = ByteBuffer .allocateDirect (SIZE_WITH_TAIL );
70
+
71
+ // mismatch at first byte
72
+ static final MemorySegment mismatchSegmentSmall1 = MemorySegment .allocateNative (7 );
73
+ static final MemorySegment mismatchSegmentSmall2 = MemorySegment .allocateNative (7 );
74
+ static final ByteBuffer mismatchBufferSmall1 = ByteBuffer .allocateDirect (7 );
75
+ static final ByteBuffer mismatchBufferSmall2 = ByteBuffer .allocateDirect (7 );
76
+ static {
77
+ mismatchSegmentSmall1 .fill ((byte ) 0xFF );
78
+ mismatchBufferSmall1 .put ((byte ) 0xFF ).clear ();
79
+ // verify expected mismatch indices
80
+ long si = mismatchSegmentLarge1 .mismatch (mismatchSegmentLarge2 );
81
+ if (si != -1 )
82
+ throw new AssertionError ("Unexpected mismatch index:" + si );
83
+ int bi = mismatchBufferLarge1 .mismatch (mismatchBufferLarge2 );
84
+ if (bi != -1 )
85
+ throw new AssertionError ("Unexpected mismatch index:" + bi );
86
+ si = mismatchSegmentSmall1 .mismatch (mismatchSegmentSmall2 );
87
+ if (si != 0 )
88
+ throw new AssertionError ("Unexpected mismatch index:" + si );
89
+ bi = mismatchBufferSmall1 .mismatch (mismatchBufferSmall2 );
90
+ if (bi != 0 )
91
+ throw new AssertionError ("Unexpected mismatch index:" + bi );
92
+ }
93
+
63
94
static {
64
95
for (int i = 0 ; i < bytes .length ; i ++) {
65
96
bytes [i ] = i ;
@@ -89,4 +120,28 @@ public void unsafe_copy() {
89
120
public void segment_copy () {
90
121
segment .copyFrom (bytesSegment );
91
122
}
123
+
124
+ @ Benchmark
125
+ @ OutputTimeUnit (TimeUnit .NANOSECONDS )
126
+ public long mismatch_large_segment () {
127
+ return mismatchSegmentLarge1 .mismatch (mismatchSegmentLarge2 );
128
+ }
129
+
130
+ @ Benchmark
131
+ @ OutputTimeUnit (TimeUnit .NANOSECONDS )
132
+ public int mismatch_large_bytebuffer () {
133
+ return mismatchBufferLarge1 .mismatch (mismatchBufferLarge2 );
134
+ }
135
+
136
+ @ Benchmark
137
+ @ OutputTimeUnit (TimeUnit .NANOSECONDS )
138
+ public long mismatch_small_segment () {
139
+ return mismatchSegmentSmall1 .mismatch (mismatchSegmentSmall2 );
140
+ }
141
+
142
+ @ Benchmark
143
+ @ OutputTimeUnit (TimeUnit .NANOSECONDS )
144
+ public int mismatch_small_bytebuffer () {
145
+ return mismatchBufferSmall1 .mismatch (mismatchBufferSmall2 );
146
+ }
92
147
}
0 commit comments