| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 196   V(xmm7)                               \ | 196   V(xmm7)                               \ | 
| 197   V(xmm8)                               \ | 197   V(xmm8)                               \ | 
| 198   V(xmm9)                               \ | 198   V(xmm9)                               \ | 
| 199   V(xmm10)                              \ | 199   V(xmm10)                              \ | 
| 200   V(xmm11)                              \ | 200   V(xmm11)                              \ | 
| 201   V(xmm12)                              \ | 201   V(xmm12)                              \ | 
| 202   V(xmm13)                              \ | 202   V(xmm13)                              \ | 
| 203   V(xmm14) | 203   V(xmm14) | 
| 204 | 204 | 
| 205 static const bool kSimpleFPAliasing = true; | 205 static const bool kSimpleFPAliasing = true; | 
|  | 206 static const bool kSimdMaskRegisters = false; | 
| 206 | 207 | 
| 207 struct XMMRegister { | 208 struct XMMRegister { | 
| 208   enum Code { | 209   enum Code { | 
| 209 #define REGISTER_CODE(R) kCode_##R, | 210 #define REGISTER_CODE(R) kCode_##R, | 
| 210     DOUBLE_REGISTERS(REGISTER_CODE) | 211     DOUBLE_REGISTERS(REGISTER_CODE) | 
| 211 #undef REGISTER_CODE | 212 #undef REGISTER_CODE | 
| 212         kAfterLast, | 213         kAfterLast, | 
| 213     kCode_no_reg = -1 | 214     kCode_no_reg = -1 | 
| 214   }; | 215   }; | 
| 215 | 216 | 
| (...skipping 2307 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 2523   Assembler* assembler_; | 2524   Assembler* assembler_; | 
| 2524 #ifdef DEBUG | 2525 #ifdef DEBUG | 
| 2525   int space_before_; | 2526   int space_before_; | 
| 2526 #endif | 2527 #endif | 
| 2527 }; | 2528 }; | 
| 2528 | 2529 | 
| 2529 }  // namespace internal | 2530 }  // namespace internal | 
| 2530 }  // namespace v8 | 2531 }  // namespace v8 | 
| 2531 | 2532 | 
| 2532 #endif  // V8_X64_ASSEMBLER_X64_H_ | 2533 #endif  // V8_X64_ASSEMBLER_X64_H_ | 
| OLD | NEW | 
|---|