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

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

Issue 2220513002: Revert of [turbofan] Add support for copy-on-write element stores. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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
« no previous file with comments | « src/compiler/load-elimination.cc ('k') | src/compiler/pipeline.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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 V(StoreField) \ 297 V(StoreField) \
298 V(StoreBuffer) \ 298 V(StoreBuffer) \
299 V(StoreElement) \ 299 V(StoreElement) \
300 V(StoreTypedElement) \ 300 V(StoreTypedElement) \
301 V(ObjectIsCallable) \ 301 V(ObjectIsCallable) \
302 V(ObjectIsNumber) \ 302 V(ObjectIsNumber) \
303 V(ObjectIsReceiver) \ 303 V(ObjectIsReceiver) \
304 V(ObjectIsSmi) \ 304 V(ObjectIsSmi) \
305 V(ObjectIsString) \ 305 V(ObjectIsString) \
306 V(ObjectIsUndetectable) \ 306 V(ObjectIsUndetectable) \
307 V(EnsureWritableFastElements) \
308 V(TransitionElementsKind) 307 V(TransitionElementsKind)
309 308
310 #define SIMPLIFIED_OP_LIST(V) \ 309 #define SIMPLIFIED_OP_LIST(V) \
311 SIMPLIFIED_CHANGE_OP_LIST(V) \ 310 SIMPLIFIED_CHANGE_OP_LIST(V) \
312 SIMPLIFIED_CHECKED_OP_LIST(V) \ 311 SIMPLIFIED_CHECKED_OP_LIST(V) \
313 SIMPLIFIED_COMPARE_BINOP_LIST(V) \ 312 SIMPLIFIED_COMPARE_BINOP_LIST(V) \
314 SIMPLIFIED_NUMBER_BINOP_LIST(V) \ 313 SIMPLIFIED_NUMBER_BINOP_LIST(V) \
315 SIMPLIFIED_SPECULATIVE_NUMBER_BINOP_LIST(V) \ 314 SIMPLIFIED_SPECULATIVE_NUMBER_BINOP_LIST(V) \
316 SIMPLIFIED_NUMBER_UNOP_LIST(V) \ 315 SIMPLIFIED_NUMBER_UNOP_LIST(V) \
317 SIMPLIFIED_OTHER_OP_LIST(V) 316 SIMPLIFIED_OTHER_OP_LIST(V)
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
757 } 756 }
758 }; 757 };
759 758
760 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 759 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
761 760
762 } // namespace compiler 761 } // namespace compiler
763 } // namespace internal 762 } // namespace internal
764 } // namespace v8 763 } // namespace v8
765 764
766 #endif // V8_COMPILER_OPCODES_H_ 765 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/load-elimination.cc ('k') | src/compiler/pipeline.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698