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

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: arm port. 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
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(Float64ExtractWord32) \
256 V(Float64InsertWord32) \
255 V(LoadStackPointer) \ 257 V(LoadStackPointer) \
256 V(CheckedLoad) \ 258 V(CheckedLoad) \
257 V(CheckedStore) 259 V(CheckedStore)
258 260
259 #define VALUE_OP_LIST(V) \ 261 #define VALUE_OP_LIST(V) \
260 COMMON_OP_LIST(V) \ 262 COMMON_OP_LIST(V) \
261 SIMPLIFIED_OP_LIST(V) \ 263 SIMPLIFIED_OP_LIST(V) \
262 MACHINE_OP_LIST(V) \ 264 MACHINE_OP_LIST(V) \
263 JS_OP_LIST(V) 265 JS_OP_LIST(V)
264 266
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || 324 (kNumberEqual <= value && value <= kStringLessThanOrEqual) ||
323 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); 325 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual);
324 } 326 }
325 }; 327 };
326 328
327 } // namespace compiler 329 } // namespace compiler
328 } // namespace internal 330 } // namespace internal
329 } // namespace v8 331 } // namespace v8
330 332
331 #endif // V8_COMPILER_OPCODES_H_ 333 #endif // V8_COMPILER_OPCODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698