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

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

Issue 2083573002: [builtins] Unify Cosh, Sinh and Tanh as exports from flibm (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE and windows fix. Created 4 years, 5 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/instruction-selector.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/compiler/graph-reducer.h" 8 #include "src/compiler/graph-reducer.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 19 matching lines...) Expand all
30 30
31 private: 31 private:
32 Reduction ReduceMathAbs(Node* node); 32 Reduction ReduceMathAbs(Node* node);
33 Reduction ReduceMathAtan(Node* node); 33 Reduction ReduceMathAtan(Node* node);
34 Reduction ReduceMathAtan2(Node* node); 34 Reduction ReduceMathAtan2(Node* node);
35 Reduction ReduceMathAtanh(Node* node); 35 Reduction ReduceMathAtanh(Node* node);
36 Reduction ReduceMathCbrt(Node* node); 36 Reduction ReduceMathCbrt(Node* node);
37 Reduction ReduceMathCeil(Node* node); 37 Reduction ReduceMathCeil(Node* node);
38 Reduction ReduceMathClz32(Node* node); 38 Reduction ReduceMathClz32(Node* node);
39 Reduction ReduceMathCos(Node* node); 39 Reduction ReduceMathCos(Node* node);
40 Reduction ReduceMathCosh(Node* node);
40 Reduction ReduceMathExp(Node* node); 41 Reduction ReduceMathExp(Node* node);
41 Reduction ReduceMathExpm1(Node* node); 42 Reduction ReduceMathExpm1(Node* node);
42 Reduction ReduceMathFloor(Node* node); 43 Reduction ReduceMathFloor(Node* node);
43 Reduction ReduceMathFround(Node* node); 44 Reduction ReduceMathFround(Node* node);
44 Reduction ReduceMathImul(Node* node); 45 Reduction ReduceMathImul(Node* node);
45 Reduction ReduceMathLog(Node* node); 46 Reduction ReduceMathLog(Node* node);
46 Reduction ReduceMathLog1p(Node* node); 47 Reduction ReduceMathLog1p(Node* node);
47 Reduction ReduceMathLog10(Node* node); 48 Reduction ReduceMathLog10(Node* node);
48 Reduction ReduceMathLog2(Node* node); 49 Reduction ReduceMathLog2(Node* node);
49 Reduction ReduceMathMax(Node* node); 50 Reduction ReduceMathMax(Node* node);
50 Reduction ReduceMathMin(Node* node); 51 Reduction ReduceMathMin(Node* node);
51 Reduction ReduceMathPow(Node* node); 52 Reduction ReduceMathPow(Node* node);
52 Reduction ReduceMathRound(Node* node); 53 Reduction ReduceMathRound(Node* node);
53 Reduction ReduceMathSin(Node* node); 54 Reduction ReduceMathSin(Node* node);
55 Reduction ReduceMathSinh(Node* node);
54 Reduction ReduceMathSqrt(Node* node); 56 Reduction ReduceMathSqrt(Node* node);
55 Reduction ReduceMathTan(Node* node); 57 Reduction ReduceMathTan(Node* node);
58 Reduction ReduceMathTanh(Node* node);
56 Reduction ReduceMathTrunc(Node* node); 59 Reduction ReduceMathTrunc(Node* node);
57 Reduction ReduceStringFromCharCode(Node* node); 60 Reduction ReduceStringFromCharCode(Node* node);
58 61
59 Node* ToNumber(Node* value); 62 Node* ToNumber(Node* value);
60 Node* ToUint32(Node* value); 63 Node* ToUint32(Node* value);
61 64
62 Graph* graph() const; 65 Graph* graph() const;
63 JSGraph* jsgraph() const { return jsgraph_; } 66 JSGraph* jsgraph() const { return jsgraph_; }
64 Isolate* isolate() const; 67 Isolate* isolate() const;
65 CommonOperatorBuilder* common() const; 68 CommonOperatorBuilder* common() const;
66 SimplifiedOperatorBuilder* simplified() const; 69 SimplifiedOperatorBuilder* simplified() const;
67 70
68 JSGraph* const jsgraph_; 71 JSGraph* const jsgraph_;
69 TypeCache const& type_cache_; 72 TypeCache const& type_cache_;
70 }; 73 };
71 74
72 } // namespace compiler 75 } // namespace compiler
73 } // namespace internal 76 } // namespace internal
74 } // namespace v8 77 } // namespace v8
75 78
76 #endif // V8_COMPILER_JS_BUILTIN_REDUCER_H_ 79 #endif // V8_COMPILER_JS_BUILTIN_REDUCER_H_
OLDNEW
« no previous file with comments | « src/compiler/instruction-selector.cc ('k') | src/compiler/js-builtin-reducer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698