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

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

Issue 997513002: [turbofan] Use builtin inlining mechanism for Math.floor. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Andreas wants to keep the typer separate from inlining. 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 | « no previous file | 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 #include "src/compiler/simplified-operator.h" 9 #include "src/compiler/simplified-operator.h"
10 10
(...skipping 13 matching lines...) Expand all
24 ~JSBuiltinReducer() FINAL {} 24 ~JSBuiltinReducer() FINAL {}
25 25
26 Reduction Reduce(Node* node) FINAL; 26 Reduction Reduce(Node* node) FINAL;
27 27
28 private: 28 private:
29 Reduction ReduceMathAbs(Node* node); 29 Reduction ReduceMathAbs(Node* node);
30 Reduction ReduceMathSqrt(Node* node); 30 Reduction ReduceMathSqrt(Node* node);
31 Reduction ReduceMathMax(Node* node); 31 Reduction ReduceMathMax(Node* node);
32 Reduction ReduceMathImul(Node* node); 32 Reduction ReduceMathImul(Node* node);
33 Reduction ReduceMathFround(Node* node); 33 Reduction ReduceMathFround(Node* node);
34 Reduction ReduceMathFloor(Node* node);
35 34
36 JSGraph* jsgraph() const { return jsgraph_; } 35 JSGraph* jsgraph() const { return jsgraph_; }
37 Graph* graph() const; 36 Graph* graph() const;
38 CommonOperatorBuilder* common() const; 37 CommonOperatorBuilder* common() const;
39 MachineOperatorBuilder* machine() const; 38 MachineOperatorBuilder* machine() const;
40 SimplifiedOperatorBuilder* simplified() { return &simplified_; } 39 SimplifiedOperatorBuilder* simplified() { return &simplified_; }
41 40
42 JSGraph* jsgraph_; 41 JSGraph* jsgraph_;
43 SimplifiedOperatorBuilder simplified_; 42 SimplifiedOperatorBuilder simplified_;
44 }; 43 };
45 44
46 } // namespace compiler 45 } // namespace compiler
47 } // namespace internal 46 } // namespace internal
48 } // namespace v8 47 } // namespace v8
49 48
50 #endif // V8_COMPILER_JS_BUILTIN_REDUCER_H_ 49 #endif // V8_COMPILER_JS_BUILTIN_REDUCER_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/js-builtin-reducer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698