Skip to content

Commit a18e8d3

Browse files
committedJun 30, 2020
8248048: ZGC: AArch64: SIGILL in load barrier register spilling
Reviewed-by: adinn, aph
1 parent 8f26a1f commit a18e8d3

File tree

1 file changed

+44
-16
lines changed

1 file changed

+44
-16
lines changed
 

‎src/hotspot/cpu/aarch64/macroAssembler_aarch64.cpp

+44-16
Original file line numberDiff line numberDiff line change
@@ -2133,20 +2133,34 @@ int MacroAssembler::push_fp(unsigned int bitset, Register stack) {
21332133
regs[count++] = reg;
21342134
bitset >>= 1;
21352135
}
2136-
regs[count++] = zr->encoding_nocheck();
2137-
count &= ~1; // Only push an even number of regs
21382136

2139-
// Always pushing full 128 bit registers.
2140-
if (count) {
2141-
stpq(as_FloatRegister(regs[0]), as_FloatRegister(regs[1]), Address(pre(stack, -count * wordSize * 2)));
2142-
words_pushed += 2;
2137+
if (count == 0) {
2138+
return 0;
21432139
}
2144-
for (int i = 2; i < count; i += 2) {
2140+
2141+
if (count == 1) {
2142+
strq(as_FloatRegister(regs[0]), Address(pre(stack, -wordSize * 2)));
2143+
return 1;
2144+
}
2145+
2146+
bool odd = (count & 1) == 1;
2147+
int push_slots = count + (odd ? 1 : 0);
2148+
2149+
// Always pushing full 128 bit registers.
2150+
stpq(as_FloatRegister(regs[0]), as_FloatRegister(regs[1]), Address(pre(stack, -push_slots * wordSize * 2)));
2151+
words_pushed += 2;
2152+
2153+
for (int i = 2; i + 1 < count; i += 2) {
21452154
stpq(as_FloatRegister(regs[i]), as_FloatRegister(regs[i+1]), Address(stack, i * wordSize * 2));
21462155
words_pushed += 2;
21472156
}
21482157

2149-
assert(words_pushed == count, "oops, pushed != count");
2158+
if (odd) {
2159+
strq(as_FloatRegister(regs[count - 1]), Address(stack, (count - 1) * wordSize * 2));
2160+
words_pushed++;
2161+
}
2162+
2163+
assert(words_pushed == count, "oops, pushed(%d) != count(%d)", words_pushed, count);
21502164
return count;
21512165
}
21522166

@@ -2161,19 +2175,33 @@ int MacroAssembler::pop_fp(unsigned int bitset, Register stack) {
21612175
regs[count++] = reg;
21622176
bitset >>= 1;
21632177
}
2164-
regs[count++] = zr->encoding_nocheck();
2165-
count &= ~1;
21662178

2167-
for (int i = 2; i < count; i += 2) {
2168-
ldpq(as_FloatRegister(regs[i]), as_FloatRegister(regs[i+1]), Address(stack, i * wordSize * 2));
2169-
words_pushed += 2;
2179+
if (count == 0) {
2180+
return 0;
21702181
}
2171-
if (count) {
2172-
ldpq(as_FloatRegister(regs[0]), as_FloatRegister(regs[1]), Address(post(stack, count * wordSize * 2)));
2182+
2183+
if (count == 1) {
2184+
ldrq(as_FloatRegister(regs[0]), Address(post(stack, wordSize * 2)));
2185+
return 1;
2186+
}
2187+
2188+
bool odd = (count & 1) == 1;
2189+
int push_slots = count + (odd ? 1 : 0);
2190+
2191+
if (odd) {
2192+
ldrq(as_FloatRegister(regs[count - 1]), Address(stack, (count - 1) * wordSize * 2));
2193+
words_pushed++;
2194+
}
2195+
2196+
for (int i = 2; i + 1 < count; i += 2) {
2197+
ldpq(as_FloatRegister(regs[i]), as_FloatRegister(regs[i+1]), Address(stack, i * wordSize * 2));
21732198
words_pushed += 2;
21742199
}
21752200

2176-
assert(words_pushed == count, "oops, pushed != count");
2201+
ldpq(as_FloatRegister(regs[0]), as_FloatRegister(regs[1]), Address(post(stack, push_slots * wordSize * 2)));
2202+
words_pushed += 2;
2203+
2204+
assert(words_pushed == count, "oops, pushed(%d) != count(%d)", words_pushed, count);
21772205

21782206
return count;
21792207
}

0 commit comments

Comments
 (0)
Please sign in to comment.