| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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_GLOBAL_SPECIALIZATION_H_ | 5 #ifndef V8_COMPILER_JS_GLOBAL_SPECIALIZATION_H_ |
| 6 #define V8_COMPILER_JS_GLOBAL_SPECIALIZATION_H_ | 6 #define V8_COMPILER_JS_GLOBAL_SPECIALIZATION_H_ |
| 7 | 7 |
| 8 #include "src/base/flags.h" | 8 #include "src/base/flags.h" |
| 9 #include "src/compiler/graph-reducer.h" | 9 #include "src/compiler/graph-reducer.h" |
| 10 #include "src/compiler/simplified-operator.h" | 10 #include "src/compiler/simplified-operator.h" |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 | 68 |
| 69 JSGraph* const jsgraph_; | 69 JSGraph* const jsgraph_; |
| 70 Flags const flags_; | 70 Flags const flags_; |
| 71 Handle<GlobalObject> global_object_; | 71 Handle<GlobalObject> global_object_; |
| 72 CompilationDependencies* const dependencies_; | 72 CompilationDependencies* const dependencies_; |
| 73 SimplifiedOperatorBuilder simplified_; | 73 SimplifiedOperatorBuilder simplified_; |
| 74 | 74 |
| 75 DISALLOW_COPY_AND_ASSIGN(JSGlobalSpecialization); | 75 DISALLOW_COPY_AND_ASSIGN(JSGlobalSpecialization); |
| 76 }; | 76 }; |
| 77 | 77 |
| 78 DEFINE_OPERATORS_FOR_FLAGS(JSGlobalSpecialization::Flags) |
| 79 |
| 78 } // namespace compiler | 80 } // namespace compiler |
| 79 } // namespace internal | 81 } // namespace internal |
| 80 } // namespace v8 | 82 } // namespace v8 |
| 81 | 83 |
| 82 #endif // V8_COMPILER_JS_GLOBAL_SPECIALIZATION_H_ | 84 #endif // V8_COMPILER_JS_GLOBAL_SPECIALIZATION_H_ |
| OLD | NEW |