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 #include "src/compiler/js-operator.h" | 5 #include "src/compiler/js-operator.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 | 8 |
9 #include "src/base/lazy-instance.h" | 9 #include "src/base/lazy-instance.h" |
10 #include "src/compiler/opcodes.h" | 10 #include "src/compiler/opcodes.h" |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 | 310 |
311 size_t hash_value(DataPropertyParameters const& p) { | 311 size_t hash_value(DataPropertyParameters const& p) { |
312 return base::hash_combine(p.feedback()); | 312 return base::hash_combine(p.feedback()); |
313 } | 313 } |
314 | 314 |
315 std::ostream& operator<<(std::ostream& os, DataPropertyParameters const& p) { | 315 std::ostream& operator<<(std::ostream& os, DataPropertyParameters const& p) { |
316 return os; | 316 return os; |
317 } | 317 } |
318 | 318 |
319 DataPropertyParameters const& DataPropertyParametersOf(const Operator* op) { | 319 DataPropertyParameters const& DataPropertyParametersOf(const Operator* op) { |
320 DCHECK(op->opcode() == IrOpcode::kJSStoreDataPropertyInLiteral); | 320 DCHECK(op->opcode() == IrOpcode::kJSStoreDataPropertyInLiteral || |
| 321 op->opcode() == IrOpcode::kJSCollectTypeProfile); |
321 return OpParameter<DataPropertyParameters>(op); | 322 return OpParameter<DataPropertyParameters>(op); |
322 } | 323 } |
323 | 324 |
324 bool operator==(NamedAccess const& lhs, NamedAccess const& rhs) { | 325 bool operator==(NamedAccess const& lhs, NamedAccess const& rhs) { |
325 return lhs.name().location() == rhs.name().location() && | 326 return lhs.name().location() == rhs.name().location() && |
326 lhs.language_mode() == rhs.language_mode() && | 327 lhs.language_mode() == rhs.language_mode() && |
327 lhs.feedback() == rhs.feedback(); | 328 lhs.feedback() == rhs.feedback(); |
328 } | 329 } |
329 | 330 |
330 | 331 |
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
725 const VectorSlotPair& feedback) { | 726 const VectorSlotPair& feedback) { |
726 DataPropertyParameters parameters(feedback); | 727 DataPropertyParameters parameters(feedback); |
727 return new (zone()) Operator1<DataPropertyParameters>( // -- | 728 return new (zone()) Operator1<DataPropertyParameters>( // -- |
728 IrOpcode::kJSStoreDataPropertyInLiteral, | 729 IrOpcode::kJSStoreDataPropertyInLiteral, |
729 Operator::kNoThrow, // opcode | 730 Operator::kNoThrow, // opcode |
730 "JSStoreDataPropertyInLiteral", // name | 731 "JSStoreDataPropertyInLiteral", // name |
731 4, 1, 1, 0, 1, 0, // counts | 732 4, 1, 1, 0, 1, 0, // counts |
732 parameters); // parameter | 733 parameters); // parameter |
733 } | 734 } |
734 | 735 |
| 736 const Operator* JSOperatorBuilder::CollectTypeProfile( |
| 737 const VectorSlotPair& feedback) { |
| 738 DataPropertyParameters parameters(feedback); |
| 739 return new (zone()) Operator1<DataPropertyParameters>( // -- |
| 740 IrOpcode::kJSCollectTypeProfile, |
| 741 Operator::kNoThrow, // opcode |
| 742 "JSCollectTypeProfile", // name |
| 743 2, 1, 1, 0, 1, 0, // counts |
| 744 parameters); // parameter |
| 745 } |
| 746 |
735 const Operator* JSOperatorBuilder::ToBoolean(ToBooleanHints hints) { | 747 const Operator* JSOperatorBuilder::ToBoolean(ToBooleanHints hints) { |
736 // TODO(turbofan): Cache most important versions of this operator. | 748 // TODO(turbofan): Cache most important versions of this operator. |
737 return new (zone()) Operator1<ToBooleanHints>( //-- | 749 return new (zone()) Operator1<ToBooleanHints>( //-- |
738 IrOpcode::kJSToBoolean, Operator::kPure, // opcode | 750 IrOpcode::kJSToBoolean, Operator::kPure, // opcode |
739 "JSToBoolean", // name | 751 "JSToBoolean", // name |
740 1, 0, 0, 1, 0, 0, // inputs/outputs | 752 1, 0, 0, 1, 0, 0, // inputs/outputs |
741 hints); // parameter | 753 hints); // parameter |
742 } | 754 } |
743 | 755 |
744 const Operator* JSOperatorBuilder::CallForwardVarargs( | 756 const Operator* JSOperatorBuilder::CallForwardVarargs( |
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1077 return new (zone()) Operator1<Handle<ScopeInfo>>( // -- | 1089 return new (zone()) Operator1<Handle<ScopeInfo>>( // -- |
1078 IrOpcode::kJSCreateScriptContext, Operator::kNoProperties, // opcode | 1090 IrOpcode::kJSCreateScriptContext, Operator::kNoProperties, // opcode |
1079 "JSCreateScriptContext", // name | 1091 "JSCreateScriptContext", // name |
1080 1, 1, 1, 1, 1, 2, // counts | 1092 1, 1, 1, 1, 1, 2, // counts |
1081 scope_info); // parameter | 1093 scope_info); // parameter |
1082 } | 1094 } |
1083 | 1095 |
1084 } // namespace compiler | 1096 } // namespace compiler |
1085 } // namespace internal | 1097 } // namespace internal |
1086 } // namespace v8 | 1098 } // namespace v8 |
OLD | NEW |