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

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

Issue 2557283002: [turbofan] Add NewUnmappedArgumentsElements and NewRestParametersArguments. (Closed)
Patch Set: Fixes. Created 4 years 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-create-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 #include "src/globals.h" 10 #include "src/globals.h"
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 V(StoreField) \ 316 V(StoreField) \
317 V(StoreBuffer) \ 317 V(StoreBuffer) \
318 V(StoreElement) \ 318 V(StoreElement) \
319 V(StoreTypedElement) \ 319 V(StoreTypedElement) \
320 V(ObjectIsCallable) \ 320 V(ObjectIsCallable) \
321 V(ObjectIsNumber) \ 321 V(ObjectIsNumber) \
322 V(ObjectIsReceiver) \ 322 V(ObjectIsReceiver) \
323 V(ObjectIsSmi) \ 323 V(ObjectIsSmi) \
324 V(ObjectIsString) \ 324 V(ObjectIsString) \
325 V(ObjectIsUndetectable) \ 325 V(ObjectIsUndetectable) \
326 V(NewRestParameterElements) \
327 V(NewUnmappedArgumentsElements) \
326 V(ArrayBufferWasNeutered) \ 328 V(ArrayBufferWasNeutered) \
327 V(EnsureWritableFastElements) \ 329 V(EnsureWritableFastElements) \
328 V(MaybeGrowFastElements) \ 330 V(MaybeGrowFastElements) \
329 V(TransitionElementsKind) 331 V(TransitionElementsKind)
330 332
331 #define SIMPLIFIED_OP_LIST(V) \ 333 #define SIMPLIFIED_OP_LIST(V) \
332 SIMPLIFIED_CHANGE_OP_LIST(V) \ 334 SIMPLIFIED_CHANGE_OP_LIST(V) \
333 SIMPLIFIED_CHECKED_OP_LIST(V) \ 335 SIMPLIFIED_CHECKED_OP_LIST(V) \
334 SIMPLIFIED_COMPARE_BINOP_LIST(V) \ 336 SIMPLIFIED_COMPARE_BINOP_LIST(V) \
335 SIMPLIFIED_NUMBER_BINOP_LIST(V) \ 337 SIMPLIFIED_NUMBER_BINOP_LIST(V) \
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 } 796 }
795 }; 797 };
796 798
797 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 799 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
798 800
799 } // namespace compiler 801 } // namespace compiler
800 } // namespace internal 802 } // namespace internal
801 } // namespace v8 803 } // namespace v8
802 804
803 #endif // V8_COMPILER_OPCODES_H_ 805 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-create-lowering.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698