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

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

Issue 1104453006: [turbofan] Introduce explicit JSCreateLiteral[Array|Object]. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased. Created 5 years, 8 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/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 // Opcodes for control operators. 8 // Opcodes for control operators.
9 #define CONTROL_OP_LIST(V) \ 9 #define CONTROL_OP_LIST(V) \
10 V(Start) \ 10 V(Start) \
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 V(JSTypeOf) 100 V(JSTypeOf)
101 101
102 #define JS_SIMPLE_UNOP_LIST(V) \ 102 #define JS_SIMPLE_UNOP_LIST(V) \
103 JS_LOGIC_UNOP_LIST(V) \ 103 JS_LOGIC_UNOP_LIST(V) \
104 JS_CONVERSION_UNOP_LIST(V) \ 104 JS_CONVERSION_UNOP_LIST(V) \
105 JS_OTHER_UNOP_LIST(V) 105 JS_OTHER_UNOP_LIST(V)
106 106
107 #define JS_OBJECT_OP_LIST(V) \ 107 #define JS_OBJECT_OP_LIST(V) \
108 V(JSCreate) \ 108 V(JSCreate) \
109 V(JSCreateClosure) \ 109 V(JSCreateClosure) \
110 V(JSCreateLiteralArray) \
111 V(JSCreateLiteralObject) \
110 V(JSLoadProperty) \ 112 V(JSLoadProperty) \
111 V(JSLoadNamed) \ 113 V(JSLoadNamed) \
112 V(JSStoreProperty) \ 114 V(JSStoreProperty) \
113 V(JSStoreNamed) \ 115 V(JSStoreNamed) \
114 V(JSDeleteProperty) \ 116 V(JSDeleteProperty) \
115 V(JSHasProperty) \ 117 V(JSHasProperty) \
116 V(JSInstanceOf) 118 V(JSInstanceOf)
117 119
118 #define JS_CONTEXT_OP_LIST(V) \ 120 #define JS_CONTEXT_OP_LIST(V) \
119 V(JSLoadContext) \ 121 V(JSLoadContext) \
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || 344 (kNumberEqual <= value && value <= kStringLessThanOrEqual) ||
343 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); 345 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual);
344 } 346 }
345 }; 347 };
346 348
347 } // namespace compiler 349 } // namespace compiler
348 } // namespace internal 350 } // namespace internal
349 } // namespace v8 351 } // namespace v8
350 352
351 #endif // V8_COMPILER_OPCODES_H_ 353 #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