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

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

Issue 1344553003: [turbofan] Model arguments object materialization in graph. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comments. Created 5 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/js-operator.cc ('k') | src/compiler/typer.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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 #define JS_OTHER_UNOP_LIST(V) \ 102 #define JS_OTHER_UNOP_LIST(V) \
103 V(JSTypeOf) 103 V(JSTypeOf)
104 104
105 #define JS_SIMPLE_UNOP_LIST(V) \ 105 #define JS_SIMPLE_UNOP_LIST(V) \
106 JS_LOGIC_UNOP_LIST(V) \ 106 JS_LOGIC_UNOP_LIST(V) \
107 JS_CONVERSION_UNOP_LIST(V) \ 107 JS_CONVERSION_UNOP_LIST(V) \
108 JS_OTHER_UNOP_LIST(V) 108 JS_OTHER_UNOP_LIST(V)
109 109
110 #define JS_OBJECT_OP_LIST(V) \ 110 #define JS_OBJECT_OP_LIST(V) \
111 V(JSCreate) \ 111 V(JSCreate) \
112 V(JSCreateArguments) \
112 V(JSCreateClosure) \ 113 V(JSCreateClosure) \
113 V(JSCreateLiteralArray) \ 114 V(JSCreateLiteralArray) \
114 V(JSCreateLiteralObject) \ 115 V(JSCreateLiteralObject) \
115 V(JSLoadProperty) \ 116 V(JSLoadProperty) \
116 V(JSLoadNamed) \ 117 V(JSLoadNamed) \
117 V(JSLoadGlobal) \ 118 V(JSLoadGlobal) \
118 V(JSStoreProperty) \ 119 V(JSStoreProperty) \
119 V(JSStoreNamed) \ 120 V(JSStoreNamed) \
120 V(JSStoreGlobal) \ 121 V(JSStoreGlobal) \
121 V(JSDeleteProperty) \ 122 V(JSDeleteProperty) \
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 } 362 }
362 }; 363 };
363 364
364 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 365 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
365 366
366 } // namespace compiler 367 } // namespace compiler
367 } // namespace internal 368 } // namespace internal
368 } // namespace v8 369 } // namespace v8
369 370
370 #endif // V8_COMPILER_OPCODES_H_ 371 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-operator.cc ('k') | src/compiler/typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698