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

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

Issue 1223613002: [turbofan] Add Uint64LessThanOrEqual to 64-bit TurboFan backends. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 5 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 #include <iosfwd> 8 #include <iosfwd>
9 9
10 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 #define MACHINE_COMPARE_BINOP_LIST(V) \ 196 #define MACHINE_COMPARE_BINOP_LIST(V) \
197 V(Word32Equal) \ 197 V(Word32Equal) \
198 V(Word64Equal) \ 198 V(Word64Equal) \
199 V(Int32LessThan) \ 199 V(Int32LessThan) \
200 V(Int32LessThanOrEqual) \ 200 V(Int32LessThanOrEqual) \
201 V(Uint32LessThan) \ 201 V(Uint32LessThan) \
202 V(Uint32LessThanOrEqual) \ 202 V(Uint32LessThanOrEqual) \
203 V(Int64LessThan) \ 203 V(Int64LessThan) \
204 V(Int64LessThanOrEqual) \ 204 V(Int64LessThanOrEqual) \
205 V(Uint64LessThan) \ 205 V(Uint64LessThan) \
206 V(Uint64LessThanOrEqual) \
206 V(Float32Equal) \ 207 V(Float32Equal) \
207 V(Float32LessThan) \ 208 V(Float32LessThan) \
208 V(Float32LessThanOrEqual) \ 209 V(Float32LessThanOrEqual) \
209 V(Float64Equal) \ 210 V(Float64Equal) \
210 V(Float64LessThan) \ 211 V(Float64LessThan) \
211 V(Float64LessThanOrEqual) 212 V(Float64LessThanOrEqual)
212 213
213 #define MACHINE_OP_LIST(V) \ 214 #define MACHINE_OP_LIST(V) \
214 MACHINE_COMPARE_BINOP_LIST(V) \ 215 MACHINE_COMPARE_BINOP_LIST(V) \
215 V(Load) \ 216 V(Load) \
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 } 359 }
359 }; 360 };
360 361
361 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 362 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
362 363
363 } // namespace compiler 364 } // namespace compiler
364 } // namespace internal 365 } // namespace internal
365 } // namespace v8 366 } // namespace v8
366 367
367 #endif // V8_COMPILER_OPCODES_H_ 368 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/instruction-selector-mips64.cc ('k') | src/compiler/ppc/instruction-selector-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698