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

Side by Side Diff: src/compiler/simplified-operator.h

Issue 2279213002: [turbofan] Introduce a dedicated ArrayBufferWasNeutered operator. (Closed)
Patch Set: Created 4 years, 3 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/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/compiler/operator.h" 10 #include "src/compiler/operator.h"
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 const Operator* CheckTaggedHole(); 331 const Operator* CheckTaggedHole();
332 const Operator* ConvertTaggedHoleToUndefined(); 332 const Operator* ConvertTaggedHoleToUndefined();
333 333
334 const Operator* ObjectIsCallable(); 334 const Operator* ObjectIsCallable();
335 const Operator* ObjectIsNumber(); 335 const Operator* ObjectIsNumber();
336 const Operator* ObjectIsReceiver(); 336 const Operator* ObjectIsReceiver();
337 const Operator* ObjectIsSmi(); 337 const Operator* ObjectIsSmi();
338 const Operator* ObjectIsString(); 338 const Operator* ObjectIsString();
339 const Operator* ObjectIsUndetectable(); 339 const Operator* ObjectIsUndetectable();
340 340
341 // array-buffer-was-neutered buffer
342 const Operator* ArrayBufferWasNeutered();
343
341 // ensure-writable-fast-elements object, elements 344 // ensure-writable-fast-elements object, elements
342 const Operator* EnsureWritableFastElements(); 345 const Operator* EnsureWritableFastElements();
343 346
344 // maybe-grow-fast-elements object, elements, index, length 347 // maybe-grow-fast-elements object, elements, index, length
345 const Operator* MaybeGrowFastElements(GrowFastElementsFlags flags); 348 const Operator* MaybeGrowFastElements(GrowFastElementsFlags flags);
346 349
347 // transition-elements-kind object, from-map, to-map 350 // transition-elements-kind object, from-map, to-map
348 const Operator* TransitionElementsKind(ElementsTransition transition); 351 const Operator* TransitionElementsKind(ElementsTransition transition);
349 352
350 const Operator* Allocate(PretenureFlag pretenure = NOT_TENURED); 353 const Operator* Allocate(PretenureFlag pretenure = NOT_TENURED);
(...skipping 26 matching lines...) Expand all
377 Zone* const zone_; 380 Zone* const zone_;
378 381
379 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 382 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
380 }; 383 };
381 384
382 } // namespace compiler 385 } // namespace compiler
383 } // namespace internal 386 } // namespace internal
384 } // namespace v8 387 } // namespace v8
385 388
386 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 389 #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