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

Side by Side Diff: src/compiler/simplified-operator.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/simplified-lowering.cc ('k') | src/compiler/simplified-operator.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_SIMPLIFIED_OPERATOR_H_ 5 #ifndef V8_COMPILER_SIMPLIFIED_OPERATOR_H_
6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/base/compiler-specific.h" 10 #include "src/base/compiler-specific.h"
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 const Operator* NumberSign(); 262 const Operator* NumberSign();
263 const Operator* NumberSin(); 263 const Operator* NumberSin();
264 const Operator* NumberSinh(); 264 const Operator* NumberSinh();
265 const Operator* NumberSqrt(); 265 const Operator* NumberSqrt();
266 const Operator* NumberTan(); 266 const Operator* NumberTan();
267 const Operator* NumberTanh(); 267 const Operator* NumberTanh();
268 const Operator* NumberTrunc(); 268 const Operator* NumberTrunc();
269 const Operator* NumberToBoolean(); 269 const Operator* NumberToBoolean();
270 const Operator* NumberToInt32(); 270 const Operator* NumberToInt32();
271 const Operator* NumberToUint32(); 271 const Operator* NumberToUint32();
272 const Operator* NumberToUint8Clamped();
272 273
273 const Operator* NumberSilenceNaN(); 274 const Operator* NumberSilenceNaN();
274 275
275 const Operator* SpeculativeNumberAdd(NumberOperationHint hint); 276 const Operator* SpeculativeNumberAdd(NumberOperationHint hint);
276 const Operator* SpeculativeNumberSubtract(NumberOperationHint hint); 277 const Operator* SpeculativeNumberSubtract(NumberOperationHint hint);
277 const Operator* SpeculativeNumberMultiply(NumberOperationHint hint); 278 const Operator* SpeculativeNumberMultiply(NumberOperationHint hint);
278 const Operator* SpeculativeNumberDivide(NumberOperationHint hint); 279 const Operator* SpeculativeNumberDivide(NumberOperationHint hint);
279 const Operator* SpeculativeNumberModulus(NumberOperationHint hint); 280 const Operator* SpeculativeNumberModulus(NumberOperationHint hint);
280 const Operator* SpeculativeNumberShiftLeft(NumberOperationHint hint); 281 const Operator* SpeculativeNumberShiftLeft(NumberOperationHint hint);
281 const Operator* SpeculativeNumberShiftRight(NumberOperationHint hint); 282 const Operator* SpeculativeNumberShiftRight(NumberOperationHint hint);
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 Zone* const zone_; 397 Zone* const zone_;
397 398
398 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 399 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
399 }; 400 };
400 401
401 } // namespace compiler 402 } // namespace compiler
402 } // namespace internal 403 } // namespace internal
403 } // namespace v8 404 } // namespace v8
404 405
405 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 406 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | src/compiler/simplified-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698