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

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

Issue 2504553003: [es6] Perform the IsConstructor test in GetSuperConstructor. (Closed)
Patch Set: rebase 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/linkage.cc ('k') | src/compiler/operator-properties.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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 V(JSCreateLiteralObject) \ 137 V(JSCreateLiteralObject) \
138 V(JSCreateLiteralRegExp) \ 138 V(JSCreateLiteralRegExp) \
139 V(JSLoadProperty) \ 139 V(JSLoadProperty) \
140 V(JSLoadNamed) \ 140 V(JSLoadNamed) \
141 V(JSLoadGlobal) \ 141 V(JSLoadGlobal) \
142 V(JSStoreProperty) \ 142 V(JSStoreProperty) \
143 V(JSStoreNamed) \ 143 V(JSStoreNamed) \
144 V(JSStoreGlobal) \ 144 V(JSStoreGlobal) \
145 V(JSStoreDataPropertyInLiteral) \ 145 V(JSStoreDataPropertyInLiteral) \
146 V(JSDeleteProperty) \ 146 V(JSDeleteProperty) \
147 V(JSHasProperty) 147 V(JSHasProperty) \
148 V(JSGetSuperConstructor)
148 149
149 #define JS_CONTEXT_OP_LIST(V) \ 150 #define JS_CONTEXT_OP_LIST(V) \
150 V(JSLoadContext) \ 151 V(JSLoadContext) \
151 V(JSStoreContext) \ 152 V(JSStoreContext) \
152 V(JSCreateFunctionContext) \ 153 V(JSCreateFunctionContext) \
153 V(JSCreateCatchContext) \ 154 V(JSCreateCatchContext) \
154 V(JSCreateWithContext) \ 155 V(JSCreateWithContext) \
155 V(JSCreateBlockContext) \ 156 V(JSCreateBlockContext) \
156 V(JSCreateScriptContext) 157 V(JSCreateScriptContext)
157 158
(...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after
799 } 800 }
800 }; 801 };
801 802
802 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 803 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
803 804
804 } // namespace compiler 805 } // namespace compiler
805 } // namespace internal 806 } // namespace internal
806 } // namespace v8 807 } // namespace v8
807 808
808 #endif // V8_COMPILER_OPCODES_H_ 809 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/linkage.cc ('k') | src/compiler/operator-properties.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698