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

Side by Side Diff: src/compiler/typed-optimization.h

Issue 2819653002: Merged: Squashed multiple commits. (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | src/compiler/typed-optimization.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 26 matching lines...) Expand all
37 37
38 TypedOptimization(Editor* editor, CompilationDependencies* dependencies, 38 TypedOptimization(Editor* editor, CompilationDependencies* dependencies,
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 ReduceCheckNumber(Node* node);
47 Reduction ReduceCheckString(Node* node); 48 Reduction ReduceCheckString(Node* node);
48 Reduction ReduceLoadField(Node* node); 49 Reduction ReduceLoadField(Node* node);
49 Reduction ReduceNumberFloor(Node* node); 50 Reduction ReduceNumberFloor(Node* node);
50 Reduction ReduceNumberRoundop(Node* node); 51 Reduction ReduceNumberRoundop(Node* node);
51 Reduction ReduceNumberToUint8Clamped(Node* node); 52 Reduction ReduceNumberToUint8Clamped(Node* node);
52 Reduction ReducePhi(Node* node); 53 Reduction ReducePhi(Node* node);
53 Reduction ReduceReferenceEqual(Node* node); 54 Reduction ReduceReferenceEqual(Node* node);
54 Reduction ReduceSelect(Node* node); 55 Reduction ReduceSelect(Node* node);
55 56
56 CompilationDependencies* dependencies() const { return dependencies_; } 57 CompilationDependencies* dependencies() const { return dependencies_; }
(...skipping 14 matching lines...) Expand all
71 DISALLOW_COPY_AND_ASSIGN(TypedOptimization); 72 DISALLOW_COPY_AND_ASSIGN(TypedOptimization);
72 }; 73 };
73 74
74 DEFINE_OPERATORS_FOR_FLAGS(TypedOptimization::Flags) 75 DEFINE_OPERATORS_FOR_FLAGS(TypedOptimization::Flags)
75 76
76 } // namespace compiler 77 } // namespace compiler
77 } // namespace internal 78 } // namespace internal
78 } // namespace v8 79 } // namespace v8
79 80
80 #endif // V8_COMPILER_TYPED_OPTIMIZATION_H_ 81 #endif // V8_COMPILER_TYPED_OPTIMIZATION_H_
OLDNEW
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | src/compiler/typed-optimization.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698