Lines Matching refs:ins
2013 // Transform "ins[bwl] %dx, %es:(%edi)" into "ins[bwl]"
2014 if (Name.startswith("ins") && Operands.size() == 3 &&
2059 const char *ins;
2063 ins = "lodsb";
2065 ins = "lodsw";
2067 ins = "lodsl";
2069 ins = "lodsq";
2071 ins = NULL;
2072 if (ins != NULL) {
2077 if (Name != ins)
2078 static_cast<X86Operand*>(Operands[0])->setTokenValue(ins);
2089 const char *ins;
2093 ins = "stosb";
2095 ins = "stosw";
2097 ins = "stosl";
2099 ins = "stosq";
2101 ins = NULL;
2102 if (ins != NULL) {
2107 if (Name != ins)
2108 static_cast<X86Operand*>(Operands[0])->setTokenValue(ins);