| OLD | NEW | 
|---|
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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/simplified-operator.h" | 5 #include "src/compiler/simplified-operator.h" | 
| 6 | 6 | 
| 7 #include "src/base/lazy-instance.h" | 7 #include "src/base/lazy-instance.h" | 
| 8 #include "src/compiler/opcodes.h" | 8 #include "src/compiler/opcodes.h" | 
| 9 #include "src/compiler/operator.h" | 9 #include "src/compiler/operator.h" | 
| 10 #include "src/types.h" | 10 #include "src/compiler/types.h" | 
| 11 | 11 | 
| 12 namespace v8 { | 12 namespace v8 { | 
| 13 namespace internal { | 13 namespace internal { | 
| 14 namespace compiler { | 14 namespace compiler { | 
| 15 | 15 | 
| 16 size_t hash_value(BaseTaggedness base_taggedness) { | 16 size_t hash_value(BaseTaggedness base_taggedness) { | 
| 17   return static_cast<uint8_t>(base_taggedness); | 17   return static_cast<uint8_t>(base_taggedness); | 
| 18 } | 18 } | 
| 19 | 19 | 
| 20 std::ostream& operator<<(std::ostream& os, BaseTaggedness base_taggedness) { | 20 std::ostream& operator<<(std::ostream& os, BaseTaggedness base_taggedness) { | 
| (...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 803                         Operator::kNoDeopt | Operator::kNoThrow | properties,  \ | 803                         Operator::kNoDeopt | Operator::kNoThrow | properties,  \ | 
| 804                         #Name, value_input_count, 1, control_input_count,      \ | 804                         #Name, value_input_count, 1, control_input_count,      \ | 
| 805                         output_count, 1, 0, access);                           \ | 805                         output_count, 1, 0, access);                           \ | 
| 806   } | 806   } | 
| 807 ACCESS_OP_LIST(ACCESS) | 807 ACCESS_OP_LIST(ACCESS) | 
| 808 #undef ACCESS | 808 #undef ACCESS | 
| 809 | 809 | 
| 810 }  // namespace compiler | 810 }  // namespace compiler | 
| 811 }  // namespace internal | 811 }  // namespace internal | 
| 812 }  // namespace v8 | 812 }  // namespace v8 | 
| OLD | NEW | 
|---|