| .. | .. |
|---|
| 172 | 172 | case 4: |
|---|
| 173 | 173 | w_c0_perfctrl3(0); |
|---|
| 174 | 174 | w_c0_perfcntr3(reg.counter[3]); |
|---|
| 175 | + fallthrough; |
|---|
| 175 | 176 | case 3: |
|---|
| 176 | 177 | w_c0_perfctrl2(0); |
|---|
| 177 | 178 | w_c0_perfcntr2(reg.counter[2]); |
|---|
| 179 | + fallthrough; |
|---|
| 178 | 180 | case 2: |
|---|
| 179 | 181 | w_c0_perfctrl1(0); |
|---|
| 180 | 182 | w_c0_perfcntr1(reg.counter[1]); |
|---|
| 183 | + fallthrough; |
|---|
| 181 | 184 | case 1: |
|---|
| 182 | 185 | w_c0_perfctrl0(0); |
|---|
| 183 | 186 | w_c0_perfcntr0(reg.counter[0]); |
|---|
| .. | .. |
|---|
| 195 | 198 | switch (counters) { |
|---|
| 196 | 199 | case 4: |
|---|
| 197 | 200 | w_c0_perfctrl3(WHAT | reg.control[3]); |
|---|
| 201 | + fallthrough; |
|---|
| 198 | 202 | case 3: |
|---|
| 199 | 203 | w_c0_perfctrl2(WHAT | reg.control[2]); |
|---|
| 204 | + fallthrough; |
|---|
| 200 | 205 | case 2: |
|---|
| 201 | 206 | w_c0_perfctrl1(WHAT | reg.control[1]); |
|---|
| 207 | + fallthrough; |
|---|
| 202 | 208 | case 1: |
|---|
| 203 | 209 | w_c0_perfctrl0(WHAT | reg.control[0]); |
|---|
| 204 | 210 | } |
|---|
| .. | .. |
|---|
| 215 | 221 | switch (counters) { |
|---|
| 216 | 222 | case 4: |
|---|
| 217 | 223 | w_c0_perfctrl3(0); |
|---|
| 224 | + fallthrough; |
|---|
| 218 | 225 | case 3: |
|---|
| 219 | 226 | w_c0_perfctrl2(0); |
|---|
| 227 | + fallthrough; |
|---|
| 220 | 228 | case 2: |
|---|
| 221 | 229 | w_c0_perfctrl1(0); |
|---|
| 230 | + fallthrough; |
|---|
| 222 | 231 | case 1: |
|---|
| 223 | 232 | w_c0_perfctrl0(0); |
|---|
| 224 | 233 | } |
|---|
| .. | .. |
|---|
| 246 | 255 | handled = IRQ_HANDLED; \ |
|---|
| 247 | 256 | } |
|---|
| 248 | 257 | HANDLE_COUNTER(3) |
|---|
| 258 | + fallthrough; |
|---|
| 249 | 259 | HANDLE_COUNTER(2) |
|---|
| 260 | + fallthrough; |
|---|
| 250 | 261 | HANDLE_COUNTER(1) |
|---|
| 262 | + fallthrough; |
|---|
| 251 | 263 | HANDLE_COUNTER(0) |
|---|
| 252 | 264 | } |
|---|
| 253 | 265 | |
|---|
| .. | .. |
|---|
| 297 | 309 | case 4: |
|---|
| 298 | 310 | w_c0_perfctrl3(0); |
|---|
| 299 | 311 | w_c0_perfcntr3(0); |
|---|
| 312 | + fallthrough; |
|---|
| 300 | 313 | case 3: |
|---|
| 301 | 314 | w_c0_perfctrl2(0); |
|---|
| 302 | 315 | w_c0_perfcntr2(0); |
|---|
| 316 | + fallthrough; |
|---|
| 303 | 317 | case 2: |
|---|
| 304 | 318 | w_c0_perfctrl1(0); |
|---|
| 305 | 319 | w_c0_perfcntr1(0); |
|---|
| 320 | + fallthrough; |
|---|
| 306 | 321 | case 1: |
|---|
| 307 | 322 | w_c0_perfctrl0(0); |
|---|
| 308 | 323 | w_c0_perfcntr0(0); |
|---|
| .. | .. |
|---|
| 407 | 422 | op_model_mipsxx_ops.cpu_type = "mips/sb1"; |
|---|
| 408 | 423 | break; |
|---|
| 409 | 424 | |
|---|
| 410 | | - case CPU_LOONGSON1: |
|---|
| 425 | + case CPU_LOONGSON32: |
|---|
| 411 | 426 | op_model_mipsxx_ops.cpu_type = "mips/loongson1"; |
|---|
| 412 | 427 | break; |
|---|
| 413 | 428 | |
|---|