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

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

Issue 2522543008: Merged: Squashed multiple commits. (Closed)
Patch Set: 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-typed-lowering.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 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 V(JSCreateLiteralObject) \ 127 V(JSCreateLiteralObject) \
128 V(JSCreateLiteralRegExp) \ 128 V(JSCreateLiteralRegExp) \
129 V(JSLoadProperty) \ 129 V(JSLoadProperty) \
130 V(JSLoadNamed) \ 130 V(JSLoadNamed) \
131 V(JSLoadGlobal) \ 131 V(JSLoadGlobal) \
132 V(JSStoreProperty) \ 132 V(JSStoreProperty) \
133 V(JSStoreNamed) \ 133 V(JSStoreNamed) \
134 V(JSStoreGlobal) \ 134 V(JSStoreGlobal) \
135 V(JSDeleteProperty) \ 135 V(JSDeleteProperty) \
136 V(JSHasProperty) \ 136 V(JSHasProperty) \
137 V(JSInstanceOf) 137 V(JSInstanceOf) \
138 V(JSOrdinaryHasInstance)
138 139
139 #define JS_CONTEXT_OP_LIST(V) \ 140 #define JS_CONTEXT_OP_LIST(V) \
140 V(JSLoadContext) \ 141 V(JSLoadContext) \
141 V(JSStoreContext) \ 142 V(JSStoreContext) \
142 V(JSCreateFunctionContext) \ 143 V(JSCreateFunctionContext) \
143 V(JSCreateCatchContext) \ 144 V(JSCreateCatchContext) \
144 V(JSCreateWithContext) \ 145 V(JSCreateWithContext) \
145 V(JSCreateBlockContext) \ 146 V(JSCreateBlockContext) \
146 V(JSCreateScriptContext) 147 V(JSCreateScriptContext)
147 148
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after
783 } 784 }
784 }; 785 };
785 786
786 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 787 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
787 788
788 } // namespace compiler 789 } // namespace compiler
789 } // namespace internal 790 } // namespace internal
790 } // namespace v8 791 } // namespace v8
791 792
792 #endif // V8_COMPILER_OPCODES_H_ 793 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/operator-properties.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698