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

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

Issue 2519943002: Version 5.7.4.1 (cherry-pick) (Closed)
Patch Set: Created 4 years 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/base/compiler-specific.h" 10 #include "src/base/compiler-specific.h"
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_
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