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

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

Issue 2697063002: Fix typeof optimization for undetectable (Closed)
Patch Set: Rename + format fix Created 3 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-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 #include "src/globals.h" 10 #include "src/globals.h"
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 V(ConvertTaggedHoleToUndefined) \ 325 V(ConvertTaggedHoleToUndefined) \
326 V(Allocate) \ 326 V(Allocate) \
327 V(LoadField) \ 327 V(LoadField) \
328 V(LoadBuffer) \ 328 V(LoadBuffer) \
329 V(LoadElement) \ 329 V(LoadElement) \
330 V(LoadTypedElement) \ 330 V(LoadTypedElement) \
331 V(StoreField) \ 331 V(StoreField) \
332 V(StoreBuffer) \ 332 V(StoreBuffer) \
333 V(StoreElement) \ 333 V(StoreElement) \
334 V(StoreTypedElement) \ 334 V(StoreTypedElement) \
335 V(ObjectIsCallable) \ 335 V(ObjectIsDetectableCallable) \
336 V(ObjectIsNonCallable) \ 336 V(ObjectIsNonCallable) \
337 V(ObjectIsNumber) \ 337 V(ObjectIsNumber) \
338 V(ObjectIsReceiver) \ 338 V(ObjectIsReceiver) \
339 V(ObjectIsSmi) \ 339 V(ObjectIsSmi) \
340 V(ObjectIsString) \ 340 V(ObjectIsString) \
341 V(ObjectIsUndetectable) \ 341 V(ObjectIsUndetectable) \
342 V(NewRestParameterElements) \ 342 V(NewRestParameterElements) \
343 V(NewUnmappedArgumentsElements) \ 343 V(NewUnmappedArgumentsElements) \
344 V(ArrayBufferWasNeutered) \ 344 V(ArrayBufferWasNeutered) \
345 V(EnsureWritableFastElements) \ 345 V(EnsureWritableFastElements) \
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
816 } 816 }
817 }; 817 };
818 818
819 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 819 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
820 820
821 } // namespace compiler 821 } // namespace compiler
822 } // namespace internal 822 } // namespace internal
823 } // namespace v8 823 } // namespace v8
824 824
825 #endif // V8_COMPILER_OPCODES_H_ 825 #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