| 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 | 5 // modification, are permitted provided that the following conditions |
| 6 // are met: | 6 // are 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 *m = (encoded_code & 0x10) >> 4; | 278 *m = (encoded_code & 0x10) >> 4; |
| 279 *vm = encoded_code & 0x0F; | 279 *vm = encoded_code & 0x0F; |
| 280 } | 280 } |
| 281 | 281 |
| 282 int reg_code; | 282 int reg_code; |
| 283 }; | 283 }; |
| 284 | 284 |
| 285 | 285 |
| 286 typedef QwNeonRegister QuadRegister; | 286 typedef QwNeonRegister QuadRegister; |
| 287 | 287 |
| 288 typedef QwNeonRegister Simd128Register; |
| 288 | 289 |
| 289 // Support for the VFP registers s0 to s31 (d0 to d15). | 290 // Support for the VFP registers s0 to s31 (d0 to d15). |
| 290 // Note that "s(N):s(N+1)" is the same as "d(N/2)". | 291 // Note that "s(N):s(N+1)" is the same as "d(N/2)". |
| 291 const SwVfpRegister s0 = { 0 }; | 292 const SwVfpRegister s0 = { 0 }; |
| 292 const SwVfpRegister s1 = { 1 }; | 293 const SwVfpRegister s1 = { 1 }; |
| 293 const SwVfpRegister s2 = { 2 }; | 294 const SwVfpRegister s2 = { 2 }; |
| 294 const SwVfpRegister s3 = { 3 }; | 295 const SwVfpRegister s3 = { 3 }; |
| 295 const SwVfpRegister s4 = { 4 }; | 296 const SwVfpRegister s4 = { 4 }; |
| 296 const SwVfpRegister s5 = { 5 }; | 297 const SwVfpRegister s5 = { 5 }; |
| 297 const SwVfpRegister s6 = { 6 }; | 298 const SwVfpRegister s6 = { 6 }; |
| (...skipping 1344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1642 explicit EnsureSpace(Assembler* assembler) { | 1643 explicit EnsureSpace(Assembler* assembler) { |
| 1643 assembler->CheckBuffer(); | 1644 assembler->CheckBuffer(); |
| 1644 } | 1645 } |
| 1645 }; | 1646 }; |
| 1646 | 1647 |
| 1647 | 1648 |
| 1648 } // namespace internal | 1649 } // namespace internal |
| 1649 } // namespace v8 | 1650 } // namespace v8 |
| 1650 | 1651 |
| 1651 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1652 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
| OLD | NEW |