2 ;; DFA-based pipeline description for Broadcom SB-1
5 ;; The Broadcom SB-1 core is 4-way superscalar, in-order. It has 2 load/store
6 ;; pipes (one of which can support some ALU operations), 2 alu pipes, 2 FP
7 ;; pipes, and 1 MDMX pipes. It can issue 2 ls insns and 2 exe/fpu/mdmx insns
10 ;; We model the 4-way issue by ordering unit choices. The possible choices are
11 ;; {ex1,fp1}|{ex0,fp0}|ls1|ls0. Instructions issue to the first eligible unit
12 ;; in the list in most cases. Non-indexed load/stores issue to ls0 first.
13 ;; simple alu operations issue to ls1 if it is still available, and their
14 ;; operands are ready (no co-issue with loads), otherwise to the first
17 ;; When exceptions are enabled, can only issue FP insns to fp1. This is
18 ;; to ensure that instructions complete in order. The -mfp-exceptions option
19 ;; can be used to specify whether the system has FP exceptions enabled or not.
21 ;; In 32-bit mode, dependent FP can't co-issue with load, and only one FP exe
22 ;; insn can issue per cycle (fp1).
24 ;; The A1 MDMX pipe is separate from the FP pipes, but uses the same register
25 ;; file. As a result, once an MDMX insn is issued, no FP insns can be issued
26 ;; for 3 cycles. When an FP insn is issued, no MDMX insn can be issued for
27 ;; 5 cycles. This is currently not handled because there is no MDMX insn
31 ;; We use two automata. sb1_cpu_div is for the integer divides, which are
32 ;; not pipelined. sb1_cpu is for everything else.
34 (define_automaton "sb1_cpu, sb1_cpu_div")
36 ;; Load/store function units.
37 (define_cpu_unit "sb1_ls0" "sb1_cpu")
38 (define_cpu_unit "sb1_ls1" "sb1_cpu")
40 ;; CPU function units.
41 (define_cpu_unit "sb1_ex0" "sb1_cpu")
42 (define_cpu_unit "sb1_ex1" "sb1_cpu")
44 ;; The divide unit is not pipelined, and blocks hi/lo reads and writes.
45 (define_cpu_unit "sb1_div" "sb1_cpu_div")
46 ;; DMULT block any multiply from issuing in the next cycle.
47 (define_cpu_unit "sb1_mul" "sb1_cpu")
49 ;; Floating-point units.
50 (define_cpu_unit "sb1_fp0" "sb1_cpu")
51 (define_cpu_unit "sb1_fp1" "sb1_cpu")
53 ;; Can only issue to one of the ex and fp pipes at a time.
54 (exclusion_set "sb1_ex0" "sb1_fp0")
55 (exclusion_set "sb1_ex1" "sb1_fp1")
57 ;; Define an SB-1 specific attribute to simplify some FP descriptions.
58 ;; We can use 2 FP pipes only if we have 64-bit FP code, and exceptions are
61 (define_attr "sb1_fp_pipes" "one,two"
62 (cond [(and (ne (symbol_ref "TARGET_FLOAT64") (const_int 0))
63 (eq (symbol_ref "TARGET_FP_EXCEPTIONS") (const_int 0)))
65 (const_string "one")))
67 ;; Define reservations for common combinations.
69 ;; For long cycle operations, the FPU has a 4 cycle pipeline that repeats,
70 ;; effectively re-issuing the operation every 4 cycles. This means that we
71 ;; can have at most 4 long-cycle operations per pipe.
73 ;; ??? The fdiv operations should be e.g.
74 ;; sb1_fp1_4cycles*7" | "sb1_fp0_4cycle*7
75 ;; but the DFA is too large when we do that. Perhaps have to use scheduler
78 ;; ??? Try limiting scheduler to 2 long latency operations, and see if this
79 ;; results in a usable DFA, and whether it helps code performance.
81 ;;(define_reservation "sb1_fp0_4cycles" "sb1_fp0, nothing*3")
82 ;;(define_reservation "sb1_fp1_4cycles" "sb1_fp1, nothing*3")
85 ;; The ordering of the instruction-execution-path/resource-usage
86 ;; descriptions (also known as reservation RTL) is roughly ordered
87 ;; based on the define attribute RTL for the "type" classification.
88 ;; When modifying, remember that the first test that matches is the
92 (define_insn_reservation "ir_sb1_unknown" 1
93 (and (eq_attr "cpu" "sb1,sb1a")
94 (eq_attr "type" "unknown,multi"))
95 "sb1_ls0+sb1_ls1+sb1_ex0+sb1_ex1+sb1_fp0+sb1_fp1")
97 ;; predicted taken branch causes 2 cycle ifetch bubble. predicted not
98 ;; taken branch causes 0 cycle ifetch bubble. mispredicted branch causes 8
99 ;; cycle ifetch bubble. We assume all branches predicted not taken.
101 ;; ??? This assumption that branches are predicated not taken should be
102 ;; investigated. Maybe using 2 here will give better results.
104 (define_insn_reservation "ir_sb1_branch" 0
105 (and (eq_attr "cpu" "sb1,sb1a")
106 (eq_attr "type" "branch,jump,call"))
109 ;; ??? This is 1 cycle for ldl/ldr to ldl/ldr when they use the same data
110 ;; register as destination.
112 ;; ??? SB-1 can co-issue a load with a dependent arith insn if it executes on
113 ;; an EX unit. Can not co-issue if the dependent insn executes on an LS unit.
114 ;; SB-1A can always co-issue here.
116 ;; A load normally has a latency of zero cycles. In some cases, dependent
117 ;; insns can be issued in the same cycle. However, a value of 1 gives
118 ;; better performance in empirical testing.
120 (define_insn_reservation "ir_sb1_load" 1
121 (and (eq_attr "cpu" "sb1")
122 (eq_attr "type" "load,prefetch"))
125 (define_insn_reservation "ir_sb1a_load" 0
126 (and (eq_attr "cpu" "sb1a")
127 (eq_attr "type" "load,prefetch"))
130 ;; Can not co-issue fpload with fp exe when in 32-bit mode.
132 (define_insn_reservation "ir_sb1_fpload" 0
133 (and (eq_attr "cpu" "sb1,sb1a")
134 (and (eq_attr "type" "fpload")
135 (ne (symbol_ref "TARGET_FLOAT64")
139 (define_insn_reservation "ir_sb1_fpload_32bitfp" 1
140 (and (eq_attr "cpu" "sb1,sb1a")
141 (and (eq_attr "type" "fpload")
142 (eq (symbol_ref "TARGET_FLOAT64")
146 ;; Indexed loads can only execute on LS1 pipe.
148 (define_insn_reservation "ir_sb1_fpidxload" 0
149 (and (eq_attr "cpu" "sb1,sb1a")
150 (and (eq_attr "type" "fpidxload")
151 (ne (symbol_ref "TARGET_FLOAT64")
155 (define_insn_reservation "ir_sb1_fpidxload_32bitfp" 1
156 (and (eq_attr "cpu" "sb1,sb1a")
157 (and (eq_attr "type" "fpidxload")
158 (eq (symbol_ref "TARGET_FLOAT64")
162 ;; prefx can only execute on the ls1 pipe.
164 (define_insn_reservation "ir_sb1_prefetchx" 0
165 (and (eq_attr "cpu" "sb1,sb1a")
166 (eq_attr "type" "prefetchx"))
169 ;; ??? There is a 4.5 cycle latency if a store is followed by a load, and
170 ;; there is a RAW dependency.
172 (define_insn_reservation "ir_sb1_store" 1
173 (and (eq_attr "cpu" "sb1,sb1a")
174 (eq_attr "type" "store"))
175 "sb1_ls0+sb1_ex1 | sb1_ls0+sb1_ex0 | sb1_ls1+sb1_ex1 | sb1_ls1+sb1_ex0")
177 (define_insn_reservation "ir_sb1_fpstore" 1
178 (and (eq_attr "cpu" "sb1,sb1a")
179 (eq_attr "type" "fpstore"))
180 "sb1_ls0+sb1_fp1 | sb1_ls0+sb1_fp0 | sb1_ls1+sb1_fp1 | sb1_ls1+sb1_fp0")
182 ;; Indexed stores can only execute on LS1 pipe.
184 (define_insn_reservation "ir_sb1_fpidxstore" 1
185 (and (eq_attr "cpu" "sb1,sb1a")
186 (eq_attr "type" "fpidxstore"))
187 "sb1_ls1+sb1_fp1 | sb1_ls1+sb1_fp0")
189 ;; Load latencies are 3 cycles for one load to another load or store (address
190 ;; only). This is 0 cycles for one load to a store using it as the data
193 ;; This assumes that if a load is dependent on a previous insn, then it must
194 ;; be an address dependence.
197 "ir_sb1_load,ir_sb1a_load,ir_sb1_fpload,ir_sb1_fpload_32bitfp,
198 ir_sb1_fpidxload,ir_sb1_fpidxload_32bitfp"
199 "ir_sb1_load,ir_sb1a_load,ir_sb1_fpload,ir_sb1_fpload_32bitfp,
200 ir_sb1_fpidxload,ir_sb1_fpidxload_32bitfp,ir_sb1_prefetchx")
203 "ir_sb1_load,ir_sb1a_load,ir_sb1_fpload,ir_sb1_fpload_32bitfp,
204 ir_sb1_fpidxload,ir_sb1_fpidxload_32bitfp"
205 "ir_sb1_store,ir_sb1_fpstore,ir_sb1_fpidxstore"
206 "mips_store_data_bypass_p")
208 ;; On SB-1, simple alu instructions can execute on the LS1 unit.
210 ;; ??? A simple alu insn issued on an LS unit has 0 cycle latency to an EX
211 ;; insn, to a store (for data), and to an xfer insn. It has 1 cycle latency to
212 ;; another LS insn (excluding store data). A simple alu insn issued on an EX
213 ;; unit has a latency of 5 cycles when the results goes to a LS unit (excluding
214 ;; store data), otherwise a latency of 1 cycle.
216 ;; ??? We cannot handle latencies properly for simple alu instructions
217 ;; within the DFA pipeline model. Latencies can be defined only from one
218 ;; insn reservation to another. We can't make them depend on which function
219 ;; unit was used. This isn't a DFA flaw. There is a conflict here, as we
220 ;; need to know the latency before we can determine which unit will be
221 ;; available, but we need to know which unit it is issued to before we can
222 ;; compute the latency. Perhaps this can be handled via scheduler hooks.
223 ;; This needs to be investigated.
225 ;; ??? Optimal scheduling taking the LS units into account seems to require
226 ;; a pre-scheduling pass. We need to determine which instructions feed results
227 ;; into store/load addresses, and thus benefit most from being issued to the
228 ;; LS unit. Also, we need to prune the list to ensure we don't overschedule
229 ;; insns to the LS unit, and that we don't conflict with insns that need LS1
230 ;; such as indexed loads. We then need to emit nops to ensure that simple
231 ;; alu instructions that are not supposed to be scheduled to LS1 don't
232 ;; accidentally end up there because LS1 is free when they are issued. This
233 ;; will be a lot of work, and it isn't clear how useful it will be.
235 ;; Empirical testing shows that 2 gives the best result.
237 (define_insn_reservation "ir_sb1_simple_alu" 2
238 (and (eq_attr "cpu" "sb1")
239 (eq_attr "type" "const,arith"))
240 "sb1_ls1 | sb1_ex1 | sb1_ex0")
242 ;; On SB-1A, simple alu instructions can not execute on the LS1 unit, and we
243 ;; have none of the above problems.
245 (define_insn_reservation "ir_sb1a_simple_alu" 1
246 (and (eq_attr "cpu" "sb1a")
247 (eq_attr "type" "const,arith"))
250 ;; ??? condmove also includes some FP instructions that execute on the FP
251 ;; units. This needs to be clarified.
253 (define_insn_reservation "ir_sb1_alu" 1
254 (and (eq_attr "cpu" "sb1,sb1a")
255 (eq_attr "type" "condmove,nop,shift"))
258 ;; These are type arith/darith that only execute on the EX0 unit.
260 (define_insn_reservation "ir_sb1_alu_0" 1
261 (and (eq_attr "cpu" "sb1,sb1a")
262 (eq_attr "type" "slt,clz,trap"))
265 ;; An alu insn issued on an EX unit has a latency of 5 cycles when the
266 ;; result goes to a LS unit (excluding store data).
268 ;; This assumes that if a load is dependent on a previous insn, then it must
269 ;; be an address dependence.
272 "ir_sb1a_simple_alu,ir_sb1_alu,ir_sb1_alu_0,ir_sb1_mfhi,ir_sb1_mflo"
273 "ir_sb1_load,ir_sb1a_load,ir_sb1_fpload,ir_sb1_fpload_32bitfp,
274 ir_sb1_fpidxload,ir_sb1_fpidxload_32bitfp,ir_sb1_prefetchx")
277 "ir_sb1a_simple_alu,ir_sb1_alu,ir_sb1_alu_0,ir_sb1_mfhi,ir_sb1_mflo"
278 "ir_sb1_store,ir_sb1_fpstore,ir_sb1_fpidxstore"
279 "mips_store_data_bypass_p")
281 ;; mf{hi,lo} is 1 cycle.
283 (define_insn_reservation "ir_sb1_mfhi" 1
284 (and (eq_attr "cpu" "sb1,sb1a")
285 (and (eq_attr "type" "mfhilo")
286 (not (match_operand 1 "lo_operand"))))
289 (define_insn_reservation "ir_sb1_mflo" 1
290 (and (eq_attr "cpu" "sb1,sb1a")
291 (and (eq_attr "type" "mfhilo")
292 (match_operand 1 "lo_operand")))
295 ;; mt{hi,lo} to mul/div is 4 cycles.
297 (define_insn_reservation "ir_sb1_mthilo" 4
298 (and (eq_attr "cpu" "sb1,sb1a")
299 (eq_attr "type" "mthilo"))
302 ;; mt{hi,lo} to mf{hi,lo} is 3 cycles.
304 (define_bypass 3 "ir_sb1_mthilo" "ir_sb1_mfhi,ir_sb1_mflo")
306 ;; multiply latency to an EX operation is 3 cycles.
308 ;; ??? Should check whether we need to make multiply conflict with moves
309 ;; to/from hilo registers.
311 (define_insn_reservation "ir_sb1_mulsi" 3
312 (and (eq_attr "cpu" "sb1,sb1a")
313 (and (eq_attr "type" "imul,imul3,imadd")
314 (eq_attr "mode" "SI")))
317 ;; muldi to mfhi is 4 cycles.
318 ;; Blocks any other multiply insn issue for 1 cycle.
320 (define_insn_reservation "ir_sb1_muldi" 4
321 (and (eq_attr "cpu" "sb1,sb1a")
322 (and (eq_attr "type" "imul,imul3")
323 (eq_attr "mode" "DI")))
324 "sb1_ex1+sb1_mul, sb1_mul")
326 ;; muldi to mflo is 3 cycles.
328 (define_bypass 3 "ir_sb1_muldi" "ir_sb1_mflo")
330 ;; mul latency is 7 cycles if the result is used by any LS insn.
332 ;; This assumes that if a load is dependent on a previous insn, then it must
333 ;; be an address dependence.
336 "ir_sb1_mulsi,ir_sb1_muldi"
337 "ir_sb1_load,ir_sb1a_load,ir_sb1_fpload,ir_sb1_fpload_32bitfp,
338 ir_sb1_fpidxload,ir_sb1_fpidxload_32bitfp,ir_sb1_prefetchx")
341 "ir_sb1_mulsi,ir_sb1_muldi"
342 "ir_sb1_store,ir_sb1_fpstore,ir_sb1_fpidxstore"
343 "mips_store_data_bypass_p")
345 ;; The divide unit is not pipelined. Divide busy is asserted in the 4th
346 ;; cycle, and then deasserted on the latency cycle. So only one divide at
347 ;; a time, but the first/last 4 cycles can overlap.
349 ;; ??? All divides block writes to hi/lo regs. hi/lo regs are written 4 cycles
350 ;; after the latency cycle for divides (e.g. 40/72). dmult writes lo in
351 ;; cycle 7, and hi in cycle 8. All other insns write hi/lo regs in cycle 7.
352 ;; Default for output dependencies is the difference in latencies, which is
353 ;; only 1 cycle off here, e.g. div to mtlo stalls for 32 cycles, but should
354 ;; stall for 33 cycles. This does not seem significant enough to worry about.
356 (define_insn_reservation "ir_sb1_divsi" 36
357 (and (eq_attr "cpu" "sb1,sb1a")
358 (and (eq_attr "type" "idiv")
359 (eq_attr "mode" "SI")))
360 "sb1_ex1, nothing*3, sb1_div*32")
362 (define_insn_reservation "ir_sb1_divdi" 68
363 (and (eq_attr "cpu" "sb1,sb1a")
364 (and (eq_attr "type" "idiv")
365 (eq_attr "mode" "DI")))
366 "sb1_ex1, nothing*3, sb1_div*64")
368 (define_insn_reservation "ir_sb1_fpu_2pipes" 4
369 (and (eq_attr "cpu" "sb1,sb1a")
370 (and (eq_attr "type" "fmove,fadd,fmul,fabs,fneg,fcvt,frdiv1,frsqrt1")
371 (eq_attr "sb1_fp_pipes" "two")))
374 (define_insn_reservation "ir_sb1_fpu_1pipe" 4
375 (and (eq_attr "cpu" "sb1,sb1a")
376 (and (eq_attr "type" "fmove,fadd,fmul,fabs,fneg,fcvt,frdiv1,frsqrt1")
377 (eq_attr "sb1_fp_pipes" "one")))
380 (define_insn_reservation "ir_sb1_fpu_step2_2pipes" 8
381 (and (eq_attr "cpu" "sb1,sb1a")
382 (and (eq_attr "type" "frdiv2,frsqrt2")
383 (eq_attr "sb1_fp_pipes" "two")))
386 (define_insn_reservation "ir_sb1_fpu_step2_1pipe" 8
387 (and (eq_attr "cpu" "sb1,sb1a")
388 (and (eq_attr "type" "frdiv2,frsqrt2")
389 (eq_attr "sb1_fp_pipes" "one")))
392 ;; ??? madd/msub 4-cycle latency to itself (same fr?), but 8 cycle latency
395 ;; ??? Blocks issue of another non-madd/msub after 4 cycles.
397 (define_insn_reservation "ir_sb1_fmadd_2pipes" 8
398 (and (eq_attr "cpu" "sb1,sb1a")
399 (and (eq_attr "type" "fmadd")
400 (eq_attr "sb1_fp_pipes" "two")))
403 (define_insn_reservation "ir_sb1_fmadd_1pipe" 8
404 (and (eq_attr "cpu" "sb1,sb1a")
405 (and (eq_attr "type" "fmadd")
406 (eq_attr "sb1_fp_pipes" "one")))
409 (define_insn_reservation "ir_sb1_fcmp" 4
410 (and (eq_attr "cpu" "sb1,sb1a")
411 (eq_attr "type" "fcmp"))
414 ;; mtc1 latency 5 cycles.
416 (define_insn_reservation "ir_sb1_mtxfer" 5
417 (and (eq_attr "cpu" "sb1,sb1a")
418 (and (eq_attr "type" "xfer")
419 (match_operand 0 "fpr_operand")))
422 ;; mfc1 latency 1 cycle.
424 (define_insn_reservation "ir_sb1_mfxfer" 1
425 (and (eq_attr "cpu" "sb1,sb1a")
426 (and (eq_attr "type" "xfer")
427 (not (match_operand 0 "fpr_operand"))))
430 ;; ??? Can deliver at most 1 result per every 6 cycles because of issue
433 (define_insn_reservation "ir_sb1_divsf_2pipes" 24
434 (and (eq_attr "cpu" "sb1,sb1a")
435 (and (eq_attr "type" "fdiv")
436 (and (eq_attr "mode" "SF")
437 (eq_attr "sb1_fp_pipes" "two"))))
440 (define_insn_reservation "ir_sb1_divsf_1pipe" 24
441 (and (eq_attr "cpu" "sb1,sb1a")
442 (and (eq_attr "type" "fdiv")
443 (and (eq_attr "mode" "SF")
444 (eq_attr "sb1_fp_pipes" "one"))))
447 ;; ??? Can deliver at most 1 result per every 8 cycles because of issue
450 (define_insn_reservation "ir_sb1_divdf_2pipes" 32
451 (and (eq_attr "cpu" "sb1,sb1a")
452 (and (eq_attr "type" "fdiv")
453 (and (eq_attr "mode" "DF")
454 (eq_attr "sb1_fp_pipes" "two"))))
457 (define_insn_reservation "ir_sb1_divdf_1pipe" 32
458 (and (eq_attr "cpu" "sb1,sb1a")
459 (and (eq_attr "type" "fdiv")
460 (and (eq_attr "mode" "DF")
461 (eq_attr "sb1_fp_pipes" "one"))))
464 ;; ??? Can deliver at most 1 result per every 3 cycles because of issue
467 (define_insn_reservation "ir_sb1_recipsf_2pipes" 12
468 (and (eq_attr "cpu" "sb1,sb1a")
469 (and (eq_attr "type" "frdiv")
470 (and (eq_attr "mode" "SF")
471 (eq_attr "sb1_fp_pipes" "two"))))
474 (define_insn_reservation "ir_sb1_recipsf_1pipe" 12
475 (and (eq_attr "cpu" "sb1,sb1a")
476 (and (eq_attr "type" "frdiv")
477 (and (eq_attr "mode" "SF")
478 (eq_attr "sb1_fp_pipes" "one"))))
481 ;; ??? Can deliver at most 1 result per every 5 cycles because of issue
484 (define_insn_reservation "ir_sb1_recipdf_2pipes" 20
485 (and (eq_attr "cpu" "sb1,sb1a")
486 (and (eq_attr "type" "frdiv")
487 (and (eq_attr "mode" "DF")
488 (eq_attr "sb1_fp_pipes" "two"))))
491 (define_insn_reservation "ir_sb1_recipdf_1pipe" 20
492 (and (eq_attr "cpu" "sb1,sb1a")
493 (and (eq_attr "type" "frdiv")
494 (and (eq_attr "mode" "DF")
495 (eq_attr "sb1_fp_pipes" "one"))))
498 ;; ??? Can deliver at most 1 result per every 7 cycles because of issue
501 (define_insn_reservation "ir_sb1_sqrtsf_2pipes" 28
502 (and (eq_attr "cpu" "sb1,sb1a")
503 (and (eq_attr "type" "fsqrt")
504 (and (eq_attr "mode" "SF")
505 (eq_attr "sb1_fp_pipes" "two"))))
508 (define_insn_reservation "ir_sb1_sqrtsf_1pipe" 28
509 (and (eq_attr "cpu" "sb1,sb1a")
510 (and (eq_attr "type" "fsqrt")
511 (and (eq_attr "mode" "SF")
512 (eq_attr "sb1_fp_pipes" "one"))))
515 ;; ??? Can deliver at most 1 result per every 10 cycles because of issue
518 (define_insn_reservation "ir_sb1_sqrtdf_2pipes" 40
519 (and (eq_attr "cpu" "sb1,sb1a")
520 (and (eq_attr "type" "fsqrt")
521 (and (eq_attr "mode" "DF")
522 (eq_attr "sb1_fp_pipes" "two"))))
525 (define_insn_reservation "ir_sb1_sqrtdf_1pipe" 40
526 (and (eq_attr "cpu" "sb1,sb1a")
527 (and (eq_attr "type" "fsqrt")
528 (and (eq_attr "mode" "DF")
529 (eq_attr "sb1_fp_pipes" "one"))))
532 ;; ??? Can deliver at most 1 result per every 4 cycles because of issue
535 (define_insn_reservation "ir_sb1_rsqrtsf_2pipes" 16
536 (and (eq_attr "cpu" "sb1,sb1a")
537 (and (eq_attr "type" "frsqrt")
538 (and (eq_attr "mode" "SF")
539 (eq_attr "sb1_fp_pipes" "two"))))
542 (define_insn_reservation "ir_sb1_rsqrtsf_1pipe" 16
543 (and (eq_attr "cpu" "sb1,sb1a")
544 (and (eq_attr "type" "frsqrt")
545 (and (eq_attr "mode" "SF")
546 (eq_attr "sb1_fp_pipes" "one"))))
549 ;; ??? Can deliver at most 1 result per every 7 cycles because of issue
552 (define_insn_reservation "ir_sb1_rsqrtdf_2pipes" 28
553 (and (eq_attr "cpu" "sb1,sb1a")
554 (and (eq_attr "type" "frsqrt")
555 (and (eq_attr "mode" "DF")
556 (eq_attr "sb1_fp_pipes" "two"))))
559 (define_insn_reservation "ir_sb1_rsqrtdf_1pipe" 28
560 (and (eq_attr "cpu" "sb1,sb1a")
561 (and (eq_attr "type" "frsqrt")
562 (and (eq_attr "mode" "DF")
563 (eq_attr "sb1_fp_pipes" "one"))))