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

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

Issue 1898653003: [turbofan] Optimize typeof in abstract/strict equality comparison. (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/node-matchers.h ('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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 V(ChangeFloat64ToTagged) \ 204 V(ChangeFloat64ToTagged) \
205 V(ChangeBoolToBit) \ 205 V(ChangeBoolToBit) \
206 V(ChangeBitToBool) \ 206 V(ChangeBitToBool) \
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(ObjectIsCallable) \
214 V(ObjectIsNumber) \ 215 V(ObjectIsNumber) \
215 V(ObjectIsReceiver) \ 216 V(ObjectIsReceiver) \
216 V(ObjectIsSmi) \ 217 V(ObjectIsSmi) \
217 V(ObjectIsString) \ 218 V(ObjectIsString) \
218 V(ObjectIsUndetectable) 219 V(ObjectIsUndetectable)
219 220
220 // Opcodes for Machine-level operators. 221 // Opcodes for Machine-level operators.
221 #define MACHINE_COMPARE_BINOP_LIST(V) \ 222 #define MACHINE_COMPARE_BINOP_LIST(V) \
222 V(Word32Equal) \ 223 V(Word32Equal) \
223 V(Word64Equal) \ 224 V(Word64Equal) \
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 } 430 }
430 }; 431 };
431 432
432 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 433 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
433 434
434 } // namespace compiler 435 } // namespace compiler
435 } // namespace internal 436 } // namespace internal
436 } // namespace v8 437 } // namespace v8
437 438
438 #endif // V8_COMPILER_OPCODES_H_ 439 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/node-matchers.h ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698