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

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

Issue 1700993002: Remove strong mode support from property loads. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix comment. Created 4 years, 10 months 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/js-generic-lowering.cc ('k') | src/compiler/js-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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_JS_OPERATOR_H_ 5 #ifndef V8_COMPILER_JS_OPERATOR_H_
6 #define V8_COMPILER_JS_OPERATOR_H_ 6 #define V8_COMPILER_JS_OPERATOR_H_
7 7
8 #include "src/compiler/type-hints.h" 8 #include "src/compiler/type-hints.h"
9 #include "src/runtime/runtime.h" 9 #include "src/runtime/runtime.h"
10 10
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 VectorSlotPair const& feedback = VectorSlotPair(), 431 VectorSlotPair const& feedback = VectorSlotPair(),
432 ConvertReceiverMode convert_mode = ConvertReceiverMode::kAny, 432 ConvertReceiverMode convert_mode = ConvertReceiverMode::kAny,
433 TailCallMode tail_call_mode = TailCallMode::kDisallow); 433 TailCallMode tail_call_mode = TailCallMode::kDisallow);
434 const Operator* CallRuntime(Runtime::FunctionId id); 434 const Operator* CallRuntime(Runtime::FunctionId id);
435 const Operator* CallRuntime(Runtime::FunctionId id, size_t arity); 435 const Operator* CallRuntime(Runtime::FunctionId id, size_t arity);
436 const Operator* CallRuntime(const Runtime::Function* function, size_t arity); 436 const Operator* CallRuntime(const Runtime::Function* function, size_t arity);
437 const Operator* CallConstruct(size_t arity, VectorSlotPair const& feedback); 437 const Operator* CallConstruct(size_t arity, VectorSlotPair const& feedback);
438 438
439 const Operator* ConvertReceiver(ConvertReceiverMode convert_mode); 439 const Operator* ConvertReceiver(ConvertReceiverMode convert_mode);
440 440
441 const Operator* LoadProperty(LanguageMode language_mode, 441 const Operator* LoadProperty(VectorSlotPair const& feedback);
442 VectorSlotPair const& feedback); 442 const Operator* LoadNamed(Handle<Name> name, VectorSlotPair const& feedback);
443 const Operator* LoadNamed(LanguageMode language_mode, Handle<Name> name,
444 VectorSlotPair const& feedback);
445 443
446 const Operator* StoreProperty(LanguageMode language_mode, 444 const Operator* StoreProperty(LanguageMode language_mode,
447 VectorSlotPair const& feedback); 445 VectorSlotPair const& feedback);
448 const Operator* StoreNamed(LanguageMode language_mode, Handle<Name> name, 446 const Operator* StoreNamed(LanguageMode language_mode, Handle<Name> name,
449 VectorSlotPair const& feedback); 447 VectorSlotPair const& feedback);
450 448
451 const Operator* DeleteProperty(LanguageMode language_mode); 449 const Operator* DeleteProperty(LanguageMode language_mode);
452 450
453 const Operator* HasProperty(); 451 const Operator* HasProperty();
454 452
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 Zone* const zone_; 487 Zone* const zone_;
490 488
491 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); 489 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder);
492 }; 490 };
493 491
494 } // namespace compiler 492 } // namespace compiler
495 } // namespace internal 493 } // namespace internal
496 } // namespace v8 494 } // namespace v8
497 495
498 #endif // V8_COMPILER_JS_OPERATOR_H_ 496 #endif // V8_COMPILER_JS_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/js-generic-lowering.cc ('k') | src/compiler/js-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698