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

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

Issue 974313002: [turbofan] Support for %_DoubleHi, %_DoubleLo and %_ConstructDouble. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed Svens comment. 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-reducer.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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 V(Float64Add) \ 245 V(Float64Add) \
246 V(Float64Sub) \ 246 V(Float64Sub) \
247 V(Float64Mul) \ 247 V(Float64Mul) \
248 V(Float64Div) \ 248 V(Float64Div) \
249 V(Float64Mod) \ 249 V(Float64Mod) \
250 V(Float64Sqrt) \ 250 V(Float64Sqrt) \
251 V(Float64Floor) \ 251 V(Float64Floor) \
252 V(Float64Ceil) \ 252 V(Float64Ceil) \
253 V(Float64RoundTruncate) \ 253 V(Float64RoundTruncate) \
254 V(Float64RoundTiesAway) \ 254 V(Float64RoundTiesAway) \
255 V(Float64ExtractLowWord32) \
256 V(Float64ExtractHighWord32) \
257 V(Float64InsertLowWord32) \
258 V(Float64InsertHighWord32) \
255 V(LoadStackPointer) \ 259 V(LoadStackPointer) \
256 V(CheckedLoad) \ 260 V(CheckedLoad) \
257 V(CheckedStore) 261 V(CheckedStore)
258 262
259 #define VALUE_OP_LIST(V) \ 263 #define VALUE_OP_LIST(V) \
260 COMMON_OP_LIST(V) \ 264 COMMON_OP_LIST(V) \
261 SIMPLIFIED_OP_LIST(V) \ 265 SIMPLIFIED_OP_LIST(V) \
262 MACHINE_OP_LIST(V) \ 266 MACHINE_OP_LIST(V) \
263 JS_OP_LIST(V) 267 JS_OP_LIST(V)
264 268
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || 326 (kNumberEqual <= value && value <= kStringLessThanOrEqual) ||
323 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); 327 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual);
324 } 328 }
325 }; 329 };
326 330
327 } // namespace compiler 331 } // namespace compiler
328 } // namespace internal 332 } // namespace internal
329 } // namespace v8 333 } // namespace v8
330 334
331 #endif // V8_COMPILER_OPCODES_H_ 335 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/machine-operator-reducer.cc ('k') | src/compiler/raw-machine-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698