Home
last modified time | relevance | path

Searched refs:branch_bytes (Results 1 – 1 of 1) sorted by relevance

/art/disassembler/
Ddisassembler_x86.cc323 size_t branch_bytes = 0; in DumpInstruction() local
423 branch_bytes = 1; in DumpInstruction()
988 branch_bytes = 4; in DumpInstruction()
1425 case 0xE3: opcode1 = "jecxz"; branch_bytes = 1; break; in DumpInstruction()
1426 case 0xE8: opcode1 = "call"; branch_bytes = 4; break; in DumpInstruction()
1427 case 0xE9: opcode1 = "jmp"; branch_bytes = 4; break; in DumpInstruction()
1428 case 0xEB: opcode1 = "jmp"; branch_bytes = 1; break; in DumpInstruction()
1542 } else if (branch_bytes > 0) { in DumpInstruction()
1545 if (branch_bytes == 1) { in DumpInstruction()
1549 CHECK_EQ(branch_bytes, 4u); in DumpInstruction()