Skip to content

Commit ed31b66

Browse files
jyukutyoiklam
authored andcommittedJul 8, 2020
8247818: GCC 10 warning stringop-overflow with symbol code
Reviewed-by: kbarrett, iklam
1 parent 3dcd1c1 commit ed31b66

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed
 

‎src/hotspot/share/oops/symbol.cpp

+1-3
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,7 @@ Symbol::Symbol(const u1* name, int length, int refcount) {
5252
_hash_and_refcount = pack_hash_and_refcount((short)os::random(), refcount);
5353
_length = length;
5454
_body[0] = 0; // in case length == 0
55-
for (int i = 0; i < length; i++) {
56-
byte_at_put(i, name[i]);
57-
}
55+
memcpy(_body, name, length);
5856
}
5957

6058
void* Symbol::operator new(size_t sz, int len) throw() {

‎src/hotspot/share/oops/symbol.hpp

-5
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,6 @@ class Symbol : public MetaspaceObj {
125125
return (int)heap_word_size(byte_size(length));
126126
}
127127

128-
void byte_at_put(int index, u1 value) {
129-
assert(index >=0 && index < length(), "symbol index overflow");
130-
_body[index] = value;
131-
}
132-
133128
Symbol(const u1* name, int length, int refcount);
134129
void* operator new(size_t size, int len) throw();
135130
void* operator new(size_t size, int len, Arena* arena) throw();

0 commit comments

Comments
 (0)
Please sign in to comment.