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

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

Issue 1478303002: Revert of [runtime] Replace global object link with native context link in all contexts. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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-typed-lowering.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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 V(JSStoreNamed) \ 123 V(JSStoreNamed) \
124 V(JSStoreGlobal) \ 124 V(JSStoreGlobal) \
125 V(JSDeleteProperty) \ 125 V(JSDeleteProperty) \
126 V(JSHasProperty) \ 126 V(JSHasProperty) \
127 V(JSInstanceOf) 127 V(JSInstanceOf)
128 128
129 #define JS_CONTEXT_OP_LIST(V) \ 129 #define JS_CONTEXT_OP_LIST(V) \
130 V(JSLoadContext) \ 130 V(JSLoadContext) \
131 V(JSStoreContext) \ 131 V(JSStoreContext) \
132 V(JSLoadDynamic) \ 132 V(JSLoadDynamic) \
133 V(JSLoadNativeContext) \
133 V(JSCreateFunctionContext) \ 134 V(JSCreateFunctionContext) \
134 V(JSCreateCatchContext) \ 135 V(JSCreateCatchContext) \
135 V(JSCreateWithContext) \ 136 V(JSCreateWithContext) \
136 V(JSCreateBlockContext) \ 137 V(JSCreateBlockContext) \
137 V(JSCreateModuleContext) \ 138 V(JSCreateModuleContext) \
138 V(JSCreateScriptContext) 139 V(JSCreateScriptContext)
139 140
140 #define JS_OTHER_OP_LIST(V) \ 141 #define JS_OTHER_OP_LIST(V) \
141 V(JSCallConstruct) \ 142 V(JSCallConstruct) \
142 V(JSCallFunction) \ 143 V(JSCallFunction) \
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 } 400 }
400 }; 401 };
401 402
402 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 403 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
403 404
404 } // namespace compiler 405 } // namespace compiler
405 } // namespace internal 406 } // namespace internal
406 } // namespace v8 407 } // namespace v8
407 408
408 #endif // V8_COMPILER_OPCODES_H_ 409 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698