OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 const unsigned kWordSizeLog2 = 5; | 123 const unsigned kWordSizeLog2 = 5; |
124 const unsigned kWordSizeInBytes = kWordSize >> 3; | 124 const unsigned kWordSizeInBytes = kWordSize >> 3; |
125 const unsigned kWordSizeInBytesLog2 = kWordSizeLog2 - 3; | 125 const unsigned kWordSizeInBytesLog2 = kWordSizeLog2 - 3; |
126 const unsigned kDoubleWordSize = 64; | 126 const unsigned kDoubleWordSize = 64; |
127 const unsigned kDoubleWordSizeInBytes = kDoubleWordSize >> 3; | 127 const unsigned kDoubleWordSizeInBytes = kDoubleWordSize >> 3; |
128 const unsigned kQuadWordSize = 128; | 128 const unsigned kQuadWordSize = 128; |
129 const unsigned kQuadWordSizeInBytes = kQuadWordSize >> 3; | 129 const unsigned kQuadWordSizeInBytes = kQuadWordSize >> 3; |
130 // AArch64 floating-point specifics. These match IEEE-754. | 130 // AArch64 floating-point specifics. These match IEEE-754. |
131 const unsigned kDoubleMantissaBits = 52; | 131 const unsigned kDoubleMantissaBits = 52; |
132 const unsigned kDoubleExponentBits = 11; | 132 const unsigned kDoubleExponentBits = 11; |
| 133 const unsigned kDoubleExponentBias = 1023; |
133 const unsigned kFloatMantissaBits = 23; | 134 const unsigned kFloatMantissaBits = 23; |
134 const unsigned kFloatExponentBits = 8; | 135 const unsigned kFloatExponentBits = 8; |
135 | 136 |
136 #define REGISTER_CODE_LIST(R) \ | 137 #define REGISTER_CODE_LIST(R) \ |
137 R(0) R(1) R(2) R(3) R(4) R(5) R(6) R(7) \ | 138 R(0) R(1) R(2) R(3) R(4) R(5) R(6) R(7) \ |
138 R(8) R(9) R(10) R(11) R(12) R(13) R(14) R(15) \ | 139 R(8) R(9) R(10) R(11) R(12) R(13) R(14) R(15) \ |
139 R(16) R(17) R(18) R(19) R(20) R(21) R(22) R(23) \ | 140 R(16) R(17) R(18) R(19) R(20) R(21) R(22) R(23) \ |
140 R(24) R(25) R(26) R(27) R(28) R(29) R(30) R(31) | 141 R(24) R(25) R(26) R(27) R(28) R(29) R(30) R(31) |
141 | 142 |
142 #define INSTRUCTION_FIELDS_LIST(V_) \ | 143 #define INSTRUCTION_FIELDS_LIST(V_) \ |
(...skipping 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1262 }; | 1263 }; |
1263 | 1264 |
1264 enum UnallocatedOp { | 1265 enum UnallocatedOp { |
1265 UnallocatedFixed = 0x00000000, | 1266 UnallocatedFixed = 0x00000000, |
1266 UnallocatedFMask = 0x00000000 | 1267 UnallocatedFMask = 0x00000000 |
1267 }; | 1268 }; |
1268 | 1269 |
1269 } } // namespace v8::internal | 1270 } } // namespace v8::internal |
1270 | 1271 |
1271 #endif // V8_ARM64_CONSTANTS_ARM64_H_ | 1272 #endif // V8_ARM64_CONSTANTS_ARM64_H_ |
OLD | NEW |