Lines Matching defs:mnemonic
7196 const char *mnemonic = inst->GetMnemonic(&exe_ctx);
7200 if (mnemonic != nullptr && mnemonic[0] == '\0')
7201 mnemonic = nullptr;
7209 if (mnemonic != nullptr && operands != nullptr && comment != nullptr)
7210 strm.Printf("%-8s %-25s ; %s", mnemonic, operands, comment);
7211 else if (mnemonic != nullptr && operands != nullptr)
7212 strm.Printf("%-8s %s", mnemonic, operands);
7213 else if (mnemonic != nullptr)
7214 strm.Printf("%s", mnemonic);