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

Side by Side Diff: src/compiler/opcodes.h

Issue 1066393002: [turbofan] Add new Float32Abs and Float64Abs operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix comment. Created 5 years, 8 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/compiler/node-matchers.h ('k') | src/compiler/ppc/instruction-selector-ppc.cc » ('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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_COMPILER_OPCODES_H_ 5 #ifndef V8_COMPILER_OPCODES_H_
6 #define V8_COMPILER_OPCODES_H_ 6 #define V8_COMPILER_OPCODES_H_
7 7
8 // Opcodes for control operators. 8 // Opcodes for control operators.
9 #define CONTROL_OP_LIST(V) \ 9 #define CONTROL_OP_LIST(V) \
10 V(Start) \ 10 V(Start) \
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 V(ChangeUint32ToUint64) \ 242 V(ChangeUint32ToUint64) \
243 V(TruncateFloat64ToFloat32) \ 243 V(TruncateFloat64ToFloat32) \
244 V(TruncateFloat64ToInt32) \ 244 V(TruncateFloat64ToInt32) \
245 V(TruncateInt64ToInt32) \ 245 V(TruncateInt64ToInt32) \
246 V(Float32Add) \ 246 V(Float32Add) \
247 V(Float32Sub) \ 247 V(Float32Sub) \
248 V(Float32Mul) \ 248 V(Float32Mul) \
249 V(Float32Div) \ 249 V(Float32Div) \
250 V(Float32Max) \ 250 V(Float32Max) \
251 V(Float32Min) \ 251 V(Float32Min) \
252 V(Float32Abs) \
252 V(Float32Sqrt) \ 253 V(Float32Sqrt) \
253 V(Float64Add) \ 254 V(Float64Add) \
254 V(Float64Sub) \ 255 V(Float64Sub) \
255 V(Float64Mul) \ 256 V(Float64Mul) \
256 V(Float64Div) \ 257 V(Float64Div) \
257 V(Float64Mod) \ 258 V(Float64Mod) \
258 V(Float64Max) \ 259 V(Float64Max) \
259 V(Float64Min) \ 260 V(Float64Min) \
261 V(Float64Abs) \
260 V(Float64Sqrt) \ 262 V(Float64Sqrt) \
261 V(Float64RoundDown) \ 263 V(Float64RoundDown) \
262 V(Float64RoundTruncate) \ 264 V(Float64RoundTruncate) \
263 V(Float64RoundTiesAway) \ 265 V(Float64RoundTiesAway) \
264 V(Float64ExtractLowWord32) \ 266 V(Float64ExtractLowWord32) \
265 V(Float64ExtractHighWord32) \ 267 V(Float64ExtractHighWord32) \
266 V(Float64InsertLowWord32) \ 268 V(Float64InsertLowWord32) \
267 V(Float64InsertHighWord32) \ 269 V(Float64InsertHighWord32) \
268 V(LoadStackPointer) \ 270 V(LoadStackPointer) \
269 V(CheckedLoad) \ 271 V(CheckedLoad) \
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || 341 (kNumberEqual <= value && value <= kStringLessThanOrEqual) ||
340 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); 342 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual);
341 } 343 }
342 }; 344 };
343 345
344 } // namespace compiler 346 } // namespace compiler
345 } // namespace internal 347 } // namespace internal
346 } // namespace v8 348 } // namespace v8
347 349
348 #endif // V8_COMPILER_OPCODES_H_ 350 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/node-matchers.h ('k') | src/compiler/ppc/instruction-selector-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698