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

Side by Side Diff: src/compiler/js-intrinsic-lowering.h

Issue 872363002: [turbofan] Add new JSIntrinsicsLowering reducer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 11 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/js-intrinsic-builder.cc ('k') | src/compiler/js-intrinsic-lowering.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 2015 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_INTRINSIC_LOWERING_H_
6 #define V8_COMPILER_JS_BUILTIN_REDUCER_H_ 6 #define V8_COMPILER_JS_INTRINSIC_LOWERING_H_
7 7
8 #include "src/compiler/graph-reducer.h" 8 #include "src/compiler/graph-reducer.h"
9 #include "src/compiler/simplified-operator.h" 9 #include "src/compiler/simplified-operator.h"
10 10
11 namespace v8 { 11 namespace v8 {
12 namespace internal { 12 namespace internal {
13 namespace compiler { 13 namespace compiler {
14 14
15 // Forward declarations. 15 // Forward declarations.
16 class CommonOperatorBuilder; 16 class CommonOperatorBuilder;
17 class JSGraph; 17 class JSGraph;
18 class MachineOperatorBuilder; 18 class MachineOperatorBuilder;
19 19
20 20
21 class JSBuiltinReducer FINAL : public Reducer { 21 // Lowers certain JS-level runtime calls.
22 class JSIntrinsicLowering FINAL : public Reducer {
22 public: 23 public:
23 explicit JSBuiltinReducer(JSGraph* jsgraph); 24 explicit JSIntrinsicLowering(JSGraph* jsgraph);
24 ~JSBuiltinReducer() FINAL {} 25 ~JSIntrinsicLowering() FINAL {}
25 26
26 Reduction Reduce(Node* node) FINAL; 27 Reduction Reduce(Node* node) FINAL;
27 28
28 private: 29 private:
29 Reduction ReduceMathAbs(Node* node); 30 Reduction ReduceInlineIsSmi(Node* node);
30 Reduction ReduceMathSqrt(Node* node); 31 Reduction ReduceInlineIsNonNegativeSmi(Node* node);
31 Reduction ReduceMathMax(Node* node); 32 Reduction ReduceInlineIsInstanceType(Node* node, InstanceType instance_type);
32 Reduction ReduceMathImul(Node* node); 33 Reduction ReduceInlineValueOf(Node* node);
33 Reduction ReduceMathFround(Node* node);
34 Reduction ReduceMathFloor(Node* node);
35 Reduction ReduceMathCeil(Node* node);
36 34
35 Reduction Change(Node* node, const Operator* op);
36 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c);
37
38 Graph* graph() const;
37 JSGraph* jsgraph() const { return jsgraph_; } 39 JSGraph* jsgraph() const { return jsgraph_; }
38 Graph* graph() const;
39 CommonOperatorBuilder* common() const; 40 CommonOperatorBuilder* common() const;
40 MachineOperatorBuilder* machine() const; 41 MachineOperatorBuilder* machine() const;
41 SimplifiedOperatorBuilder* simplified() { return &simplified_; } 42 SimplifiedOperatorBuilder* simplified() { return &simplified_; }
42 43
43 JSGraph* jsgraph_; 44 JSGraph* jsgraph_;
44 SimplifiedOperatorBuilder simplified_; 45 SimplifiedOperatorBuilder simplified_;
45 }; 46 };
46 47
47 } // namespace compiler 48 } // namespace compiler
48 } // namespace internal 49 } // namespace internal
49 } // namespace v8 50 } // namespace v8
50 51
51 #endif // V8_COMPILER_JS_BUILTIN_REDUCER_H_ 52 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_
OLDNEW
« no previous file with comments | « src/compiler/js-intrinsic-builder.cc ('k') | src/compiler/js-intrinsic-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698