Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Side by Side Diff: src/arm/assembler-arm.h

Issue 1693963004: Add a kSimd128 machine type for Turbofan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/arm64/assembler-arm64.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | src/arm64/assembler-arm64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698