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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 | 383 |
384 // store-element [base + index], value | 384 // store-element [base + index], value |
385 const Operator* StoreElement(ElementAccess const&); | 385 const Operator* StoreElement(ElementAccess const&); |
386 | 386 |
387 // load-typed-element buffer, [base + external + index] | 387 // load-typed-element buffer, [base + external + index] |
388 const Operator* LoadTypedElement(ExternalArrayType const&); | 388 const Operator* LoadTypedElement(ExternalArrayType const&); |
389 | 389 |
390 // store-typed-element buffer, [base + external + index], value | 390 // store-typed-element buffer, [base + external + index], value |
391 const Operator* StoreTypedElement(ExternalArrayType const&); | 391 const Operator* StoreTypedElement(ExternalArrayType const&); |
392 | 392 |
| 393 // load-function-prototype function |
| 394 const Operator* LoadFunctionPrototype(); |
| 395 |
393 private: | 396 private: |
394 Zone* zone() const { return zone_; } | 397 Zone* zone() const { return zone_; } |
395 | 398 |
396 const SimplifiedOperatorGlobalCache& cache_; | 399 const SimplifiedOperatorGlobalCache& cache_; |
397 Zone* const zone_; | 400 Zone* const zone_; |
398 | 401 |
399 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 402 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
400 }; | 403 }; |
401 | 404 |
402 } // namespace compiler | 405 } // namespace compiler |
403 } // namespace internal | 406 } // namespace internal |
404 } // namespace v8 | 407 } // namespace v8 |
405 | 408 |
406 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 409 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
OLD | NEW |