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

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

Issue 2799923002: MIPS[64]: Implement fill.df, copy_u.df, copy_s.df instructions in simulator (Closed)
Patch Set: Rebase Created 3 years, 7 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/mips64/constants-mips64.h ('k') | src/mips64/simulator-mips64.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mips64/disasm-mips64.cc
diff --git a/src/mips64/disasm-mips64.cc b/src/mips64/disasm-mips64.cc
index d1e5345ebdff50dbc2cb21a60cccfbd720a627c8..debdf63215e7bb3395c85c14248659730f60612a 100644
--- a/src/mips64/disasm-mips64.cc
+++ b/src/mips64/disasm-mips64.cc
@@ -60,17 +60,6 @@ class Decoder {
int InstructionDecode(byte* instruction);
private:
- const uint32_t kMsaI8Mask = ((3U << 24) | ((1 << 6) - 1));
- const uint32_t kMsaI5Mask = ((7U << 23) | ((1 << 6) - 1));
- const uint32_t kMsaMI10Mask = (15U << 2);
- const uint32_t kMsaBITMask = ((7U << 23) | ((1 << 6) - 1));
- const uint32_t kMsaELMMask = (15U << 22);
- const uint32_t kMsa3RMask = ((7U << 23) | ((1 << 6) - 1));
- const uint32_t kMsa3RFMask = ((15U << 22) | ((1 << 6) - 1));
- const uint32_t kMsaVECMask = (23U << 21);
- const uint32_t kMsa2RMask = (7U << 18);
- const uint32_t kMsa2RFMask = (15U << 17);
-
// Bottleneck functions to print into the out_buffer.
void PrintChar(const char ch);
void Print(const char* str);
« no previous file with comments | « src/mips64/constants-mips64.h ('k') | src/mips64/simulator-mips64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698