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

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

Issue 2279213002: [turbofan] Introduce a dedicated ArrayBufferWasNeutered operator. (Closed)
Patch Set: Created 4 years, 3 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/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 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 V(StoreField) \ 299 V(StoreField) \
300 V(StoreBuffer) \ 300 V(StoreBuffer) \
301 V(StoreElement) \ 301 V(StoreElement) \
302 V(StoreTypedElement) \ 302 V(StoreTypedElement) \
303 V(ObjectIsCallable) \ 303 V(ObjectIsCallable) \
304 V(ObjectIsNumber) \ 304 V(ObjectIsNumber) \
305 V(ObjectIsReceiver) \ 305 V(ObjectIsReceiver) \
306 V(ObjectIsSmi) \ 306 V(ObjectIsSmi) \
307 V(ObjectIsString) \ 307 V(ObjectIsString) \
308 V(ObjectIsUndetectable) \ 308 V(ObjectIsUndetectable) \
309 V(ArrayBufferWasNeutered) \
309 V(EnsureWritableFastElements) \ 310 V(EnsureWritableFastElements) \
310 V(MaybeGrowFastElements) \ 311 V(MaybeGrowFastElements) \
311 V(TransitionElementsKind) 312 V(TransitionElementsKind)
312 313
313 #define SIMPLIFIED_OP_LIST(V) \ 314 #define SIMPLIFIED_OP_LIST(V) \
314 SIMPLIFIED_CHANGE_OP_LIST(V) \ 315 SIMPLIFIED_CHANGE_OP_LIST(V) \
315 SIMPLIFIED_CHECKED_OP_LIST(V) \ 316 SIMPLIFIED_CHECKED_OP_LIST(V) \
316 SIMPLIFIED_COMPARE_BINOP_LIST(V) \ 317 SIMPLIFIED_COMPARE_BINOP_LIST(V) \
317 SIMPLIFIED_NUMBER_BINOP_LIST(V) \ 318 SIMPLIFIED_NUMBER_BINOP_LIST(V) \
318 SIMPLIFIED_SPECULATIVE_NUMBER_BINOP_LIST(V) \ 319 SIMPLIFIED_SPECULATIVE_NUMBER_BINOP_LIST(V) \
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 } 755 }
755 }; 756 };
756 757
757 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 758 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
758 759
759 } // namespace compiler 760 } // namespace compiler
760 } // namespace internal 761 } // namespace internal
761 } // namespace v8 762 } // namespace v8
762 763
763 #endif // V8_COMPILER_OPCODES_H_ 764 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/load-elimination.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698