Home
last modified time | relevance | path

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

/art/disassembler/
Ddisassembler_mips.cc742 int32_t df_n = (instruction >> 16) & 0x3f; in Dump() local
743 if ((df_n & (0x3 << 4)) == 0) { in Dump()
745 args << 'w' << rd << '[' << (df_n & 0xf) << ']'; in Dump()
748 if ((df_n & (0x3 << 3)) == 0) { in Dump()
750 args << 'w' << rd << '[' << (df_n & 0x7) << ']'; in Dump()
753 if ((df_n & (0x3 << 2)) == 0) { in Dump()
755 args << 'w' << rd << '[' << (df_n & 0x3) << ']'; in Dump()
758 if ((df_n & (0x3 << 1)) == 0) { in Dump()
760 args << 'w' << rd << '[' << (df_n & 0x1) << ']'; in Dump()
780 int32_t df_n = (instruction >> 16) & 0x3f; in Dump() local
[all …]
/art/compiler/utils/mips64/
Dassembler_mips64.cc223 int df_n, in EmitMsaELM() argument
231 df_n << kDfNShift | in EmitMsaELM()
Dassembler_mips64.h1666 void EmitMsaELM(int operation, int df_n, VectorRegister ws, VectorRegister wd, int minor_opcode);
/art/compiler/utils/mips/
Dassembler_mips.h1700 int df_n,