Lines Matching refs:condition

1951 (dnf f-CCi       "condition   register"         () 11  3)
1959 (dnf f-ICCi_1 "condition register" () 11 2)
1960 (dnf f-ICCi_2 "condition register" () 26 2)
1961 (dnf f-ICCi_3 "condition register" () 1 2)
1962 (dnf f-FCCi_1 "condition register" () 11 2)
1963 (dnf f-FCCi_2 "condition register" () 26 2)
1964 (dnf f-FCCi_3 "condition register" () 1 2)
1965 (dnf f-FCCk "condition register" () 26 2)
1995 (df f-ccond "lr branch condition" () 12 1 UINT #f #f)
2980 ; Integer condition code registers (CCR)
2995 (comment "Integer condition code registers")
3001 ; Floating point condition code registers (CCR)
3016 (comment "Floating point condition code registers")
3022 ; C condition code registers (CCCR)
3155 (dnop CCi "condition register" () h-cccr f-CCi)
3157 (dnop ICCi_1 "condition register" () h-iccr f-ICCi_1)
3158 (dnop ICCi_2 "condition register" () h-iccr f-ICCi_2)
3159 (dnop ICCi_3 "condition register" () h-iccr f-ICCi_3)
3160 (dnop FCCi_1 "condition register" () h-fccr f-FCCi_1)
3161 (dnop FCCi_2 "condition register" () h-fccr f-FCCi_2)
3162 (dnop FCCi_3 "condition register" () h-fccr f-FCCi_3)
3163 (dnop FCCk "condition register" () h-fccr f-FCCk)
3174 (dnop ccond "lr branch condition" (HASH-PREFIX) h-uint f-ccond)
3380 ; Integer condition code manipulation
3897 "conditional signed multiply and set condition code"
6483 (define-pmacro (condition-code-logic name operation ope comment)
6508 (condition-code-logic andcr (op-andcr) OPE1_08 "and condition code regs")
6509 (condition-code-logic orcr (op-orcr) OPE1_09 "or condition code regs")
6510 (condition-code-logic xorcr (op-xorcr) OPE1_0A "xor condition code regs")
6511 (condition-code-logic nandcr (op-nandcr) OPE1_0C "nand condition code regs")
6512 (condition-code-logic norcr (op-norcr) OPE1_0D "nor condition code regs")
6513 (condition-code-logic andncr (op-andncr) OPE1_10 "andn condition code regs")
6514 (condition-code-logic orncr (op-orncr) OPE1_11 "orn condition code regs")
6515 (condition-code-logic nandncr (op-nandncr) OPE1_14 "nandn condition code regs")
6516 (condition-code-logic norncr (op-norncr) OPE1_15 "norn condition code regs")
6532 (define-pmacro (check-int-condition-code prefix cc op cond comment)
6567 (check-int-condition-code ck eq OP_08 Ieq "check integer cc equal")
6568 (check-int-condition-code ck ne OP_08 Ine "check integer cc not equal")
6569 (check-int-condition-code ck le OP_08 Ile "check integer cc less or equal")
6570 (check-int-condition-code ck gt OP_08 Igt "check integer cc greater")
6571 (check-int-condition-code ck lt OP_08 Ilt "check integer cc less")
6572 (check-int-condition-code ck ge OP_08 Ige "check integer cc greater or equal")
6573 (check-int-condition-code ck ls OP_08 Ils "check integer cc less or equal unsigned")
6574 (check-int-condition-code ck hi OP_08 Ihi "check integer cc greater unsigned")
6575 (check-int-condition-code ck c OP_08 Ic "check integer cc carry set")
6576 (check-int-condition-code ck nc OP_08 Inc "check integer cc carry clear")
6577 (check-int-condition-code ck n OP_08 In "check integer cc negative")
6578 (check-int-condition-code ck p OP_08 Ip "check integer cc positive")
6579 (check-int-condition-code ck v OP_08 Iv "check integer cc overflow set")
6580 (check-int-condition-code ck nv OP_08 Inv "check integer cc overflow clear")
6582 (define-pmacro (check-float-condition-code prefix cc op cond comment)
6617 (check-float-condition-code fck ne OP_09 Fne "check float cc not equal")
6618 (check-float-condition-code fck eq OP_09 Feq "check float cc equal")
6619 (check-float-condition-code fck lg OP_09 Flg "check float cc greater or less")
6620 (check-float-condition-code fck ue OP_09 Fue "check float cc unordered or equal")
6621 (check-float-condition-code fck ul OP_09 Ful "check float cc unordered or less")
6622 (check-float-condition-code fck ge OP_09 Fge "check float cc greater or equal")
6623 (check-float-condition-code fck lt OP_09 Flt "check float cc less")
6624 (check-float-condition-code fck uge OP_09 Fuge "check float cc unordered greater or equal")
6625 (check-float-condition-code fck ug OP_09 Fug "check float cc unordered or greater")
6626 (check-float-condition-code fck le OP_09 Fle "check float cc less or equal")
6627 (check-float-condition-code fck gt OP_09 Fgt "check float cc greater")
6628 (check-float-condition-code fck ule OP_09 Fule "check float cc unordered less or equal")
6629 (check-float-condition-code fck u OP_09 Fu "check float cc unordered")
6630 (check-float-condition-code fck o OP_09 Fo "check float cc ordered")
6632 (define-pmacro (conditional-check-int-condition-code prefix cc op ope test comment)
6676 (conditional-check-int-condition-code cck eq OP_6A OPE4_0 Ieq "check integer cc equal")
6677 (conditional-check-int-condition-code cck ne OP_6A OPE4_0 Ine "check integer cc not equal")
6678 (conditional-check-int-condition-code cck le OP_6A OPE4_0 Ile "check integer cc less or equal")
6679 (conditional-check-int-condition-code cck gt OP_6A OPE4_0 Igt "check integer cc greater")
6680 (conditional-check-int-condition-code cck lt OP_6A OPE4_0 Ilt "check integer cc less")
6681 (conditional-check-int-condition-code cck ge OP_6A OPE4_0 Ige "check integer cc greater or equal")
6682 (conditional-check-int-condition-code cck ls OP_6A OPE4_0 Ils "check integer cc less or equal uns…
6683 (conditional-check-int-condition-code cck hi OP_6A OPE4_0 Ihi "check integer cc greater unsigned")
6684 (conditional-check-int-condition-code cck c OP_6A OPE4_0 Ic "check integer cc carry set")
6685 (conditional-check-int-condition-code cck nc OP_6A OPE4_0 Inc "check integer cc carry clear")
6686 (conditional-check-int-condition-code cck n OP_6A OPE4_0 In "check integer cc negative")
6687 (conditional-check-int-condition-code cck p OP_6A OPE4_0 Ip "check integer cc positive")
6688 (conditional-check-int-condition-code cck v OP_6A OPE4_0 Iv "check integer cc overflow set")
6689 (conditional-check-int-condition-code cck nv OP_6A OPE4_0 Inv "check integer cc overflow clear")
6691 (define-pmacro (conditional-check-float-condition-code prefix cc op ope test comment)
6735 (conditional-check-float-condition-code cfck ne OP_6A OPE4_1 Fne "check float cc not equal")
6736 (conditional-check-float-condition-code cfck eq OP_6A OPE4_1 Feq "check float cc equal")
6737 (conditional-check-float-condition-code cfck lg OP_6A OPE4_1 Flg "check float cc greater or less")
6738 (conditional-check-float-condition-code cfck ue OP_6A OPE4_1 Fue "check float cc unordered or equ…
6739 (conditional-check-float-condition-code cfck ul OP_6A OPE4_1 Ful "check float cc unordered or les…
6740 (conditional-check-float-condition-code cfck ge OP_6A OPE4_1 Fge "check float cc greater or equal…
6741 (conditional-check-float-condition-code cfck lt OP_6A OPE4_1 Flt "check float cc less")
6742 (conditional-check-float-condition-code cfck uge OP_6A OPE4_1 Fuge "check float cc unordered greate…
6743 (conditional-check-float-condition-code cfck ug OP_6A OPE4_1 Fug "check float cc unordered or gre…
6744 (conditional-check-float-condition-code cfck le OP_6A OPE4_1 Fle "check float cc less or equal")
6745 (conditional-check-float-condition-code cfck gt OP_6A OPE4_1 Fgt "check float cc greater")
6746 (conditional-check-float-condition-code cfck ule OP_6A OPE4_1 Fule "check float cc unordered less o…
6747 (conditional-check-float-condition-code cfck u OP_6A OPE4_1 Fu "check float cc unordered")
6748 (conditional-check-float-condition-code cfck o OP_6A OPE4_1 Fo "check float cc ordered")