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

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

Issue 2519943002: Version 5.7.4.1 (cherry-pick) (Closed)
Patch Set: Created 4 years, 1 month 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 #include "src/globals.h" 10 #include "src/globals.h"
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 V(ConvertTaggedHoleToUndefined) \ 310 V(ConvertTaggedHoleToUndefined) \
311 V(Allocate) \ 311 V(Allocate) \
312 V(LoadField) \ 312 V(LoadField) \
313 V(LoadBuffer) \ 313 V(LoadBuffer) \
314 V(LoadElement) \ 314 V(LoadElement) \
315 V(LoadTypedElement) \ 315 V(LoadTypedElement) \
316 V(StoreField) \ 316 V(StoreField) \
317 V(StoreBuffer) \ 317 V(StoreBuffer) \
318 V(StoreElement) \ 318 V(StoreElement) \
319 V(StoreTypedElement) \ 319 V(StoreTypedElement) \
320 V(LoadFunctionPrototype) \
321 V(ObjectIsCallable) \ 320 V(ObjectIsCallable) \
322 V(ObjectIsNumber) \ 321 V(ObjectIsNumber) \
323 V(ObjectIsReceiver) \ 322 V(ObjectIsReceiver) \
324 V(ObjectIsSmi) \ 323 V(ObjectIsSmi) \
325 V(ObjectIsString) \ 324 V(ObjectIsString) \
326 V(ObjectIsUndetectable) \ 325 V(ObjectIsUndetectable) \
327 V(ArrayBufferWasNeutered) \ 326 V(ArrayBufferWasNeutered) \
328 V(EnsureWritableFastElements) \ 327 V(EnsureWritableFastElements) \
329 V(MaybeGrowFastElements) \ 328 V(MaybeGrowFastElements) \
330 V(TransitionElementsKind) 329 V(TransitionElementsKind)
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
797 } 796 }
798 }; 797 };
799 798
800 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 799 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
801 800
802 } // namespace compiler 801 } // namespace compiler
803 } // namespace internal 802 } // namespace internal
804 } // namespace v8 803 } // namespace v8
805 804
806 #endif // V8_COMPILER_OPCODES_H_ 805 #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