Home
last modified time | relevance | path

Searched refs:df_n (Results 1 – 3 of 3) sorted by relevance

/art/disassembler/
Ddisassembler_mips.cc679 int32_t df_n = (instruction >> 16) & 0x3f; in Dump() local
680 if ((df_n & (0x3 << 4)) == 0) { in Dump()
682 args << 'w' << rd << '[' << (df_n & 0xf) << ']'; in Dump()
685 if ((df_n & (0x3 << 3)) == 0) { in Dump()
687 args << 'w' << rd << '[' << (df_n & 0x7) << ']'; in Dump()
690 if ((df_n & (0x3 << 2)) == 0) { in Dump()
692 args << 'w' << rd << '[' << (df_n & 0x3) << ']'; in Dump()
695 if ((df_n & (0x3 << 1)) == 0) { in Dump()
697 args << 'w' << rd << '[' << (df_n & 0x1) << ']'; in Dump()
/art/compiler/utils/mips64/
Dassembler_mips64.cc223 int df_n, in EmitMsaELM() argument
231 df_n << kDfNShift | in EmitMsaELM()
Dassembler_mips64.h1462 void EmitMsaELM(int operation, int df_n, VectorRegister ws, VectorRegister wd, int minor_opcode);