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

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

Issue 1894523002: [turbofan] Introduce ObjectIsString operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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-native-context-specialization.cc ('k') | src/compiler/simplified-lowering.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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 V(Allocate) \ 207 V(Allocate) \
208 V(LoadField) \ 208 V(LoadField) \
209 V(LoadBuffer) \ 209 V(LoadBuffer) \
210 V(LoadElement) \ 210 V(LoadElement) \
211 V(StoreField) \ 211 V(StoreField) \
212 V(StoreBuffer) \ 212 V(StoreBuffer) \
213 V(StoreElement) \ 213 V(StoreElement) \
214 V(ObjectIsNumber) \ 214 V(ObjectIsNumber) \
215 V(ObjectIsReceiver) \ 215 V(ObjectIsReceiver) \
216 V(ObjectIsSmi) \ 216 V(ObjectIsSmi) \
217 V(ObjectIsString) \
217 V(ObjectIsUndetectable) 218 V(ObjectIsUndetectable)
218 219
219 // Opcodes for Machine-level operators. 220 // Opcodes for Machine-level operators.
220 #define MACHINE_COMPARE_BINOP_LIST(V) \ 221 #define MACHINE_COMPARE_BINOP_LIST(V) \
221 V(Word32Equal) \ 222 V(Word32Equal) \
222 V(Word64Equal) \ 223 V(Word64Equal) \
223 V(Int32LessThan) \ 224 V(Int32LessThan) \
224 V(Int32LessThanOrEqual) \ 225 V(Int32LessThanOrEqual) \
225 V(Uint32LessThan) \ 226 V(Uint32LessThan) \
226 V(Uint32LessThanOrEqual) \ 227 V(Uint32LessThanOrEqual) \
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 } 429 }
429 }; 430 };
430 431
431 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 432 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
432 433
433 } // namespace compiler 434 } // namespace compiler
434 } // namespace internal 435 } // namespace internal
435 } // namespace v8 436 } // namespace v8
436 437
437 #endif // V8_COMPILER_OPCODES_H_ 438 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-native-context-specialization.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698