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

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

Issue 615083002: Add support for uint64 compares to TurboFan. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 V(Uint32LessThanOrEqual) \ 196 V(Uint32LessThanOrEqual) \
197 V(Int64Add) \ 197 V(Int64Add) \
198 V(Int64Sub) \ 198 V(Int64Sub) \
199 V(Int64Mul) \ 199 V(Int64Mul) \
200 V(Int64Div) \ 200 V(Int64Div) \
201 V(Int64UDiv) \ 201 V(Int64UDiv) \
202 V(Int64Mod) \ 202 V(Int64Mod) \
203 V(Int64UMod) \ 203 V(Int64UMod) \
204 V(Int64LessThan) \ 204 V(Int64LessThan) \
205 V(Int64LessThanOrEqual) \ 205 V(Int64LessThanOrEqual) \
206 V(Uint64LessThan) \
206 V(ChangeFloat32ToFloat64) \ 207 V(ChangeFloat32ToFloat64) \
207 V(ChangeFloat64ToInt32) \ 208 V(ChangeFloat64ToInt32) \
208 V(ChangeFloat64ToUint32) \ 209 V(ChangeFloat64ToUint32) \
209 V(ChangeInt32ToFloat64) \ 210 V(ChangeInt32ToFloat64) \
210 V(ChangeInt32ToInt64) \ 211 V(ChangeInt32ToInt64) \
211 V(ChangeUint32ToFloat64) \ 212 V(ChangeUint32ToFloat64) \
212 V(ChangeUint32ToUint64) \ 213 V(ChangeUint32ToUint64) \
213 V(TruncateFloat64ToFloat32) \ 214 V(TruncateFloat64ToFloat32) \
214 V(TruncateFloat64ToInt32) \ 215 V(TruncateFloat64ToInt32) \
215 V(TruncateInt64ToInt32) \ 216 V(TruncateInt64ToInt32) \
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 return false; 314 return false;
314 } 315 }
315 } 316 }
316 }; 317 };
317 318
318 } // namespace compiler 319 } // namespace compiler
319 } // namespace internal 320 } // namespace internal
320 } // namespace v8 321 } // namespace v8
321 322
322 #endif // V8_COMPILER_OPCODES_H_ 323 #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