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

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

Issue 2077533002: [builtins] Introduce proper Float64Exp operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Import tests from Raymond. Created 4 years, 6 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 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/compiler/graph-reducer.h" 8 #include "src/compiler/graph-reducer.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 15 matching lines...) Expand all
26 explicit JSBuiltinReducer(Editor* editor, JSGraph* jsgraph); 26 explicit JSBuiltinReducer(Editor* editor, JSGraph* jsgraph);
27 ~JSBuiltinReducer() final {} 27 ~JSBuiltinReducer() final {}
28 28
29 Reduction Reduce(Node* node) final; 29 Reduction Reduce(Node* node) final;
30 30
31 private: 31 private:
32 Reduction ReduceMathAtan(Node* node); 32 Reduction ReduceMathAtan(Node* node);
33 Reduction ReduceMathAtan2(Node* node); 33 Reduction ReduceMathAtan2(Node* node);
34 Reduction ReduceMathCeil(Node* node); 34 Reduction ReduceMathCeil(Node* node);
35 Reduction ReduceMathClz32(Node* node); 35 Reduction ReduceMathClz32(Node* node);
36 Reduction ReduceMathExp(Node* node);
36 Reduction ReduceMathFloor(Node* node); 37 Reduction ReduceMathFloor(Node* node);
37 Reduction ReduceMathFround(Node* node); 38 Reduction ReduceMathFround(Node* node);
38 Reduction ReduceMathImul(Node* node); 39 Reduction ReduceMathImul(Node* node);
39 Reduction ReduceMathLog(Node* node); 40 Reduction ReduceMathLog(Node* node);
40 Reduction ReduceMathLog1p(Node* node); 41 Reduction ReduceMathLog1p(Node* node);
41 Reduction ReduceMathLog2(Node* node); 42 Reduction ReduceMathLog2(Node* node);
42 Reduction ReduceMathLog10(Node* node); 43 Reduction ReduceMathLog10(Node* node);
43 Reduction ReduceMathMax(Node* node); 44 Reduction ReduceMathMax(Node* node);
44 Reduction ReduceMathMin(Node* node); 45 Reduction ReduceMathMin(Node* node);
45 Reduction ReduceMathRound(Node* node); 46 Reduction ReduceMathRound(Node* node);
(...skipping 12 matching lines...) Expand all
58 59
59 JSGraph* const jsgraph_; 60 JSGraph* const jsgraph_;
60 TypeCache const& type_cache_; 61 TypeCache const& type_cache_;
61 }; 62 };
62 63
63 } // namespace compiler 64 } // namespace compiler
64 } // namespace internal 65 } // namespace internal
65 } // namespace v8 66 } // namespace v8
66 67
67 #endif // V8_COMPILER_JS_BUILTIN_REDUCER_H_ 68 #endif // V8_COMPILER_JS_BUILTIN_REDUCER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698