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

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

Issue 1942733002: Revert of [turbofan] Remove left-over change bits from ChangeLowering. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 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/change-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_CHANGE_LOWERING_H_ 5 #ifndef V8_COMPILER_CHANGE_LOWERING_H_
6 #define V8_COMPILER_CHANGE_LOWERING_H_ 6 #define V8_COMPILER_CHANGE_LOWERING_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 {
11 namespace internal { 11 namespace internal {
12 namespace compiler { 12 namespace compiler {
13 13
14 // Forward declarations. 14 // Forward declarations.
15 class CommonOperatorBuilder; 15 class CommonOperatorBuilder;
16 struct ElementAccess; 16 struct ElementAccess;
17 class JSGraph; 17 class JSGraph;
18 class Linkage; 18 class Linkage;
19 class MachineOperatorBuilder; 19 class MachineOperatorBuilder;
20 class Operator; 20 class Operator;
21 21
22 class ChangeLowering final : public Reducer { 22 class ChangeLowering final : public Reducer {
23 public: 23 public:
24 explicit ChangeLowering(JSGraph* jsgraph) : jsgraph_(jsgraph) {} 24 explicit ChangeLowering(JSGraph* jsgraph) : jsgraph_(jsgraph) {}
25 ~ChangeLowering() final; 25 ~ChangeLowering() final;
26 26
27 Reduction Reduce(Node* node) final; 27 Reduction Reduce(Node* node) final;
28 28
29 private: 29 private:
30 Node* SmiShiftBitsConstant();
31
32 Node* ChangeInt32ToSmi(Node* value);
33 Node* ChangeSmiToWord32(Node* value);
34 Node* ChangeUint32ToFloat64(Node* value);
35
36 Reduction ReduceChangeBitToBool(Node* value, Node* control);
37 Reduction ReduceChangeBoolToBit(Node* value);
38 Reduction ReduceChangeInt31ToTagged(Node* value, Node* control);
39 Reduction ReduceChangeTaggedSignedToInt32(Node* value);
40
30 Reduction ReduceLoadField(Node* node); 41 Reduction ReduceLoadField(Node* node);
31 Reduction ReduceStoreField(Node* node); 42 Reduction ReduceStoreField(Node* node);
32 Reduction ReduceLoadElement(Node* node); 43 Reduction ReduceLoadElement(Node* node);
33 Reduction ReduceStoreElement(Node* node); 44 Reduction ReduceStoreElement(Node* node);
34 Reduction ReduceAllocate(Node* node); 45 Reduction ReduceAllocate(Node* node);
35 46
47 Reduction ReduceObjectIsSmi(Node* node);
48
36 Node* ComputeIndex(const ElementAccess& access, Node* const key); 49 Node* ComputeIndex(const ElementAccess& access, Node* const key);
37 Graph* graph() const; 50 Graph* graph() const;
38 Isolate* isolate() const; 51 Isolate* isolate() const;
39 JSGraph* jsgraph() const { return jsgraph_; } 52 JSGraph* jsgraph() const { return jsgraph_; }
40 CommonOperatorBuilder* common() const; 53 CommonOperatorBuilder* common() const;
41 MachineOperatorBuilder* machine() const; 54 MachineOperatorBuilder* machine() const;
42 55
43 JSGraph* const jsgraph_; 56 JSGraph* const jsgraph_;
44 SetOncePointer<const Operator> allocate_operator_; 57 SetOncePointer<const Operator> allocate_operator_;
45 }; 58 };
46 59
47 } // namespace compiler 60 } // namespace compiler
48 } // namespace internal 61 } // namespace internal
49 } // namespace v8 62 } // namespace v8
50 63
51 #endif // V8_COMPILER_CHANGE_LOWERING_H_ 64 #endif // V8_COMPILER_CHANGE_LOWERING_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/change-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698