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

Unified Diff: src/ppc/disasm-ppc.cc

Issue 1460093002: PPC: [turbofan] Implemented the TruncateFloat64ToUint64 TurboFan operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix nit. Created 5 years, 1 month 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/ppc/constants-ppc.h ('k') | src/ppc/macro-assembler-ppc.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ppc/disasm-ppc.cc
diff --git a/src/ppc/disasm-ppc.cc b/src/ppc/disasm-ppc.cc
index 918dd0a31f7afed717efe6c50ad1b4fb0857ba57..e99c5af778004b969904dc7ac960c3f10acfaa40 100644
--- a/src/ppc/disasm-ppc.cc
+++ b/src/ppc/disasm-ppc.cc
@@ -961,6 +961,14 @@ void Decoder::DecodeExt4(Instruction* instr) {
Format(instr, "fctidz 'Dt, 'Db");
break;
}
+ case FCTIDU: {
+ Format(instr, "fctidu 'Dt, 'Db");
+ break;
+ }
+ case FCTIDUZ: {
+ Format(instr, "fctiduz 'Dt, 'Db");
+ break;
+ }
case FCTIW: {
Format(instr, "fctiw'. 'Dt, 'Db");
break;
« no previous file with comments | « src/ppc/constants-ppc.h ('k') | src/ppc/macro-assembler-ppc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698