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

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

Issue 1448343002: [turbofan] Finish support for holey double elements backing stores. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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-typed-lowering.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 #include <iosfwd> 8 #include <iosfwd>
9 9
10 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 V(NumberDivide) \ 176 V(NumberDivide) \
177 V(NumberModulus) \ 177 V(NumberModulus) \
178 V(NumberBitwiseOr) \ 178 V(NumberBitwiseOr) \
179 V(NumberBitwiseXor) \ 179 V(NumberBitwiseXor) \
180 V(NumberBitwiseAnd) \ 180 V(NumberBitwiseAnd) \
181 V(NumberShiftLeft) \ 181 V(NumberShiftLeft) \
182 V(NumberShiftRight) \ 182 V(NumberShiftRight) \
183 V(NumberShiftRightLogical) \ 183 V(NumberShiftRightLogical) \
184 V(NumberToInt32) \ 184 V(NumberToInt32) \
185 V(NumberToUint32) \ 185 V(NumberToUint32) \
186 V(NumberIsHoleNaN) \
186 V(PlainPrimitiveToNumber) \ 187 V(PlainPrimitiveToNumber) \
187 V(ChangeTaggedToInt32) \ 188 V(ChangeTaggedToInt32) \
188 V(ChangeTaggedToUint32) \ 189 V(ChangeTaggedToUint32) \
189 V(ChangeTaggedToFloat64) \ 190 V(ChangeTaggedToFloat64) \
190 V(ChangeInt32ToTagged) \ 191 V(ChangeInt32ToTagged) \
191 V(ChangeUint32ToTagged) \ 192 V(ChangeUint32ToTagged) \
192 V(ChangeFloat64ToTagged) \ 193 V(ChangeFloat64ToTagged) \
193 V(ChangeBoolToBit) \ 194 V(ChangeBoolToBit) \
194 V(ChangeBitToBool) \ 195 V(ChangeBitToBool) \
195 V(Allocate) \ 196 V(Allocate) \
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 } 389 }
389 }; 390 };
390 391
391 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 392 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
392 393
393 } // namespace compiler 394 } // namespace compiler
394 } // namespace internal 395 } // namespace internal
395 } // namespace v8 396 } // namespace v8
396 397
397 #endif // V8_COMPILER_OPCODES_H_ 398 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698