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

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

Issue 432373002: [turbofan] Add support for Int32SubWithOverflow. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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/machine-operator.h ('k') | src/compiler/x64/instruction-selector-x64.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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
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(Int32AddWithOverflow) \
177 V(Int32Sub) \ 177 V(Int32Sub) \
178 V(Int32SubWithOverflow) \
178 V(Int32Mul) \ 179 V(Int32Mul) \
179 V(Int32Div) \ 180 V(Int32Div) \
180 V(Int32UDiv) \ 181 V(Int32UDiv) \
181 V(Int32Mod) \ 182 V(Int32Mod) \
182 V(Int32UMod) \ 183 V(Int32UMod) \
183 V(Int32LessThan) \ 184 V(Int32LessThan) \
184 V(Int32LessThanOrEqual) \ 185 V(Int32LessThanOrEqual) \
185 V(Uint32LessThan) \ 186 V(Uint32LessThan) \
186 V(Uint32LessThanOrEqual) \ 187 V(Uint32LessThanOrEqual) \
187 V(Int64Add) \ 188 V(Int64Add) \
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 return false; 287 return false;
287 } 288 }
288 } 289 }
289 }; 290 };
290 291
291 } // namespace compiler 292 } // namespace compiler
292 } // namespace internal 293 } // namespace internal
293 } // namespace v8 294 } // namespace v8
294 295
295 #endif // V8_COMPILER_OPCODES_H_ 296 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/machine-operator.h ('k') | src/compiler/x64/instruction-selector-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698