Searched defs:mn (Results 1 - 7 of 7) sorted by relevance

/dalvik/vm/compiler/codegen/x86/libenc/
H A Denc_base.h69 * @param mn - \link Mnemonic mnemonic \endlink of the instruction
73 static char * encode(char * stream, Mnemonic mn, const Operands& opnds);
113 static const MnemonicDesc * getMnemonicDesc(Mnemonic mn) argument
115 assert(mn < Mnemonic_Count);
116 return mnemonics + mn;
132 static const char * getMnemonicString(Mnemonic mn)
134 return getMnemonicDesc(mn)->name;
137 static const char * toStr(Mnemonic mn)
139 return getMnemonicDesc(mn)->name;
264 Mnemonic mn;
[all...]
H A Ddec_base.h45 mn = Mnemonic_Null;
60 Mnemonic mn; member in struct:Inst
108 inline bool is_jcc(Mnemonic mn) argument
110 return Mnemonic_JO <= mn && mn<=Mnemonic_JG;
130 static bool try_mn(Mnemonic mn, const unsigned char ** pbuf, Inst * pinst);
H A Denc_base.cpp293 char * EncoderBase::encode(char * stream, Mnemonic mn, const Operands& opnds) argument
310 const OpcodeDesc * odesc = lookup(mn, opnds);
385 assert(inst.mn == mn);
387 if (mn == Mnemonic_CALL || mn == Mnemonic_JMP ||
388 Mnemonic_RET == mn ||
389 (Mnemonic_JO<=mn && mn<=Mnemonic_JG)) {
402 if (mn
[all...]
H A Ddec_base.cpp163 for (unsigned mn=1; mn<Mnemonic_Count; mn++) {
165 found=try_mn((Mnemonic)mn, &bytes, &tmp);
167 tmp.mn = (Mnemonic)mn;
369 bool DecoderBase::try_mn(Mnemonic mn, const unsigned char ** pbuf, Inst * pinst) { argument
371 EncoderBase::OpcodeDesc * opcodes = EncoderBase::opcodes[mn];
H A Denc_prvt.h353 Mnemonic mn; member in struct:MnemonicInfo
/dalvik/vm/analysis/
H A DVerifySubs.cpp34 const char* mn = "trimApplications"; local
37 dvmCompareNameDescriptorAndMethod(mn, sg, meth) == 0);
H A DRegisterMap.cpp476 const char* mn = "readResponse"; local
478 strcmp(vdata->method->name, mn) == 0)

Completed in 471 milliseconds