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

Side by Side Diff: src/x64/assembler-x64.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 | « src/types.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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
OLDNEW
« no previous file with comments | « src/types.h ('k') | src/x87/assembler-x87.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698