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

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

Issue 2489563004: [turbofan] Add support for accessing Uint8ClampedArrays. (Closed)
Patch Set: Fix typing rule. 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/operation-typer.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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 V(NumberSign) \ 274 V(NumberSign) \
275 V(NumberSin) \ 275 V(NumberSin) \
276 V(NumberSinh) \ 276 V(NumberSinh) \
277 V(NumberSqrt) \ 277 V(NumberSqrt) \
278 V(NumberTan) \ 278 V(NumberTan) \
279 V(NumberTanh) \ 279 V(NumberTanh) \
280 V(NumberTrunc) \ 280 V(NumberTrunc) \
281 V(NumberToBoolean) \ 281 V(NumberToBoolean) \
282 V(NumberToInt32) \ 282 V(NumberToInt32) \
283 V(NumberToUint32) \ 283 V(NumberToUint32) \
284 V(NumberToUint8Clamped) \
284 V(NumberSilenceNaN) 285 V(NumberSilenceNaN)
285 286
286 #define SIMPLIFIED_OTHER_OP_LIST(V) \ 287 #define SIMPLIFIED_OTHER_OP_LIST(V) \
287 V(PlainPrimitiveToNumber) \ 288 V(PlainPrimitiveToNumber) \
288 V(PlainPrimitiveToWord32) \ 289 V(PlainPrimitiveToWord32) \
289 V(PlainPrimitiveToFloat64) \ 290 V(PlainPrimitiveToFloat64) \
290 V(BooleanNot) \ 291 V(BooleanNot) \
291 V(StringCharCodeAt) \ 292 V(StringCharCodeAt) \
292 V(StringFromCharCode) \ 293 V(StringFromCharCode) \
293 V(StringFromCodePoint) \ 294 V(StringFromCodePoint) \
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
789 } 790 }
790 }; 791 };
791 792
792 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 793 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
793 794
794 } // namespace compiler 795 } // namespace compiler
795 } // namespace internal 796 } // namespace internal
796 } // namespace v8 797 } // namespace v8
797 798
798 #endif // V8_COMPILER_OPCODES_H_ 799 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-native-context-specialization.cc ('k') | src/compiler/operation-typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698