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

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

Issue 990963003: [turbofan] Unify Math.floor / Math.ceil optimization. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 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/machine-operator.cc ('k') | src/compiler/raw-machine-assembler.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 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 INNER_CONTROL_OP_LIST(V) \ 9 #define INNER_CONTROL_OP_LIST(V) \
10 V(Dead) \ 10 V(Dead) \
(...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(Float64Add) \ 246 V(Float64Add) \
247 V(Float64Sub) \ 247 V(Float64Sub) \
248 V(Float64Mul) \ 248 V(Float64Mul) \
249 V(Float64Div) \ 249 V(Float64Div) \
250 V(Float64Mod) \ 250 V(Float64Mod) \
251 V(Float64Sqrt) \ 251 V(Float64Sqrt) \
252 V(Float64Floor) \ 252 V(Float64RoundDown) \
253 V(Float64Ceil) \
254 V(Float64RoundTruncate) \ 253 V(Float64RoundTruncate) \
255 V(Float64RoundTiesAway) \ 254 V(Float64RoundTiesAway) \
256 V(Float64ExtractLowWord32) \ 255 V(Float64ExtractLowWord32) \
257 V(Float64ExtractHighWord32) \ 256 V(Float64ExtractHighWord32) \
258 V(Float64InsertLowWord32) \ 257 V(Float64InsertLowWord32) \
259 V(Float64InsertHighWord32) \ 258 V(Float64InsertHighWord32) \
260 V(LoadStackPointer) \ 259 V(LoadStackPointer) \
261 V(CheckedLoad) \ 260 V(CheckedLoad) \
262 V(CheckedStore) 261 V(CheckedStore)
263 262
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || 326 (kNumberEqual <= value && value <= kStringLessThanOrEqual) ||
328 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); 327 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual);
329 } 328 }
330 }; 329 };
331 330
332 } // namespace compiler 331 } // namespace compiler
333 } // namespace internal 332 } // namespace internal
334 } // namespace v8 333 } // namespace v8
335 334
336 #endif // V8_COMPILER_OPCODES_H_ 335 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/machine-operator.cc ('k') | src/compiler/raw-machine-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698