@@ -2133,20 +2133,34 @@ int MacroAssembler::push_fp(unsigned int bitset, Register stack) {
2133
2133
regs[count++] = reg;
2134
2134
bitset >>= 1 ;
2135
2135
}
2136
- regs[count++] = zr->encoding_nocheck ();
2137
- count &= ~1 ; // Only push an even number of regs
2138
2136
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 ;
2143
2139
}
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 ) {
2145
2154
stpq (as_FloatRegister (regs[i]), as_FloatRegister (regs[i+1 ]), Address (stack, i * wordSize * 2 ));
2146
2155
words_pushed += 2 ;
2147
2156
}
2148
2157
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);
2150
2164
return count;
2151
2165
}
2152
2166
@@ -2161,19 +2175,33 @@ int MacroAssembler::pop_fp(unsigned int bitset, Register stack) {
2161
2175
regs[count++] = reg;
2162
2176
bitset >>= 1 ;
2163
2177
}
2164
- regs[count++] = zr->encoding_nocheck ();
2165
- count &= ~1 ;
2166
2178
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 ;
2170
2181
}
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 ));
2173
2198
words_pushed += 2 ;
2174
2199
}
2175
2200
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);
2177
2205
2178
2206
return count;
2179
2207
}
0 commit comments