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

Unified Diff: src/machine-type.cc

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/machine-type.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/machine-type.cc
diff --git a/src/machine-type.cc b/src/machine-type.cc
index 7c4ddd3967f88cdc9bc6ee2488bca743318f6383..9289673bd7a0c1ae446937bfd3a307f78ff0990a 100644
--- a/src/machine-type.cc
+++ b/src/machine-type.cc
@@ -32,6 +32,10 @@ const char* MachineReprToString(MachineRepresentation rep) {
return "kRepFloat64";
case MachineRepresentation::kSimd128:
return "kRepSimd128";
+ case MachineRepresentation::kTaggedSigned:
+ return "kRepTaggedSigned";
+ case MachineRepresentation::kTaggedPointer:
+ return "kRepTaggedPointer";
case MachineRepresentation::kTagged:
return "kRepTagged";
}
« no previous file with comments | « src/machine-type.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698