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

Unified Diff: src/compiler/change-lowering.h

Issue 1926023002: [turbofan] Run everything after representation selection concurrently. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Remove some dead code. Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/code-stubs-hydrogen.cc ('k') | src/compiler/change-lowering.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/change-lowering.h
diff --git a/src/compiler/change-lowering.h b/src/compiler/change-lowering.h
index 665bab24d55b5e7a67a03051f67112f293d72924..064b38fd5bd1e94f6783dcd9faa9a60a9b49de6e 100644
--- a/src/compiler/change-lowering.h
+++ b/src/compiler/change-lowering.h
@@ -27,38 +27,24 @@ class ChangeLowering final : public Reducer {
Reduction Reduce(Node* node) final;
private:
- Node* HeapNumberValueIndexConstant();
Node* SmiShiftBitsConstant();
- Node* ChangeInt32ToFloat64(Node* value);
Node* ChangeInt32ToSmi(Node* value);
- Node* ChangeSmiToFloat64(Node* value);
Node* ChangeSmiToWord32(Node* value);
Node* ChangeUint32ToFloat64(Node* value);
- Node* ChangeUint32ToSmi(Node* value);
- Node* LoadHeapNumberValue(Node* value, Node* control);
- Node* TestNotSmi(Node* value);
- Reduction ChangeBitToBool(Node* value, Node* control);
- Reduction ChangeBoolToBit(Node* value);
- Reduction ChangeFloat64ToTagged(Node* value, Node* control);
- Reduction ChangeInt31ToTagged(Node* value, Node* control);
- Reduction ChangeInt32ToTagged(Node* value, Node* control);
- Reduction ChangeTaggedSignedToInt32(Node* value);
- Reduction ChangeUint32ToTagged(Node* value, Node* control);
+ Reduction ReduceChangeBitToBool(Node* value, Node* control);
+ Reduction ReduceChangeBoolToBit(Node* value);
+ Reduction ReduceChangeInt31ToTagged(Node* value, Node* control);
+ Reduction ReduceChangeTaggedSignedToInt32(Node* value);
- Reduction LoadField(Node* node);
- Reduction StoreField(Node* node);
- Reduction LoadElement(Node* node);
- Reduction StoreElement(Node* node);
- Reduction Allocate(Node* node);
+ Reduction ReduceLoadField(Node* node);
+ Reduction ReduceStoreField(Node* node);
+ Reduction ReduceLoadElement(Node* node);
+ Reduction ReduceStoreElement(Node* node);
+ Reduction ReduceAllocate(Node* node);
- Node* IsSmi(Node* value);
- Node* LoadHeapObjectMap(Node* object, Node* control);
- Node* LoadMapBitField(Node* map);
- Node* LoadMapInstanceType(Node* map);
-
- Reduction ObjectIsSmi(Node* node);
+ Reduction ReduceObjectIsSmi(Node* node);
Node* ComputeIndex(const ElementAccess& access, Node* const key);
Graph* graph() const;
@@ -68,7 +54,7 @@ class ChangeLowering final : public Reducer {
MachineOperatorBuilder* machine() const;
JSGraph* const jsgraph_;
- SetOncePointer<const Operator> allocate_heap_number_operator_;
+ SetOncePointer<const Operator> allocate_operator_;
};
} // namespace compiler
« no previous file with comments | « src/code-stubs-hydrogen.cc ('k') | src/compiler/change-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698