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

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

Issue 2365223003: Revert of [compiler] Properly guard the speculative optimizations for instanceof. (Closed)
Patch Set: Created 4 years, 2 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/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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 V(StringFromCharCode) \ 286 V(StringFromCharCode) \
287 V(CheckBounds) \ 287 V(CheckBounds) \
288 V(CheckIf) \ 288 V(CheckIf) \
289 V(CheckMaps) \ 289 V(CheckMaps) \
290 V(CheckNumber) \ 290 V(CheckNumber) \
291 V(CheckString) \ 291 V(CheckString) \
292 V(CheckSmi) \ 292 V(CheckSmi) \
293 V(CheckHeapObject) \ 293 V(CheckHeapObject) \
294 V(CheckFloat64Hole) \ 294 V(CheckFloat64Hole) \
295 V(CheckTaggedHole) \ 295 V(CheckTaggedHole) \
296 V(CheckHasInPrototypeChain) \
297 V(ConvertTaggedHoleToUndefined) \ 296 V(ConvertTaggedHoleToUndefined) \
298 V(Allocate) \ 297 V(Allocate) \
299 V(LoadField) \ 298 V(LoadField) \
300 V(LoadBuffer) \ 299 V(LoadBuffer) \
301 V(LoadElement) \ 300 V(LoadElement) \
302 V(LoadTypedElement) \ 301 V(LoadTypedElement) \
303 V(StoreField) \ 302 V(StoreField) \
304 V(StoreBuffer) \ 303 V(StoreBuffer) \
305 V(StoreElement) \ 304 V(StoreElement) \
306 V(StoreTypedElement) \ 305 V(StoreTypedElement) \
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
760 } 759 }
761 }; 760 };
762 761
763 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 762 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
764 763
765 } // namespace compiler 764 } // namespace compiler
766 } // namespace internal 765 } // namespace internal
767 } // namespace v8 766 } // namespace v8
768 767
769 #endif // V8_COMPILER_OPCODES_H_ 768 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698