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

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

Issue 1480003002: [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: Add patch from Orion for interpreter cementation test. Disable obsolete/invalid tests. 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) \
134 V(JSCreateFunctionContext) \ 133 V(JSCreateFunctionContext) \
135 V(JSCreateCatchContext) \ 134 V(JSCreateCatchContext) \
136 V(JSCreateWithContext) \ 135 V(JSCreateWithContext) \
137 V(JSCreateBlockContext) \ 136 V(JSCreateBlockContext) \
138 V(JSCreateModuleContext) \ 137 V(JSCreateModuleContext) \
139 V(JSCreateScriptContext) 138 V(JSCreateScriptContext)
140 139
141 #define JS_OTHER_OP_LIST(V) \ 140 #define JS_OTHER_OP_LIST(V) \
142 V(JSCallConstruct) \ 141 V(JSCallConstruct) \
143 V(JSCallFunction) \ 142 V(JSCallFunction) \
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 } 400 }
402 }; 401 };
403 402
404 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 403 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
405 404
406 } // namespace compiler 405 } // namespace compiler
407 } // namespace internal 406 } // namespace internal
408 } // namespace v8 407 } // namespace v8
409 408
410 #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