| 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/base/compiler-specific.h" | 10 #include "src/base/compiler-specific.h" |
| (...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 437 const Operator* EnsureWritableFastElements(); | 437 const Operator* EnsureWritableFastElements(); |
| 438 | 438 |
| 439 // maybe-grow-fast-elements object, elements, index, length | 439 // maybe-grow-fast-elements object, elements, index, length |
| 440 const Operator* MaybeGrowFastElements(GrowFastElementsFlags flags); | 440 const Operator* MaybeGrowFastElements(GrowFastElementsFlags flags); |
| 441 | 441 |
| 442 // transition-elements-kind object, from-map, to-map | 442 // transition-elements-kind object, from-map, to-map |
| 443 const Operator* TransitionElementsKind(ElementsTransition transition); | 443 const Operator* TransitionElementsKind(ElementsTransition transition); |
| 444 | 444 |
| 445 const Operator* Allocate(PretenureFlag pretenure = NOT_TENURED); | 445 const Operator* Allocate(PretenureFlag pretenure = NOT_TENURED); |
| 446 | 446 |
| 447 const Operator* LoadFieldByIndex(); |
| 447 const Operator* LoadField(FieldAccess const&); | 448 const Operator* LoadField(FieldAccess const&); |
| 448 const Operator* StoreField(FieldAccess const&); | 449 const Operator* StoreField(FieldAccess const&); |
| 449 | 450 |
| 450 // load-buffer buffer, offset, length | 451 // load-buffer buffer, offset, length |
| 451 const Operator* LoadBuffer(BufferAccess); | 452 const Operator* LoadBuffer(BufferAccess); |
| 452 | 453 |
| 453 // store-buffer buffer, offset, length, value | 454 // store-buffer buffer, offset, length, value |
| 454 const Operator* StoreBuffer(BufferAccess); | 455 const Operator* StoreBuffer(BufferAccess); |
| 455 | 456 |
| 456 // load-element [base + index] | 457 // load-element [base + index] |
| (...skipping 15 matching lines...) Expand all Loading... |
| 472 Zone* const zone_; | 473 Zone* const zone_; |
| 473 | 474 |
| 474 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 475 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
| 475 }; | 476 }; |
| 476 | 477 |
| 477 } // namespace compiler | 478 } // namespace compiler |
| 478 } // namespace internal | 479 } // namespace internal |
| 479 } // namespace v8 | 480 } // namespace v8 |
| 480 | 481 |
| 481 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 482 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| OLD | NEW |