-
Bug
-
Resolution: Fixed
-
P3
-
7u60
-
b18
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8008039 | 8 | Serguei Spitsyn | P3 | Resolved | Fixed | b77 |
JDK-8033503 | 7u80 | Serguei Spitsyn | P3 | Resolved | Fixed | b01 |
JDK-8034522 | 7u65 | Serguei Spitsyn | P3 | Resolved | Fixed | b01 |
JDK-8032620 | 7u60 | Serguei Spitsyn | P3 | Closed | Fixed | b05 |
It seems the following fragment in the original ConstantPool::copy_cp_to_impl has typos:
1161 // first part of dest
1162 Copy::conjoint_memory_atomic(to_cp->operands()->adr_at(0),
1163 new_operands->adr_at(fillp),
1164 (len = old_off) * sizeof(u2));
1165 fillp += len;
1166 // first part of src
1167 Copy::conjoint_memory_atomic(to_cp->operands()->adr_at(0),
1168 new_operands->adr_at(fillp),
1169 (len = from_off) * sizeof(u2));
1170 fillp += len;
1171 // second part of dest
1172 Copy::conjoint_memory_atomic(to_cp->operands()->adr_at(old_off),
1173 new_operands->adr_at(fillp),
1174 (len = old_len - old_off) * sizeof(u2));
1175 fillp += len;
1176 // second part of src
1177 Copy::conjoint_memory_atomic(to_cp->operands()->adr_at(from_off),
1178 new_operands->adr_at(fillp),
1179 (len = from_len - from_off) * sizeof(u2));
The lines #1167 and #1177 should have the from_cp instead of the to_cp like this:
1167 Copy::conjoint_memory_atomic(from_cp->operands()->adr_at(0),
1177 Copy::conjoint_memory_atomic(from_cp->operands()->adr_at(from_off),
1161 // first part of dest
1162 Copy::conjoint_memory_atomic(to_cp->operands()->adr_at(0),
1163 new_operands->adr_at(fillp),
1164 (len = old_off) * sizeof(u2));
1165 fillp += len;
1166 // first part of src
1167 Copy::conjoint_memory_atomic(to_cp->operands()->adr_at(0),
1168 new_operands->adr_at(fillp),
1169 (len = from_off) * sizeof(u2));
1170 fillp += len;
1171 // second part of dest
1172 Copy::conjoint_memory_atomic(to_cp->operands()->adr_at(old_off),
1173 new_operands->adr_at(fillp),
1174 (len = old_len - old_off) * sizeof(u2));
1175 fillp += len;
1176 // second part of src
1177 Copy::conjoint_memory_atomic(to_cp->operands()->adr_at(from_off),
1178 new_operands->adr_at(fillp),
1179 (len = from_len - from_off) * sizeof(u2));
The lines #1167 and #1177 should have the from_cp instead of the to_cp like this:
1167 Copy::conjoint_memory_atomic(from_cp->operands()->adr_at(0),
1177 Copy::conjoint_memory_atomic(from_cp->operands()->adr_at(from_off),
- backported by
-
JDK-8008039 JSR 292: typos in the ConstantPool::copy_operands()
-
- Resolved
-
-
JDK-8033503 JSR 292: typos in the ConstantPool::copy_operands()
-
- Resolved
-
-
JDK-8034522 JSR 292: typos in the ConstantPool::copy_operands()
-
- Resolved
-
-
JDK-8032620 JSR 292: typos in the ConstantPool::copy_operands()
-
- Closed
-