Searched defs:mod (Results 1 - 6 of 6) sorted by relevance

/art/compiler/utils/x86/
H A Dassembler_x86.h50 uint8_t mod() const { function in class:art::x86::Operand
/art/runtime/arch/x86/
H A Dfault_handler_x86.cc213 uint8_t mod = (modrm >> 6) & 3U /* 0b11 */; local
216 if (mod != 3U /* 0b11 */ && (modrm & 7U /* 0b111 */) == 4) {
220 switch (mod) {
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.h59 uint8_t mod() const { function in class:art::x86_64::Operand
/art/disassembler/
H A Ddisassembler_x86.cc160 std::string DisassemblerX86::DumpAddress(uint8_t mod, uint8_t rm, uint8_t rex64, uint8_t rex_w, argument
166 if (mod == 0 && rm == 5) {
174 } else if (rm == 4 && mod != 3) { // SIB
189 if (base != 5 || mod != 0) {
205 if (mod == 0) {
216 } else if (mod == 1) {
219 } else if (mod == 2) {
225 if (mod == 3) {
233 if (mod == 1) {
236 } else if (mod
1277 uint8_t mod = modrm >> 6; local
[all...]
/art/runtime/jdwp/
H A Djdwp_handler.cc1199 JdwpEventMod& mod = pEvent->mods[i]; local
1200 mod.modKind = request->ReadModKind();
1201 switch (mod.modKind) {
1209 mod.count.count = count;
1216 mod.conditional.exprId = exprId;
1223 mod.threadOnly.threadId = thread_id;
1230 mod.classOnly.refTypeId = class_id;
1239 mod.classMatch.classPattern = strdup(pattern.c_str());
1248 mod.classExclude.classPattern = strdup(pattern.c_str());
1255 mod
[all...]
/art/compiler/dex/quick/x86/
H A Dassemble_x86.cc1471 // For register to register encoding, the mod is 3.
1472 const uint8_t mod = (3 << 6); local
1477 const uint8_t modrm = mod | (low_reg1 << 3) | low_reg2;

Completed in 225 milliseconds