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

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

Issue 436593002: [turbofan] Add Int32AddWithOverflow machine operator. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Add more tests. Created 6 years, 4 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/node.cc ('k') | src/compiler/register-allocator.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 CONTROL_OP_LIST(V) \ 9 #define CONTROL_OP_LIST(V) \
10 V(Start) \ 10 V(Start) \
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 V(Word32Sar) \ 166 V(Word32Sar) \
167 V(Word32Equal) \ 167 V(Word32Equal) \
168 V(Word64And) \ 168 V(Word64And) \
169 V(Word64Or) \ 169 V(Word64Or) \
170 V(Word64Xor) \ 170 V(Word64Xor) \
171 V(Word64Shl) \ 171 V(Word64Shl) \
172 V(Word64Shr) \ 172 V(Word64Shr) \
173 V(Word64Sar) \ 173 V(Word64Sar) \
174 V(Word64Equal) \ 174 V(Word64Equal) \
175 V(Int32Add) \ 175 V(Int32Add) \
176 V(Int32AddWithOverflow) \
176 V(Int32Sub) \ 177 V(Int32Sub) \
177 V(Int32Mul) \ 178 V(Int32Mul) \
178 V(Int32Div) \ 179 V(Int32Div) \
179 V(Int32UDiv) \ 180 V(Int32UDiv) \
180 V(Int32Mod) \ 181 V(Int32Mod) \
181 V(Int32UMod) \ 182 V(Int32UMod) \
182 V(Int32LessThan) \ 183 V(Int32LessThan) \
183 V(Int32LessThanOrEqual) \ 184 V(Int32LessThanOrEqual) \
184 V(Uint32LessThan) \ 185 V(Uint32LessThan) \
185 V(Uint32LessThanOrEqual) \ 186 V(Uint32LessThanOrEqual) \
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 return false; 286 return false;
286 } 287 }
287 } 288 }
288 }; 289 };
289 290
290 } // namespace compiler 291 } // namespace compiler
291 } // namespace internal 292 } // namespace internal
292 } // namespace v8 293 } // namespace v8
293 294
294 #endif // V8_COMPILER_OPCODES_H_ 295 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/node.cc ('k') | src/compiler/register-allocator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698