Searched refs:mn (Results 1 - 10 of 10) sorted by relevance

/dalvik/vm/compiler/codegen/x86/libenc/
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.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 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_tabl.cpp310 #define BEGIN_MNEMONIC(mn, flags, roles) \
311 { Mnemonic_##mn, flags, roles, #mn,
316 //#define BEGIN_MNEMONIC(mn, affflags, ulags, cond, symm, roles) \
317 // { Mnemonic_##mn, affflags, ulags, cond, symm, roles, #mn,
1742 return one.mn < two.mn;
1750 id1 = ((const MnemonicInfo*) info1)->mn;
1751 id2 = ((const MnemonicInfo*) info2)->mn;
[all...]
H A Denc_wrapper.cpp121 EncoderBase::toStr(decInst.mn));
188 char* stream_next = (char *)EncoderBase::encode(stream, decInst.mn, args);
190 printEncoderInst(decInst.mn, args);
368 char* stream_next = (char *)EncoderBase::encode(stream, decInst.mn, args);
370 printEncoderInst(decInst.mn, args);
537 sz += snprintf(&strbuf[sz], len-sz, "%s ", EncoderBase::toStr(decInst.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)
/dalvik/vm/interp/
H A DInterp.cpp1705 static const char* mn = "shiftTest2";
1710 strcmp(method->name, mn) == 0 &&

Completed in 1528 milliseconds