| OLD | NEW |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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_TYPED_OPTIMIZATION_H_ | 5 #ifndef V8_COMPILER_TYPED_OPTIMIZATION_H_ |
| 6 #define V8_COMPILER_TYPED_OPTIMIZATION_H_ | 6 #define V8_COMPILER_TYPED_OPTIMIZATION_H_ |
| 7 | 7 |
| 8 #include "src/base/compiler-specific.h" | 8 #include "src/base/compiler-specific.h" |
| 9 #include "src/base/flags.h" | 9 #include "src/base/flags.h" |
| 10 #include "src/compiler/graph-reducer.h" | 10 #include "src/compiler/graph-reducer.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 Flags flags, JSGraph* jsgraph); | 39 Flags flags, JSGraph* jsgraph); |
| 40 ~TypedOptimization(); | 40 ~TypedOptimization(); |
| 41 | 41 |
| 42 Reduction Reduce(Node* node) final; | 42 Reduction Reduce(Node* node) final; |
| 43 | 43 |
| 44 private: | 44 private: |
| 45 Reduction ReduceCheckHeapObject(Node* node); | 45 Reduction ReduceCheckHeapObject(Node* node); |
| 46 Reduction ReduceCheckMaps(Node* node); | 46 Reduction ReduceCheckMaps(Node* node); |
| 47 Reduction ReduceCheckString(Node* node); | 47 Reduction ReduceCheckString(Node* node); |
| 48 Reduction ReduceLoadField(Node* node); | 48 Reduction ReduceLoadField(Node* node); |
| 49 Reduction ReduceNumberFloor(Node* node); |
| 49 Reduction ReduceNumberRoundop(Node* node); | 50 Reduction ReduceNumberRoundop(Node* node); |
| 50 Reduction ReduceNumberToUint8Clamped(Node* node); | 51 Reduction ReduceNumberToUint8Clamped(Node* node); |
| 51 Reduction ReducePhi(Node* node); | 52 Reduction ReducePhi(Node* node); |
| 52 Reduction ReduceSelect(Node* node); | 53 Reduction ReduceSelect(Node* node); |
| 53 | 54 |
| 54 CompilationDependencies* dependencies() const { return dependencies_; } | 55 CompilationDependencies* dependencies() const { return dependencies_; } |
| 55 Factory* factory() const; | 56 Factory* factory() const; |
| 56 Flags flags() const { return flags_; } | 57 Flags flags() const { return flags_; } |
| 57 Graph* graph() const; | 58 Graph* graph() const; |
| 58 Isolate* isolate() const; | 59 Isolate* isolate() const; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 69 DISALLOW_COPY_AND_ASSIGN(TypedOptimization); | 70 DISALLOW_COPY_AND_ASSIGN(TypedOptimization); |
| 70 }; | 71 }; |
| 71 | 72 |
| 72 DEFINE_OPERATORS_FOR_FLAGS(TypedOptimization::Flags) | 73 DEFINE_OPERATORS_FOR_FLAGS(TypedOptimization::Flags) |
| 73 | 74 |
| 74 } // namespace compiler | 75 } // namespace compiler |
| 75 } // namespace internal | 76 } // namespace internal |
| 76 } // namespace v8 | 77 } // namespace v8 |
| 77 | 78 |
| 78 #endif // V8_COMPILER_TYPED_OPTIMIZATION_H_ | 79 #endif // V8_COMPILER_TYPED_OPTIMIZATION_H_ |
| OLD | NEW |