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

Unified Diff: src/machine-type.h

Issue 2216383002: TurboFan: Introduce TaggedSigned and TaggedPointer representations. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Mips compile fix. Created 4 years, 4 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/compiler/x64/instruction-selector-x64.cc ('k') | src/machine-type.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/machine-type.h
diff --git a/src/machine-type.h b/src/machine-type.h
index f2c3e75f2de2a528925c2ad8be0b4e3b565e23cc..bcc85b3e7c0f42bce6a19984bd0baf8d5b03d4c6 100644
--- a/src/machine-type.h
+++ b/src/machine-type.h
@@ -25,6 +25,8 @@ enum class MachineRepresentation : uint8_t {
kFloat32,
kFloat64, // must follow kFloat32
kSimd128, // must follow kFloat64
+ kTaggedSigned,
+ kTaggedPointer,
kTagged
};
@@ -228,6 +230,8 @@ inline int ElementSizeLog2Of(MachineRepresentation rep) {
return 3;
case MachineRepresentation::kSimd128:
return 4;
+ case MachineRepresentation::kTaggedSigned:
+ case MachineRepresentation::kTaggedPointer:
case MachineRepresentation::kTagged:
return kPointerSizeLog2;
default:
« no previous file with comments | « src/compiler/x64/instruction-selector-x64.cc ('k') | src/machine-type.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698