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

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

Issue 595963002: Extend JSBuiltinReducer to cover Math.sqrt as well. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comment by Benedikt. Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « src/compiler/machine-operator-unittest.cc ('k') | src/compiler/simplified-lowering.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 INNER_CONTROL_OP_LIST(V) \ 9 #define INNER_CONTROL_OP_LIST(V) \
10 V(Dead) \ 10 V(Dead) \
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 V(ChangeUint32ToFloat64) \ 211 V(ChangeUint32ToFloat64) \
212 V(ChangeUint32ToUint64) \ 212 V(ChangeUint32ToUint64) \
213 V(TruncateFloat64ToFloat32) \ 213 V(TruncateFloat64ToFloat32) \
214 V(TruncateFloat64ToInt32) \ 214 V(TruncateFloat64ToInt32) \
215 V(TruncateInt64ToInt32) \ 215 V(TruncateInt64ToInt32) \
216 V(Float64Add) \ 216 V(Float64Add) \
217 V(Float64Sub) \ 217 V(Float64Sub) \
218 V(Float64Mul) \ 218 V(Float64Mul) \
219 V(Float64Div) \ 219 V(Float64Div) \
220 V(Float64Mod) \ 220 V(Float64Mod) \
221 V(Float64Sqrt) \
221 V(Float64Equal) \ 222 V(Float64Equal) \
222 V(Float64LessThan) \ 223 V(Float64LessThan) \
223 V(Float64LessThanOrEqual) 224 V(Float64LessThanOrEqual)
224 225
225 #define VALUE_OP_LIST(V) \ 226 #define VALUE_OP_LIST(V) \
226 COMMON_OP_LIST(V) \ 227 COMMON_OP_LIST(V) \
227 SIMPLIFIED_OP_LIST(V) \ 228 SIMPLIFIED_OP_LIST(V) \
228 MACHINE_OP_LIST(V) \ 229 MACHINE_OP_LIST(V) \
229 JS_OP_LIST(V) 230 JS_OP_LIST(V)
230 231
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 return false; 301 return false;
301 } 302 }
302 } 303 }
303 }; 304 };
304 305
305 } // namespace compiler 306 } // namespace compiler
306 } // namespace internal 307 } // namespace internal
307 } // namespace v8 308 } // namespace v8
308 309
309 #endif // V8_COMPILER_OPCODES_H_ 310 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/machine-operator-unittest.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698