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

Side by Side Diff: src/compiler/simplified-lowering.h

Issue 1571263004: [turbofan] Replace MachineSemantic with Type in simplified lowering. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rename upper -> type Created 4 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/representation-change.cc ('k') | src/compiler/simplified-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 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_SIMPLIFIED_LOWERING_H_ 5 #ifndef V8_COMPILER_SIMPLIFIED_LOWERING_H_
6 #define V8_COMPILER_SIMPLIFIED_LOWERING_H_ 6 #define V8_COMPILER_SIMPLIFIED_LOWERING_H_
7 7
8 #include "src/compiler/js-graph.h" 8 #include "src/compiler/js-graph.h"
9 #include "src/compiler/machine-operator.h" 9 #include "src/compiler/machine-operator.h"
10 #include "src/compiler/node.h" 10 #include "src/compiler/node.h"
(...skipping 13 matching lines...) Expand all
24 class SourcePositionTable; 24 class SourcePositionTable;
25 25
26 class SimplifiedLowering final { 26 class SimplifiedLowering final {
27 public: 27 public:
28 SimplifiedLowering(JSGraph* jsgraph, Zone* zone, 28 SimplifiedLowering(JSGraph* jsgraph, Zone* zone,
29 SourcePositionTable* source_positions); 29 SourcePositionTable* source_positions);
30 ~SimplifiedLowering() {} 30 ~SimplifiedLowering() {}
31 31
32 void LowerAllNodes(); 32 void LowerAllNodes();
33 33
34 // TODO(turbofan): The output_type can be removed once the result of the 34 // TODO(turbofan): The representation can be removed once the result of the
35 // representation analysis is stored in the node bounds. 35 // representation analysis is stored in the node bounds.
36 void DoLoadBuffer(Node* node, MachineType output_type, 36 void DoLoadBuffer(Node* node, MachineRepresentation rep,
37 RepresentationChanger* changer); 37 RepresentationChanger* changer);
38 void DoStoreBuffer(Node* node); 38 void DoStoreBuffer(Node* node);
39 void DoObjectIsNumber(Node* node); 39 void DoObjectIsNumber(Node* node);
40 void DoObjectIsSmi(Node* node); 40 void DoObjectIsSmi(Node* node);
41 void DoShift(Node* node, Operator const* op); 41 void DoShift(Node* node, Operator const* op);
42 void DoStringEqual(Node* node); 42 void DoStringEqual(Node* node);
43 void DoStringLessThan(Node* node); 43 void DoStringLessThan(Node* node);
44 void DoStringLessThanOrEqual(Node* node); 44 void DoStringLessThanOrEqual(Node* node);
45 45
46 private: 46 private:
(...skipping 22 matching lines...) Expand all
69 Graph* graph() { return jsgraph()->graph(); } 69 Graph* graph() { return jsgraph()->graph(); }
70 CommonOperatorBuilder* common() { return jsgraph()->common(); } 70 CommonOperatorBuilder* common() { return jsgraph()->common(); }
71 MachineOperatorBuilder* machine() { return jsgraph()->machine(); } 71 MachineOperatorBuilder* machine() { return jsgraph()->machine(); }
72 }; 72 };
73 73
74 } // namespace compiler 74 } // namespace compiler
75 } // namespace internal 75 } // namespace internal
76 } // namespace v8 76 } // namespace v8
77 77
78 #endif // V8_COMPILER_SIMPLIFIED_LOWERING_H_ 78 #endif // V8_COMPILER_SIMPLIFIED_LOWERING_H_
OLDNEW
« no previous file with comments | « src/compiler/representation-change.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698