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()
993 branch_bytes = 4; in DumpInstruction()
1446 case 0xE3: opcode1 = "jecxz"; branch_bytes = 1; break; in DumpInstruction()
1447 case 0xE8: opcode1 = "call"; branch_bytes = 4; break; in DumpInstruction()
1448 case 0xE9: opcode1 = "jmp"; branch_bytes = 4; break; in DumpInstruction()
1449 case 0xEB: opcode1 = "jmp"; branch_bytes = 1; break; in DumpInstruction()
1563 } else if (branch_bytes > 0) { in DumpInstruction()
1566 if (branch_bytes == 1) { in DumpInstruction()
1570 CHECK_EQ(branch_bytes, 4u); in DumpInstruction()