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

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

Issue 1657863004: [turbofan] Introduce proper ObjectIsReceiver operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 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.h » ('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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 V(ChangeBoolToBit) \ 195 V(ChangeBoolToBit) \
196 V(ChangeBitToBool) \ 196 V(ChangeBitToBool) \
197 V(Allocate) \ 197 V(Allocate) \
198 V(LoadField) \ 198 V(LoadField) \
199 V(LoadBuffer) \ 199 V(LoadBuffer) \
200 V(LoadElement) \ 200 V(LoadElement) \
201 V(StoreField) \ 201 V(StoreField) \
202 V(StoreBuffer) \ 202 V(StoreBuffer) \
203 V(StoreElement) \ 203 V(StoreElement) \
204 V(ObjectIsNumber) \ 204 V(ObjectIsNumber) \
205 V(ObjectIsReceiver) \
205 V(ObjectIsSmi) 206 V(ObjectIsSmi)
206 207
207 // Opcodes for Machine-level operators. 208 // Opcodes for Machine-level operators.
208 #define MACHINE_COMPARE_BINOP_LIST(V) \ 209 #define MACHINE_COMPARE_BINOP_LIST(V) \
209 V(Word32Equal) \ 210 V(Word32Equal) \
210 V(Word64Equal) \ 211 V(Word64Equal) \
211 V(Int32LessThan) \ 212 V(Int32LessThan) \
212 V(Int32LessThanOrEqual) \ 213 V(Int32LessThanOrEqual) \
213 V(Uint32LessThan) \ 214 V(Uint32LessThan) \
214 V(Uint32LessThanOrEqual) \ 215 V(Uint32LessThanOrEqual) \
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 } 405 }
405 }; 406 };
406 407
407 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 408 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
408 409
409 } // namespace compiler 410 } // namespace compiler
410 } // namespace internal 411 } // namespace internal
411 } // namespace v8 412 } // namespace v8
412 413
413 #endif // V8_COMPILER_OPCODES_H_ 414 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-native-context-specialization.cc ('k') | src/compiler/simplified-lowering.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698