| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |