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

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

Issue 1925073002: Revert of [turbofan] Run everything after representation selection concurrently. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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 be6e89579542440e8c8c0e5a4c96a495b381e3c9..665bab24d55b5e7a67a03051f67112f293d72924 100644
--- a/src/compiler/change-lowering.h
+++ b/src/compiler/change-lowering.h
@@ -27,24 +27,38 @@
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 ReduceChangeBitToBool(Node* value, Node* control);
- Reduction ReduceChangeBoolToBit(Node* value);
- Reduction ReduceChangeInt31ToTagged(Node* value, Node* control);
- Reduction ReduceChangeTaggedSignedToInt32(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 ReduceLoadField(Node* node);
- Reduction ReduceStoreField(Node* node);
- Reduction ReduceLoadElement(Node* node);
- Reduction ReduceStoreElement(Node* node);
- Reduction ReduceAllocate(Node* node);
+ Reduction LoadField(Node* node);
+ Reduction StoreField(Node* node);
+ Reduction LoadElement(Node* node);
+ Reduction StoreElement(Node* node);
+ Reduction Allocate(Node* node);
- Reduction ReduceObjectIsSmi(Node* node);
+ Node* IsSmi(Node* value);
+ Node* LoadHeapObjectMap(Node* object, Node* control);
+ Node* LoadMapBitField(Node* map);
+ Node* LoadMapInstanceType(Node* map);
+
+ Reduction ObjectIsSmi(Node* node);
Node* ComputeIndex(const ElementAccess& access, Node* const key);
Graph* graph() const;
« 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