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

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

Issue 1982223002: Version 5.1.281.38 (cherry-pick) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@5.1
Patch Set: Created 4 years, 7 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
« no previous file with comments | « src/compiler/js-builtin-reducer.cc ('k') | src/compiler/representation-change.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 #include <iosfwd> 8 #include <iosfwd>
9 9
10 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 V(NumberSubtract) \ 178 V(NumberSubtract) \
179 V(NumberMultiply) \ 179 V(NumberMultiply) \
180 V(NumberDivide) \ 180 V(NumberDivide) \
181 V(NumberModulus) \ 181 V(NumberModulus) \
182 V(NumberBitwiseOr) \ 182 V(NumberBitwiseOr) \
183 V(NumberBitwiseXor) \ 183 V(NumberBitwiseXor) \
184 V(NumberBitwiseAnd) \ 184 V(NumberBitwiseAnd) \
185 V(NumberShiftLeft) \ 185 V(NumberShiftLeft) \
186 V(NumberShiftRight) \ 186 V(NumberShiftRight) \
187 V(NumberShiftRightLogical) \ 187 V(NumberShiftRightLogical) \
188 V(NumberImul) \
188 V(NumberClz32) \ 189 V(NumberClz32) \
189 V(NumberCeil) \ 190 V(NumberCeil) \
190 V(NumberFloor) \ 191 V(NumberFloor) \
191 V(NumberRound) \ 192 V(NumberRound) \
192 V(NumberTrunc) \ 193 V(NumberTrunc) \
193 V(NumberToInt32) \ 194 V(NumberToInt32) \
194 V(NumberToUint32) \ 195 V(NumberToUint32) \
195 V(NumberIsHoleNaN) \ 196 V(NumberIsHoleNaN) \
196 V(PlainPrimitiveToNumber) \ 197 V(PlainPrimitiveToNumber) \
197 V(StringToNumber) \ 198 V(StringToNumber) \
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 } 428 }
428 }; 429 };
429 430
430 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 431 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
431 432
432 } // namespace compiler 433 } // namespace compiler
433 } // namespace internal 434 } // namespace internal
434 } // namespace v8 435 } // namespace v8
435 436
436 #endif // V8_COMPILER_OPCODES_H_ 437 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-builtin-reducer.cc ('k') | src/compiler/representation-change.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698