Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1 | ------------------------------------------------------------------------
|
| 2 | -- dqOr.decTest -- digitwise logical OR for decQuads --
|
Benjamin Peterson | f17ff4e | 2008-07-31 16:32:12 +0000 | [diff] [blame] | 3 | -- Copyright (c) IBM Corporation, 1981, 2008. All rights reserved. --
|
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4 | ------------------------------------------------------------------------
|
| 5 | -- Please see the document "General Decimal Arithmetic Testcases" --
|
| 6 | -- at http://www2.hursley.ibm.com/decimal for the description of --
|
| 7 | -- these testcases. --
|
| 8 | -- --
|
| 9 | -- These testcases are experimental ('beta' versions), and they --
|
| 10 | -- may contain errors. They are offered on an as-is basis. In --
|
| 11 | -- particular, achieving the same results as the tests here is not --
|
| 12 | -- a guarantee that an implementation complies with any Standard --
|
| 13 | -- or specification. The tests are not exhaustive. --
|
| 14 | -- --
|
| 15 | -- Please send comments, suggestions, and corrections to the author: --
|
| 16 | -- Mike Cowlishaw, IBM Fellow --
|
| 17 | -- IBM UK, PO Box 31, Birmingham Road, Warwick CV34 5JL, UK --
|
| 18 | -- mfc@uk.ibm.com --
|
| 19 | ------------------------------------------------------------------------
|
Mark Dickinson | 8a54653 | 2009-10-08 16:30:38 +0000 | [diff] [blame] | 20 | version: 2.59
|
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 21 |
|
| 22 | extended: 1
|
| 23 | clamp: 1
|
| 24 | precision: 34
|
| 25 | maxExponent: 6144
|
| 26 | minExponent: -6143
|
| 27 | rounding: half_even
|
| 28 |
|
| 29 | -- Sanity check (truth table)
|
| 30 | dqor001 or 0 0 -> 0
|
| 31 | dqor002 or 0 1 -> 1
|
| 32 | dqor003 or 1 0 -> 1
|
| 33 | dqor004 or 1 1 -> 1
|
| 34 | dqor005 or 1100 1010 -> 1110
|
| 35 | -- and at msd and msd-1
|
| 36 | dqor006 or 0000000000000000000000000000000000 0000000000000000000000000000000000 -> 0
|
| 37 | dqor007 or 0000000000000000000000000000000000 1000000000000000000000000000000000 -> 1000000000000000000000000000000000
|
| 38 | dqor008 or 1000000000000000000000000000000000 0000000000000000000000000000000000 -> 1000000000000000000000000000000000
|
| 39 | dqor009 or 1000000000000000000000000000000000 1000000000000000000000000000000000 -> 1000000000000000000000000000000000
|
| 40 | dqor010 or 0000000000000000000000000000000000 0000000000000000000000000000000000 -> 0
|
| 41 | dqor011 or 0000000000000000000000000000000000 0100000000000000000000000000000000 -> 100000000000000000000000000000000
|
| 42 | dqor012 or 0100000000000000000000000000000000 0000000000000000000000000000000000 -> 100000000000000000000000000000000
|
| 43 | dqor013 or 0100000000000000000000000000000000 0100000000000000000000000000000000 -> 100000000000000000000000000000000
|
| 44 |
|
| 45 | -- Various lengths
|
| 46 | dqor601 or 0111111111111111111111111111111111 1111111111111111111111111111111110 -> 1111111111111111111111111111111111
|
| 47 | dqor602 or 1011111111111111111111111111111111 1111111111111111111111111111111101 -> 1111111111111111111111111111111111
|
| 48 | dqor603 or 1101111111111111111111111111111111 1111111111111111111111111111111011 -> 1111111111111111111111111111111111
|
| 49 | dqor604 or 1110111111111111111111111111111111 1111111111111111111111111111110111 -> 1111111111111111111111111111111111
|
| 50 | dqor605 or 1111011111111111111111111111111111 1111111111111111111111111111101111 -> 1111111111111111111111111111111111
|
| 51 | dqor606 or 1111101111111111111111111111111111 1111111111111111111111111111011111 -> 1111111111111111111111111111111111
|
| 52 | dqor607 or 1111110111111111111111111111111111 1111111111111111111111111110111111 -> 1111111111111111111111111111111111
|
| 53 | dqor608 or 1111111011111111111111111111111111 1111111111111111111111111101111111 -> 1111111111111111111111111111111111
|
| 54 | dqor609 or 1111111101111111111111111111111111 1111111111111111111111111011111111 -> 1111111111111111111111111111111111
|
| 55 | dqor610 or 1111111110111111111111111111111111 1111111111111111111111110111111111 -> 1111111111111111111111111111111111
|
| 56 | dqor611 or 1111111111011111111111111111111111 1111111111111111111111101111111111 -> 1111111111111111111111111111111111
|
| 57 | dqor612 or 1111111111101111111111111111111111 1111111111111111111111011111111111 -> 1111111111111111111111111111111111
|
| 58 | dqor613 or 1111111111110111111111111111111111 1111111111111111111110111111111111 -> 1111111111111111111111111111111111
|
| 59 | dqor614 or 1111111111111011111111111111111111 1111111111111111111101111111111111 -> 1111111111111111111111111111111111
|
| 60 | dqor615 or 1111111111111101111111111111111111 1111111111111111111011111111111111 -> 1111111111111111111111111111111111
|
| 61 | dqor616 or 1111111111111110111111111111111111 1111111111111111110111111111111111 -> 1111111111111111111111111111111111
|
| 62 | dqor617 or 1111111111111111011111111111111111 1111111111111111101111111111111111 -> 1111111111111111111111111111111111
|
| 63 | dqor618 or 1111111111111111101111111111111111 1111111111111111011111111111111111 -> 1111111111111111111111111111111111
|
| 64 | dqor619 or 1111111111111111110111111111111111 1111111111111110111111111111111111 -> 1111111111111111111111111111111111
|
| 65 | dqor620 or 1111111111111111111011111111111111 1111111111111101111111111111111111 -> 1111111111111111111111111111111111
|
| 66 | dqor621 or 1111111111111111111101111111111111 1111111111111011111111111111111111 -> 1111111111111111111111111111111111
|
| 67 | dqor622 or 1111111111111111111110111111111111 1111111111110111111111111111111111 -> 1111111111111111111111111111111111
|
| 68 | dqor623 or 1111111111111111111111011111111111 1111111111101111111111111111111111 -> 1111111111111111111111111111111111
|
| 69 | dqor624 or 1111111111111111111111101111111111 1111111111011111111111111111111111 -> 1111111111111111111111111111111111
|
| 70 | dqor625 or 1111111111111111111111110111111111 1111111110111111111111111111111111 -> 1111111111111111111111111111111111
|
| 71 | dqor626 or 1111111111111111111111111011111111 1111111101111111111111111111111111 -> 1111111111111111111111111111111111
|
| 72 | dqor627 or 1111111111111111111111111101111111 1111111011111111111111111111111111 -> 1111111111111111111111111111111111
|
| 73 | dqor628 or 1111111111111111111111111110111111 1111110111111111111111111111111111 -> 1111111111111111111111111111111111
|
| 74 | dqor629 or 1111111111111111111111111111011111 1111101111111111111111111111111111 -> 1111111111111111111111111111111111
|
| 75 | dqor630 or 1111111111111111111111111111101111 1111011111111111111111111111111111 -> 1111111111111111111111111111111111
|
| 76 | dqor631 or 1111111111111111111111111111110111 1110111111111111111111111111111111 -> 1111111111111111111111111111111111
|
| 77 | dqor632 or 1111111111111111111111111111111011 1101111111111111111111111111111111 -> 1111111111111111111111111111111111
|
| 78 | dqor633 or 1111111111111111111111111111111101 1011111111111111111111111111111111 -> 1111111111111111111111111111111111
|
| 79 | dqor634 or 1111111111111111111111111111111110 0111111111111111111111111111111111 -> 1111111111111111111111111111111111
|
| 80 |
|
| 81 | dqor641 or 1111111111111111111111111111111110 0111111111111111111111111111111111 -> 1111111111111111111111111111111111
|
| 82 | dqor642 or 1111111111111111111111111111111101 1011111111111111111111111111111111 -> 1111111111111111111111111111111111
|
| 83 | dqor643 or 1111111111111111111111111111111011 1101111111111111111111111111111111 -> 1111111111111111111111111111111111
|
| 84 | dqor644 or 1111111111111111111111111111110111 1110111111111111111111111111111111 -> 1111111111111111111111111111111111
|
| 85 | dqor645 or 1111111111111111111111111111101111 1111011111111111111111111111111111 -> 1111111111111111111111111111111111
|
| 86 | dqor646 or 1111111111111111111111111111011111 1111101111111111111111111111111111 -> 1111111111111111111111111111111111
|
| 87 | dqor647 or 1111111111111111111111111110111111 1111110111111111111111111111111111 -> 1111111111111111111111111111111111
|
| 88 | dqor648 or 1111111111111111111111111101111111 1111111011111111111111111111111111 -> 1111111111111111111111111111111111
|
| 89 | dqor649 or 1111111111111111111111111011111111 1111111101111111111111111111111111 -> 1111111111111111111111111111111111
|
| 90 | dqor650 or 1111111111111111111111110111111111 1111111110111111111111111111111111 -> 1111111111111111111111111111111111
|
| 91 | dqor651 or 1111111111111111111111101111111111 1111111111011111111111111111111111 -> 1111111111111111111111111111111111
|
| 92 | dqor652 or 1111111111111111111111011111111111 1111111111101111111111111111111111 -> 1111111111111111111111111111111111
|
| 93 | dqor653 or 1111111111111111111110111111111111 1111111111110111111111111111111111 -> 1111111111111111111111111111111111
|
| 94 | dqor654 or 1111111111111111111101111111111111 1111111111111011111111111111111111 -> 1111111111111111111111111111111111
|
| 95 | dqor655 or 1111111111111111111011111111111111 1111111111111101111111111111111111 -> 1111111111111111111111111111111111
|
| 96 | dqor656 or 1111111111111111110111111111111111 1111111111111110111111111111111111 -> 1111111111111111111111111111111111
|
| 97 | dqor657 or 1010101010101010101010101010101010 1010101010101010001010101010101010 -> 1010101010101010101010101010101010
|
| 98 | dqor658 or 1111111111111111011111111111111111 1111111111111111101111111111111111 -> 1111111111111111111111111111111111
|
| 99 | dqor659 or 1111111111111110111111111111111111 1111111111111111110111111111111111 -> 1111111111111111111111111111111111
|
| 100 | dqor660 or 1111111111111101111111111111111111 1111111111111111111011111111111111 -> 1111111111111111111111111111111111
|
| 101 | dqor661 or 1111111111111011111111111111111111 1111111111111111111101111111111111 -> 1111111111111111111111111111111111
|
| 102 | dqor662 or 1111111111110111111111111111111111 1111111111111111111110111111111111 -> 1111111111111111111111111111111111
|
| 103 | dqor663 or 1111111111101111111111111111111111 1111111111111111111111011111111111 -> 1111111111111111111111111111111111
|
| 104 | dqor664 or 1111111111011111111111111111111111 1111111111111111111111101111111111 -> 1111111111111111111111111111111111
|
| 105 | dqor665 or 1111111110111111111111111111111111 1111111111111111111111110111111111 -> 1111111111111111111111111111111111
|
| 106 | dqor666 or 0101010101010101010101010101010101 0101010101010101010101010001010101 -> 101010101010101010101010101010101
|
| 107 | dqor667 or 1111111011111111111111111111111111 1111111111111111111111111101111111 -> 1111111111111111111111111111111111
|
| 108 | dqor668 or 1111110111111111111111111111111111 1111111111111111111111111110111111 -> 1111111111111111111111111111111111
|
| 109 | dqor669 or 1111101111111111111111111111111111 1111111111111111111111111111011111 -> 1111111111111111111111111111111111
|
| 110 | dqor670 or 1111011111111111111111111111111111 1111111111111111111111111111101111 -> 1111111111111111111111111111111111
|
| 111 | dqor671 or 1110111111111111111111111111111111 1111111111111111111111111111110111 -> 1111111111111111111111111111111111
|
| 112 | dqor672 or 1101111111111111111111111111111111 1111111111111111111111111111111011 -> 1111111111111111111111111111111111
|
| 113 | dqor673 or 1011111111111111111111111111111111 1111111111111111111111111111111101 -> 1111111111111111111111111111111111
|
| 114 | dqor674 or 0111111111111111111111111111111111 1111111111111111111111111111111110 -> 1111111111111111111111111111111111
|
| 115 | dqor675 or 0111111111111111111111111111111110 1111111111111111111111111111111110 -> 1111111111111111111111111111111110
|
| 116 | dqor676 or 1111111111111111111111111111111110 1111111111111111111111111111111110 -> 1111111111111111111111111111111110
|
| 117 |
|
| 118 | dqor681 or 0111111111111111111111111111111111 0111111111011111111111111111111110 -> 111111111111111111111111111111111
|
| 119 | dqor682 or 1011111111111111111111111111111111 1011111110101111111111111111111101 -> 1011111111111111111111111111111111
|
| 120 | dqor683 or 1101111111111111111111111111111111 1101111101110111111111111111111011 -> 1101111111111111111111111111111111
|
| 121 | dqor684 or 1110111111111111111111111111111111 1110111011111011111111111111110111 -> 1110111111111111111111111111111111
|
| 122 | dqor685 or 1111011111111111111111111111111111 1111010111111101111111111111101111 -> 1111011111111111111111111111111111
|
| 123 | dqor686 or 1111101111111111111111111111111111 1111101111111110111111111111011111 -> 1111101111111111111111111111111111
|
| 124 | dqor687 or 1111110111111111111111111111111111 1111010111111111011111111110111111 -> 1111110111111111111111111111111111
|
| 125 | dqor688 or 1111111011111111111111111111111111 1110111011111111101111111101111111 -> 1111111011111111111111111111111111
|
| 126 | dqor689 or 1111111101111111111111111111111111 1101111101111111110111111011111111 -> 1111111101111111111111111111111111
|
| 127 | dqor690 or 1111111110111111111111111111111111 1011111110111111111011110111111110 -> 1111111110111111111111111111111111
|
| 128 | dqor691 or 1111111111011111111111111111111111 0111111111011111111101101111111101 -> 1111111111011111111111111111111111
|
| 129 | dqor692 or 1111111111101111111111111111111111 1111111111101111111110011111111011 -> 1111111111101111111111111111111111
|
| 130 | dqor693 or 1111111111110111111111111111111111 1111111111110111111110011111110111 -> 1111111111110111111111111111111111
|
| 131 | dqor694 or 1111111111111011111111111111111111 1111111111111011111101101111101111 -> 1111111111111011111111111111111111
|
| 132 | dqor695 or 1111111111111101111111111111111111 1111111111111101111011110111011111 -> 1111111111111101111111111111111111
|
| 133 | dqor696 or 1111111111111110111111111111111111 1111111111111110110111111010111111 -> 1111111111111110111111111111111111
|
| 134 | dqor697 or 1111111111111111011111111111111111 1111111111111111001111111101111111 -> 1111111111111111011111111111111111
|
| 135 | dqor698 or 1111111111111111101111111111111111 1111111111111111001111111010111111 -> 1111111111111111101111111111111111
|
| 136 | dqor699 or 1111111111111111110111111111111111 1111111111111110110111110111011111 -> 1111111111111111110111111111111111
|
| 137 | dqor700 or 1111111111111111111011111111111111 1111111111111101111011101111101111 -> 1111111111111111111011111111111111
|
| 138 | dqor701 or 1111111111111111111101111111111111 1111111111111011111101011111110111 -> 1111111111111111111101111111111111
|
| 139 | dqor702 or 1111111111111111111110111111111111 1111111111110111111110111111111011 -> 1111111111111111111110111111111111
|
| 140 | dqor703 or 1111111111111111111111011111111111 1111111111101111111101011111111101 -> 1111111111111111111111011111111111
|
| 141 | dqor704 or 1111111111111111111111101111111111 1111111111011111111011101111111110 -> 1111111111111111111111101111111111
|
| 142 | dqor705 or 1111111111111111111111110111111111 0111111110111111110111110111111111 -> 1111111111111111111111110111111111
|
| 143 | dqor706 or 1111111111111111111111111011111111 1011111101111111101111111011111111 -> 1111111111111111111111111011111111
|
| 144 | dqor707 or 1111111111111111111111111101111111 1101111011111111011111111101111111 -> 1111111111111111111111111101111111
|
| 145 | dqor708 or 1111111111111111111111111110111111 1110110111111110111111111110111111 -> 1111111111111111111111111110111111
|
| 146 | dqor709 or 1111111111111111111111111111011111 1111001111111101111111111111011111 -> 1111111111111111111111111111011111
|
| 147 | dqor710 or 1111111111111111111111111111101111 1111001111111011111111111111101111 -> 1111111111111111111111111111101111
|
| 148 | dqor711 or 1111111111111111111111111111110111 1110110111110111111111111111110111 -> 1111111111111111111111111111110111
|
| 149 | dqor712 or 1111111111111111111111111111111011 1101111011101111111111111111111011 -> 1111111111111111111111111111111011
|
| 150 | dqor713 or 1111111111111111111111111111111101 1011111101011111111111111111111101 -> 1111111111111111111111111111111101
|
| 151 | dqor714 or 1111111111111111111111111111111110 0111111110111111111111111111111110 -> 1111111111111111111111111111111110
|
| 152 |
|
| 153 |
|
| 154 |
|
| 155 | -- 1234567890123456 1234567890123456 1234567890123456
|
| 156 | dqor020 or 1111111111111111 1111111111111111 -> 1111111111111111
|
| 157 | dqor021 or 111111111111111 111111111111111 -> 111111111111111
|
| 158 | dqor022 or 11111111111111 11111111111111 -> 11111111111111
|
| 159 | dqor023 or 1111111111111 1111111111111 -> 1111111111111
|
| 160 | dqor024 or 111111111111 111111111111 -> 111111111111
|
| 161 | dqor025 or 11111111111 11111111111 -> 11111111111
|
| 162 | dqor026 or 1111111111 1111111111 -> 1111111111
|
| 163 | dqor027 or 111111111 111111111 -> 111111111
|
| 164 | dqor028 or 11111111 11111111 -> 11111111
|
| 165 | dqor029 or 1111111 1111111 -> 1111111
|
| 166 | dqor030 or 111111 111111 -> 111111
|
| 167 | dqor031 or 11111 11111 -> 11111
|
| 168 | dqor032 or 1111 1111 -> 1111
|
| 169 | dqor033 or 111 111 -> 111
|
| 170 | dqor034 or 11 11 -> 11
|
| 171 | dqor035 or 1 1 -> 1
|
| 172 | dqor036 or 0 0 -> 0
|
| 173 |
|
| 174 | dqor042 or 111111110000000 1111111110000000 -> 1111111110000000
|
| 175 | dqor043 or 11111110000000 1000000100000000 -> 1011111110000000
|
| 176 | dqor044 or 1111110000000 1000001000000000 -> 1001111110000000
|
| 177 | dqor045 or 111110000000 1000010000000000 -> 1000111110000000
|
| 178 | dqor046 or 11110000000 1000100000000000 -> 1000111110000000
|
| 179 | dqor047 or 1110000000 1001000000000000 -> 1001001110000000
|
| 180 | dqor048 or 110000000 1010000000000000 -> 1010000110000000
|
| 181 | dqor049 or 10000000 1100000000000000 -> 1100000010000000
|
| 182 |
|
| 183 | dqor090 or 011111111 111101111 -> 111111111
|
| 184 | dqor091 or 101111111 111101111 -> 111111111
|
| 185 | dqor092 or 110111111 111101111 -> 111111111
|
| 186 | dqor093 or 111011111 111101111 -> 111111111
|
| 187 | dqor094 or 111101111 111101111 -> 111101111
|
| 188 | dqor095 or 111110111 111101111 -> 111111111
|
| 189 | dqor096 or 111111011 111101111 -> 111111111
|
| 190 | dqor097 or 111111101 111101111 -> 111111111
|
| 191 | dqor098 or 111111110 111101111 -> 111111111
|
| 192 |
|
| 193 | dqor100 or 111101111 011111111 -> 111111111
|
| 194 | dqor101 or 111101111 101111111 -> 111111111
|
| 195 | dqor102 or 111101111 110111111 -> 111111111
|
| 196 | dqor103 or 111101111 111011111 -> 111111111
|
| 197 | dqor104 or 111101111 111101111 -> 111101111
|
| 198 | dqor105 or 111101111 111110111 -> 111111111
|
| 199 | dqor106 or 111101111 111111011 -> 111111111
|
| 200 | dqor107 or 111101111 111111101 -> 111111111
|
| 201 | dqor108 or 111101111 111111110 -> 111111111
|
| 202 |
|
| 203 | -- non-0/1 should not be accepted, nor should signs
|
| 204 | dqor220 or 111111112 111111111 -> NaN Invalid_operation
|
| 205 | dqor221 or 333333333 333333333 -> NaN Invalid_operation
|
| 206 | dqor222 or 555555555 555555555 -> NaN Invalid_operation
|
| 207 | dqor223 or 777777777 777777777 -> NaN Invalid_operation
|
| 208 | dqor224 or 999999999 999999999 -> NaN Invalid_operation
|
| 209 | dqor225 or 222222222 999999999 -> NaN Invalid_operation
|
| 210 | dqor226 or 444444444 999999999 -> NaN Invalid_operation
|
| 211 | dqor227 or 666666666 999999999 -> NaN Invalid_operation
|
| 212 | dqor228 or 888888888 999999999 -> NaN Invalid_operation
|
| 213 | dqor229 or 999999999 222222222 -> NaN Invalid_operation
|
| 214 | dqor230 or 999999999 444444444 -> NaN Invalid_operation
|
| 215 | dqor231 or 999999999 666666666 -> NaN Invalid_operation
|
| 216 | dqor232 or 999999999 888888888 -> NaN Invalid_operation
|
| 217 | -- a few randoms
|
| 218 | dqor240 or 567468689 -934981942 -> NaN Invalid_operation
|
| 219 | dqor241 or 567367689 934981942 -> NaN Invalid_operation
|
| 220 | dqor242 or -631917772 -706014634 -> NaN Invalid_operation
|
| 221 | dqor243 or -756253257 138579234 -> NaN Invalid_operation
|
| 222 | dqor244 or 835590149 567435400 -> NaN Invalid_operation
|
| 223 | -- test MSD
|
| 224 | dqor250 or 2000000111000111000111000000000000 1000000111000111000111000000000000 -> NaN Invalid_operation
|
| 225 | dqor251 or 7000000111000111000111000000000000 1000000111000111000111000000000000 -> NaN Invalid_operation
|
| 226 | dqor252 or 8000000111000111000111000000000000 1000000111000111000111000000000000 -> NaN Invalid_operation
|
| 227 | dqor253 or 9000000111000111000111000000000000 1000000111000111000111000000000000 -> NaN Invalid_operation
|
| 228 | dqor254 or 2000000111000111000111000000000000 0000000111000111000111000000000000 -> NaN Invalid_operation
|
| 229 | dqor255 or 7000000111000111000111000000000000 0000000111000111000111000000000000 -> NaN Invalid_operation
|
| 230 | dqor256 or 8000000111000111000111000000000000 0000000111000111000111000000000000 -> NaN Invalid_operation
|
| 231 | dqor257 or 9000000111000111000111000000000000 0000000111000111000111000000000000 -> NaN Invalid_operation
|
| 232 | dqor258 or 1000000111000111000111000000000000 2000000111000111000111000000000000 -> NaN Invalid_operation
|
| 233 | dqor259 or 1000000111000111000111000000000000 7000000111000111000111000000000000 -> NaN Invalid_operation
|
| 234 | dqor260 or 1000000111000111000111000000000000 8000000111000111000111000000000000 -> NaN Invalid_operation
|
| 235 | dqor261 or 1000000111000111000111000000000000 9000000111000111000111000000000000 -> NaN Invalid_operation
|
| 236 | dqor262 or 0000000111000111000111000000000000 2000000111000111000111000000000000 -> NaN Invalid_operation
|
| 237 | dqor263 or 0000000111000111000111000000000000 7000000111000111000111000000000000 -> NaN Invalid_operation
|
| 238 | dqor264 or 0000000111000111000111000000000000 8000000111000111000111000000000000 -> NaN Invalid_operation
|
| 239 | dqor265 or 0000000111000111000111000000000000 9000000111000111000111000000000000 -> NaN Invalid_operation
|
| 240 | -- test MSD-1
|
| 241 | dqor270 or 0200000111000111000111001000000000 1000000111000111000111100000000010 -> NaN Invalid_operation
|
| 242 | dqor271 or 0700000111000111000111000100000000 1000000111000111000111010000000100 -> NaN Invalid_operation
|
| 243 | dqor272 or 0800000111000111000111000010000000 1000000111000111000111001000001000 -> NaN Invalid_operation
|
| 244 | dqor273 or 0900000111000111000111000001000000 1000000111000111000111000100010000 -> NaN Invalid_operation
|
| 245 | dqor274 or 1000000111000111000111000000100000 0200000111000111000111000010100000 -> NaN Invalid_operation
|
| 246 | dqor275 or 1000000111000111000111000000010000 0700000111000111000111000001000000 -> NaN Invalid_operation
|
| 247 | dqor276 or 1000000111000111000111000000001000 0800000111000111000111000010100000 -> NaN Invalid_operation
|
| 248 | dqor277 or 1000000111000111000111000000000100 0900000111000111000111000000010000 -> NaN Invalid_operation
|
| 249 | -- test LSD
|
| 250 | dqor280 or 0010000111000111000111000000000002 1000000111000111000111000100000001 -> NaN Invalid_operation
|
| 251 | dqor281 or 0001000111000111000111000000000007 1000000111000111000111001000000011 -> NaN Invalid_operation
|
| 252 | dqor282 or 0000000111000111000111100000000008 1000000111000111000111010000000001 -> NaN Invalid_operation
|
| 253 | dqor283 or 0000000111000111000111010000000009 1000000111000111000111100000000001 -> NaN Invalid_operation
|
| 254 | dqor284 or 1000000111000111000111001000000000 0001000111000111000111000000000002 -> NaN Invalid_operation
|
| 255 | dqor285 or 1000000111000111000111000100000000 0010000111000111000111000000000007 -> NaN Invalid_operation
|
| 256 | dqor286 or 1000000111000111000111000010000000 0100000111000111000111000000000008 -> NaN Invalid_operation
|
| 257 | dqor287 or 1000000111000111000111000001000000 1000000111000111000111000000000009 -> NaN Invalid_operation
|
| 258 | -- test Middie
|
| 259 | dqor288 or 0010000111000111000111000020000000 1000000111000111000111001000000000 -> NaN Invalid_operation
|
| 260 | dqor289 or 0001000111000111000111000070000001 1000000111000111000111000100000000 -> NaN Invalid_operation
|
| 261 | dqor290 or 0000000111000111000111100080000010 1000000111000111000111000010000000 -> NaN Invalid_operation
|
| 262 | dqor291 or 0000000111000111000111010090000100 1000000111000111000111000001000000 -> NaN Invalid_operation
|
| 263 | dqor292 or 1000000111000111000111001000001000 0000000111000111000111000020100000 -> NaN Invalid_operation
|
| 264 | dqor293 or 1000000111000111000111000100010000 0000000111000111000111000070010000 -> NaN Invalid_operation
|
| 265 | dqor294 or 1000000111000111000111000010100000 0000000111000111000111000080001000 -> NaN Invalid_operation
|
| 266 | dqor295 or 1000000111000111000111000001000000 0000000111000111000111000090000100 -> NaN Invalid_operation
|
| 267 | -- signs
|
| 268 | dqor296 or -1000000111000111000111000001000000 -0000001110001110001110010000000100 -> NaN Invalid_operation
|
| 269 | dqor297 or -1000000111000111000111000001000000 0000001110001110001110000010000100 -> NaN Invalid_operation
|
| 270 | dqor298 or 1000000111000111000111000001000000 -0000001110001110001110001000000100 -> NaN Invalid_operation
|
| 271 | dqor299 or 1000000111000111000111000001000000 0000001110001110001110000011000100 -> 1000001111001111001111000011000100
|
| 272 |
|
| 273 | -- Nmax, Nmin, Ntiny-like
|
| 274 | dqor331 or 2 9.99999999E+1999 -> NaN Invalid_operation
|
| 275 | dqor332 or 3 1E-1999 -> NaN Invalid_operation
|
| 276 | dqor333 or 4 1.00000000E-1999 -> NaN Invalid_operation
|
| 277 | dqor334 or 5 1E-1009 -> NaN Invalid_operation
|
| 278 | dqor335 or 6 -1E-1009 -> NaN Invalid_operation
|
| 279 | dqor336 or 7 -1.00000000E-1999 -> NaN Invalid_operation
|
| 280 | dqor337 or 8 -1E-1999 -> NaN Invalid_operation
|
| 281 | dqor338 or 9 -9.99999999E+1999 -> NaN Invalid_operation
|
| 282 | dqor341 or 9.99999999E+2999 -18 -> NaN Invalid_operation
|
| 283 | dqor342 or 1E-2999 01 -> NaN Invalid_operation
|
| 284 | dqor343 or 1.00000000E-2999 -18 -> NaN Invalid_operation
|
| 285 | dqor344 or 1E-1009 18 -> NaN Invalid_operation
|
| 286 | dqor345 or -1E-1009 -10 -> NaN Invalid_operation
|
| 287 | dqor346 or -1.00000000E-2999 18 -> NaN Invalid_operation
|
| 288 | dqor347 or -1E-2999 10 -> NaN Invalid_operation
|
| 289 | dqor348 or -9.99999999E+2999 -18 -> NaN Invalid_operation
|
| 290 |
|
| 291 | -- A few other non-integers
|
| 292 | dqor361 or 1.0 1 -> NaN Invalid_operation
|
| 293 | dqor362 or 1E+1 1 -> NaN Invalid_operation
|
| 294 | dqor363 or 0.0 1 -> NaN Invalid_operation
|
| 295 | dqor364 or 0E+1 1 -> NaN Invalid_operation
|
| 296 | dqor365 or 9.9 1 -> NaN Invalid_operation
|
| 297 | dqor366 or 9E+1 1 -> NaN Invalid_operation
|
| 298 | dqor371 or 0 1.0 -> NaN Invalid_operation
|
| 299 | dqor372 or 0 1E+1 -> NaN Invalid_operation
|
| 300 | dqor373 or 0 0.0 -> NaN Invalid_operation
|
| 301 | dqor374 or 0 0E+1 -> NaN Invalid_operation
|
| 302 | dqor375 or 0 9.9 -> NaN Invalid_operation
|
| 303 | dqor376 or 0 9E+1 -> NaN Invalid_operation
|
| 304 |
|
| 305 | -- All Specials are in error
|
| 306 | dqor780 or -Inf -Inf -> NaN Invalid_operation
|
| 307 | dqor781 or -Inf -1000 -> NaN Invalid_operation
|
| 308 | dqor782 or -Inf -1 -> NaN Invalid_operation
|
| 309 | dqor783 or -Inf -0 -> NaN Invalid_operation
|
| 310 | dqor784 or -Inf 0 -> NaN Invalid_operation
|
| 311 | dqor785 or -Inf 1 -> NaN Invalid_operation
|
| 312 | dqor786 or -Inf 1000 -> NaN Invalid_operation
|
| 313 | dqor787 or -1000 -Inf -> NaN Invalid_operation
|
| 314 | dqor788 or -Inf -Inf -> NaN Invalid_operation
|
| 315 | dqor789 or -1 -Inf -> NaN Invalid_operation
|
| 316 | dqor790 or -0 -Inf -> NaN Invalid_operation
|
| 317 | dqor791 or 0 -Inf -> NaN Invalid_operation
|
| 318 | dqor792 or 1 -Inf -> NaN Invalid_operation
|
| 319 | dqor793 or 1000 -Inf -> NaN Invalid_operation
|
| 320 | dqor794 or Inf -Inf -> NaN Invalid_operation
|
| 321 |
|
| 322 | dqor800 or Inf -Inf -> NaN Invalid_operation
|
| 323 | dqor801 or Inf -1000 -> NaN Invalid_operation
|
| 324 | dqor802 or Inf -1 -> NaN Invalid_operation
|
| 325 | dqor803 or Inf -0 -> NaN Invalid_operation
|
| 326 | dqor804 or Inf 0 -> NaN Invalid_operation
|
| 327 | dqor805 or Inf 1 -> NaN Invalid_operation
|
| 328 | dqor806 or Inf 1000 -> NaN Invalid_operation
|
| 329 | dqor807 or Inf Inf -> NaN Invalid_operation
|
| 330 | dqor808 or -1000 Inf -> NaN Invalid_operation
|
| 331 | dqor809 or -Inf Inf -> NaN Invalid_operation
|
| 332 | dqor810 or -1 Inf -> NaN Invalid_operation
|
| 333 | dqor811 or -0 Inf -> NaN Invalid_operation
|
| 334 | dqor812 or 0 Inf -> NaN Invalid_operation
|
| 335 | dqor813 or 1 Inf -> NaN Invalid_operation
|
| 336 | dqor814 or 1000 Inf -> NaN Invalid_operation
|
| 337 | dqor815 or Inf Inf -> NaN Invalid_operation
|
| 338 |
|
| 339 | dqor821 or NaN -Inf -> NaN Invalid_operation
|
| 340 | dqor822 or NaN -1000 -> NaN Invalid_operation
|
| 341 | dqor823 or NaN -1 -> NaN Invalid_operation
|
| 342 | dqor824 or NaN -0 -> NaN Invalid_operation
|
| 343 | dqor825 or NaN 0 -> NaN Invalid_operation
|
| 344 | dqor826 or NaN 1 -> NaN Invalid_operation
|
| 345 | dqor827 or NaN 1000 -> NaN Invalid_operation
|
| 346 | dqor828 or NaN Inf -> NaN Invalid_operation
|
| 347 | dqor829 or NaN NaN -> NaN Invalid_operation
|
| 348 | dqor830 or -Inf NaN -> NaN Invalid_operation
|
| 349 | dqor831 or -1000 NaN -> NaN Invalid_operation
|
| 350 | dqor832 or -1 NaN -> NaN Invalid_operation
|
| 351 | dqor833 or -0 NaN -> NaN Invalid_operation
|
| 352 | dqor834 or 0 NaN -> NaN Invalid_operation
|
| 353 | dqor835 or 1 NaN -> NaN Invalid_operation
|
| 354 | dqor836 or 1000 NaN -> NaN Invalid_operation
|
| 355 | dqor837 or Inf NaN -> NaN Invalid_operation
|
| 356 |
|
| 357 | dqor841 or sNaN -Inf -> NaN Invalid_operation
|
| 358 | dqor842 or sNaN -1000 -> NaN Invalid_operation
|
| 359 | dqor843 or sNaN -1 -> NaN Invalid_operation
|
| 360 | dqor844 or sNaN -0 -> NaN Invalid_operation
|
| 361 | dqor845 or sNaN 0 -> NaN Invalid_operation
|
| 362 | dqor846 or sNaN 1 -> NaN Invalid_operation
|
| 363 | dqor847 or sNaN 1000 -> NaN Invalid_operation
|
| 364 | dqor848 or sNaN NaN -> NaN Invalid_operation
|
| 365 | dqor849 or sNaN sNaN -> NaN Invalid_operation
|
| 366 | dqor850 or NaN sNaN -> NaN Invalid_operation
|
| 367 | dqor851 or -Inf sNaN -> NaN Invalid_operation
|
| 368 | dqor852 or -1000 sNaN -> NaN Invalid_operation
|
| 369 | dqor853 or -1 sNaN -> NaN Invalid_operation
|
| 370 | dqor854 or -0 sNaN -> NaN Invalid_operation
|
| 371 | dqor855 or 0 sNaN -> NaN Invalid_operation
|
| 372 | dqor856 or 1 sNaN -> NaN Invalid_operation
|
| 373 | dqor857 or 1000 sNaN -> NaN Invalid_operation
|
| 374 | dqor858 or Inf sNaN -> NaN Invalid_operation
|
| 375 | dqor859 or NaN sNaN -> NaN Invalid_operation
|
| 376 |
|
| 377 | -- propagating NaNs
|
| 378 | dqor861 or NaN1 -Inf -> NaN Invalid_operation
|
| 379 | dqor862 or +NaN2 -1000 -> NaN Invalid_operation
|
| 380 | dqor863 or NaN3 1000 -> NaN Invalid_operation
|
| 381 | dqor864 or NaN4 Inf -> NaN Invalid_operation
|
| 382 | dqor865 or NaN5 +NaN6 -> NaN Invalid_operation
|
| 383 | dqor866 or -Inf NaN7 -> NaN Invalid_operation
|
| 384 | dqor867 or -1000 NaN8 -> NaN Invalid_operation
|
| 385 | dqor868 or 1000 NaN9 -> NaN Invalid_operation
|
| 386 | dqor869 or Inf +NaN10 -> NaN Invalid_operation
|
| 387 | dqor871 or sNaN11 -Inf -> NaN Invalid_operation
|
| 388 | dqor872 or sNaN12 -1000 -> NaN Invalid_operation
|
| 389 | dqor873 or sNaN13 1000 -> NaN Invalid_operation
|
| 390 | dqor874 or sNaN14 NaN17 -> NaN Invalid_operation
|
| 391 | dqor875 or sNaN15 sNaN18 -> NaN Invalid_operation
|
| 392 | dqor876 or NaN16 sNaN19 -> NaN Invalid_operation
|
| 393 | dqor877 or -Inf +sNaN20 -> NaN Invalid_operation
|
| 394 | dqor878 or -1000 sNaN21 -> NaN Invalid_operation
|
| 395 | dqor879 or 1000 sNaN22 -> NaN Invalid_operation
|
| 396 | dqor880 or Inf sNaN23 -> NaN Invalid_operation
|
| 397 | dqor881 or +NaN25 +sNaN24 -> NaN Invalid_operation
|
| 398 | dqor882 or -NaN26 NaN28 -> NaN Invalid_operation
|
| 399 | dqor883 or -sNaN27 sNaN29 -> NaN Invalid_operation
|
| 400 | dqor884 or 1000 -NaN30 -> NaN Invalid_operation
|
| 401 | dqor885 or 1000 -sNaN31 -> NaN Invalid_operation
|