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

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

Issue 2309823002: [turbofan] put src/types.[h/cc] into src/compiler/types.[h/cc] (Closed)
Patch Set: Created 4 years, 3 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
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698