Home
last modified time | relevance | path

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

/art/disassembler/
Ddisassembler_x86.cc335 size_t branch_bytes = 0; in DumpInstruction() local
438 branch_bytes = 1; in DumpInstruction()
1008 branch_bytes = 4; in DumpInstruction()
1462 case 0xE3: opcode1 = "jecxz"; branch_bytes = 1; break; in DumpInstruction()
1463 case 0xE8: opcode1 = "call"; branch_bytes = 4; break; in DumpInstruction()
1464 case 0xE9: opcode1 = "jmp"; branch_bytes = 4; break; in DumpInstruction()
1465 case 0xEB: opcode1 = "jmp"; branch_bytes = 1; break; in DumpInstruction()
1580 } else if (branch_bytes > 0) { in DumpInstruction()
1583 if (branch_bytes == 1) { in DumpInstruction()
1587 CHECK_EQ(branch_bytes, 4u); in DumpInstruction()