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 | |
396 private: | 393 private: |
397 Zone* zone() const { return zone_; } | 394 Zone* zone() const { return zone_; } |
398 | 395 |
399 const SimplifiedOperatorGlobalCache& cache_; | 396 const SimplifiedOperatorGlobalCache& cache_; |
400 Zone* const zone_; | 397 Zone* const zone_; |
401 | 398 |
402 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 399 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
403 }; | 400 }; |
404 | 401 |
405 } // namespace compiler | 402 } // namespace compiler |
406 } // namespace internal | 403 } // namespace internal |
407 } // namespace v8 | 404 } // namespace v8 |
408 | 405 |
409 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 406 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
OLD | NEW |