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

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

Issue 1021183002: [turbofan] Turn Math.clz32 into an inlinable builtin. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 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-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 2015 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_INTRINSIC_LOWERING_H_ 5 #ifndef V8_COMPILER_JS_INTRINSIC_LOWERING_H_
6 #define V8_COMPILER_JS_INTRINSIC_LOWERING_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
(...skipping 17 matching lines...) Expand all
28 28
29 private: 29 private:
30 Reduction ReduceInlineDeoptimizeNow(Node* node); 30 Reduction ReduceInlineDeoptimizeNow(Node* node);
31 Reduction ReduceInlineIsSmi(Node* node); 31 Reduction ReduceInlineIsSmi(Node* node);
32 Reduction ReduceInlineIsNonNegativeSmi(Node* node); 32 Reduction ReduceInlineIsNonNegativeSmi(Node* node);
33 Reduction ReduceInlineIsInstanceType(Node* node, InstanceType instance_type); 33 Reduction ReduceInlineIsInstanceType(Node* node, InstanceType instance_type);
34 Reduction ReduceInlineJSValueGetValue(Node* node); 34 Reduction ReduceInlineJSValueGetValue(Node* node);
35 Reduction ReduceInlineConstructDouble(Node* node); 35 Reduction ReduceInlineConstructDouble(Node* node);
36 Reduction ReduceInlineDoubleLo(Node* node); 36 Reduction ReduceInlineDoubleLo(Node* node);
37 Reduction ReduceInlineDoubleHi(Node* node); 37 Reduction ReduceInlineDoubleHi(Node* node);
38 Reduction ReduceInlineMathClz32(Node* node);
38 Reduction ReduceInlineMathFloor(Node* node); 39 Reduction ReduceInlineMathFloor(Node* node);
39 Reduction ReduceInlineMathSqrt(Node* node); 40 Reduction ReduceInlineMathSqrt(Node* node);
40 Reduction ReduceInlineStringGetLength(Node* node); 41 Reduction ReduceInlineStringGetLength(Node* node);
41 Reduction ReduceInlineValueOf(Node* node); 42 Reduction ReduceInlineValueOf(Node* node);
42 43
43 Reduction Change(Node* node, const Operator* op); 44 Reduction Change(Node* node, const Operator* op);
44 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c); 45 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c);
45 46
46 Graph* graph() const; 47 Graph* graph() const;
47 JSGraph* jsgraph() const { return jsgraph_; } 48 JSGraph* jsgraph() const { return jsgraph_; }
48 CommonOperatorBuilder* common() const; 49 CommonOperatorBuilder* common() const;
49 MachineOperatorBuilder* machine() const; 50 MachineOperatorBuilder* machine() const;
50 SimplifiedOperatorBuilder* simplified() { return &simplified_; } 51 SimplifiedOperatorBuilder* simplified() { return &simplified_; }
51 52
52 JSGraph* jsgraph_; 53 JSGraph* jsgraph_;
53 SimplifiedOperatorBuilder simplified_; 54 SimplifiedOperatorBuilder simplified_;
54 }; 55 };
55 56
56 } // namespace compiler 57 } // namespace compiler
57 } // namespace internal 58 } // namespace internal
58 } // namespace v8 59 } // namespace v8
59 60
60 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_ 61 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_
OLDNEW
« no previous file with comments | « src/compiler/instruction-selector.cc ('k') | src/compiler/js-intrinsic-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698