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

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

Issue 1105513002: [turbofan] Use FastNewClosureStub if possible. (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/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 // 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 #define JS_OTHER_UNOP_LIST(V) \ 99 #define JS_OTHER_UNOP_LIST(V) \
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(JSLoadProperty) \ 110 V(JSLoadProperty) \
110 V(JSLoadNamed) \ 111 V(JSLoadNamed) \
111 V(JSStoreProperty) \ 112 V(JSStoreProperty) \
112 V(JSStoreNamed) \ 113 V(JSStoreNamed) \
113 V(JSDeleteProperty) \ 114 V(JSDeleteProperty) \
114 V(JSHasProperty) \ 115 V(JSHasProperty) \
115 V(JSInstanceOf) 116 V(JSInstanceOf)
116 117
117 #define JS_CONTEXT_OP_LIST(V) \ 118 #define JS_CONTEXT_OP_LIST(V) \
118 V(JSLoadContext) \ 119 V(JSLoadContext) \
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || 342 (kNumberEqual <= value && value <= kStringLessThanOrEqual) ||
342 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); 343 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual);
343 } 344 }
344 }; 345 };
345 346
346 } // namespace compiler 347 } // namespace compiler
347 } // namespace internal 348 } // namespace internal
348 } // namespace v8 349 } // namespace v8
349 350
350 #endif // V8_COMPILER_OPCODES_H_ 351 #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