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

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

Issue 2700813002: [V8] Implement SIMD Boolean vector types to allow mask registers. (Closed)
Patch Set: Rebase. Created 3 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 | « src/wasm/wasm-opcodes.h ('k') | src/x87/assembler-x87.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 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
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
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_
OLDNEW
« no previous file with comments | « src/wasm/wasm-opcodes.h ('k') | src/x87/assembler-x87.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698