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

Side by Side Diff: src/compiler/js-builtin-reducer.h

Issue 2522543008: Merged: Squashed multiple commits. (Closed)
Patch Set: Created 4 years 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/code-factory.cc ('k') | src/compiler/js-builtin-reducer.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_BUILTIN_REDUCER_H_ 5 #ifndef V8_COMPILER_JS_BUILTIN_REDUCER_H_
6 #define V8_COMPILER_JS_BUILTIN_REDUCER_H_ 6 #define V8_COMPILER_JS_BUILTIN_REDUCER_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 10
(...skipping 26 matching lines...) Expand all
37 JSBuiltinReducer(Editor* editor, JSGraph* jsgraph, Flags flags, 37 JSBuiltinReducer(Editor* editor, JSGraph* jsgraph, Flags flags,
38 CompilationDependencies* dependencies); 38 CompilationDependencies* dependencies);
39 ~JSBuiltinReducer() final {} 39 ~JSBuiltinReducer() final {}
40 40
41 Reduction Reduce(Node* node) final; 41 Reduction Reduce(Node* node) final;
42 42
43 private: 43 private:
44 Reduction ReduceArrayPop(Node* node); 44 Reduction ReduceArrayPop(Node* node);
45 Reduction ReduceArrayPush(Node* node); 45 Reduction ReduceArrayPush(Node* node);
46 Reduction ReduceDateGetTime(Node* node); 46 Reduction ReduceDateGetTime(Node* node);
47 Reduction ReduceFunctionHasInstance(Node* node);
47 Reduction ReduceGlobalIsFinite(Node* node); 48 Reduction ReduceGlobalIsFinite(Node* node);
48 Reduction ReduceGlobalIsNaN(Node* node); 49 Reduction ReduceGlobalIsNaN(Node* node);
49 Reduction ReduceMathAbs(Node* node); 50 Reduction ReduceMathAbs(Node* node);
50 Reduction ReduceMathAcos(Node* node); 51 Reduction ReduceMathAcos(Node* node);
51 Reduction ReduceMathAcosh(Node* node); 52 Reduction ReduceMathAcosh(Node* node);
52 Reduction ReduceMathAsin(Node* node); 53 Reduction ReduceMathAsin(Node* node);
53 Reduction ReduceMathAsinh(Node* node); 54 Reduction ReduceMathAsinh(Node* node);
54 Reduction ReduceMathAtan(Node* node); 55 Reduction ReduceMathAtan(Node* node);
55 Reduction ReduceMathAtanh(Node* node); 56 Reduction ReduceMathAtanh(Node* node);
56 Reduction ReduceMathAtan2(Node* node); 57 Reduction ReduceMathAtan2(Node* node);
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 TypeCache const& type_cache_; 112 TypeCache const& type_cache_;
112 }; 113 };
113 114
114 DEFINE_OPERATORS_FOR_FLAGS(JSBuiltinReducer::Flags) 115 DEFINE_OPERATORS_FOR_FLAGS(JSBuiltinReducer::Flags)
115 116
116 } // namespace compiler 117 } // namespace compiler
117 } // namespace internal 118 } // namespace internal
118 } // namespace v8 119 } // namespace v8
119 120
120 #endif // V8_COMPILER_JS_BUILTIN_REDUCER_H_ 121 #endif // V8_COMPILER_JS_BUILTIN_REDUCER_H_
OLDNEW
« no previous file with comments | « src/code-factory.cc ('k') | src/compiler/js-builtin-reducer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698