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

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

Issue 668173002: Add Float64Round operator. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Remove comma at end of enumerator list. Created 6 years, 1 month 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 | Annotate | Revision Log
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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 V(TruncateInt64ToInt32) \ 218 V(TruncateInt64ToInt32) \
219 V(Float64Add) \ 219 V(Float64Add) \
220 V(Float64Sub) \ 220 V(Float64Sub) \
221 V(Float64Mul) \ 221 V(Float64Mul) \
222 V(Float64Div) \ 222 V(Float64Div) \
223 V(Float64Mod) \ 223 V(Float64Mod) \
224 V(Float64Sqrt) \ 224 V(Float64Sqrt) \
225 V(Float64Equal) \ 225 V(Float64Equal) \
226 V(Float64LessThan) \ 226 V(Float64LessThan) \
227 V(Float64LessThanOrEqual) \ 227 V(Float64LessThanOrEqual) \
228 V(Float64Round) \
228 V(LoadStackPointer) 229 V(LoadStackPointer)
229 230
230 #define VALUE_OP_LIST(V) \ 231 #define VALUE_OP_LIST(V) \
231 COMMON_OP_LIST(V) \ 232 COMMON_OP_LIST(V) \
232 SIMPLIFIED_OP_LIST(V) \ 233 SIMPLIFIED_OP_LIST(V) \
233 MACHINE_OP_LIST(V) \ 234 MACHINE_OP_LIST(V) \
234 JS_OP_LIST(V) 235 JS_OP_LIST(V)
235 236
236 // The combination of all operators at all levels and the common operators. 237 // The combination of all operators at all levels and the common operators.
237 #define ALL_OP_LIST(V) \ 238 #define ALL_OP_LIST(V) \
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 return false; 318 return false;
318 } 319 }
319 } 320 }
320 }; 321 };
321 322
322 } // namespace compiler 323 } // namespace compiler
323 } // namespace internal 324 } // namespace internal
324 } // namespace v8 325 } // namespace v8
325 326
326 #endif // V8_COMPILER_OPCODES_H_ 327 #endif // V8_COMPILER_OPCODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698