| OLD | NEW |
| 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
| 2 // All Rights Reserved. | 2 // All Rights Reserved. |
| 3 // | 3 // |
| 4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
| 5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
| 6 // met: | 6 // met: |
| 7 // | 7 // |
| 8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
| 9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
| 10 // | 10 // |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 | 241 |
| 242 #define DECLARE_REGISTER(R) \ | 242 #define DECLARE_REGISTER(R) \ |
| 243 const DoubleRegister R = {DoubleRegister::kCode_##R}; | 243 const DoubleRegister R = {DoubleRegister::kCode_##R}; |
| 244 DOUBLE_REGISTERS(DECLARE_REGISTER) | 244 DOUBLE_REGISTERS(DECLARE_REGISTER) |
| 245 #undef DECLARE_REGISTER | 245 #undef DECLARE_REGISTER |
| 246 const DoubleRegister no_double_reg = {DoubleRegister::kCode_no_reg}; | 246 const DoubleRegister no_double_reg = {DoubleRegister::kCode_no_reg}; |
| 247 | 247 |
| 248 | 248 |
| 249 typedef DoubleRegister XMMRegister; | 249 typedef DoubleRegister XMMRegister; |
| 250 | 250 |
| 251 typedef DoubleRegister Simd128Register; |
| 252 |
| 251 enum Condition { | 253 enum Condition { |
| 252 // any value < 0 is considered no_condition | 254 // any value < 0 is considered no_condition |
| 253 no_condition = -1, | 255 no_condition = -1, |
| 254 | 256 |
| 255 overflow = 0, | 257 overflow = 0, |
| 256 no_overflow = 1, | 258 no_overflow = 1, |
| 257 below = 2, | 259 below = 2, |
| 258 above_equal = 3, | 260 above_equal = 3, |
| 259 equal = 4, | 261 equal = 4, |
| 260 not_equal = 5, | 262 not_equal = 5, |
| (...skipping 1944 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2205 Assembler* assembler_; | 2207 Assembler* assembler_; |
| 2206 #ifdef DEBUG | 2208 #ifdef DEBUG |
| 2207 int space_before_; | 2209 int space_before_; |
| 2208 #endif | 2210 #endif |
| 2209 }; | 2211 }; |
| 2210 | 2212 |
| 2211 } // namespace internal | 2213 } // namespace internal |
| 2212 } // namespace v8 | 2214 } // namespace v8 |
| 2213 | 2215 |
| 2214 #endif // V8_X64_ASSEMBLER_X64_H_ | 2216 #endif // V8_X64_ASSEMBLER_X64_H_ |
| OLD | NEW |