Home
last modified time | relevance | path

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

/art/disassembler/
Ddisassembler_x86.cc291 size_t branch_bytes = 0; in DumpInstruction() local
391 branch_bytes = 1; in DumpInstruction()
833 branch_bytes = 4; in DumpInstruction()
1225 case 0xE3: opcode1 = "jecxz"; branch_bytes = 1; break; in DumpInstruction()
1226 case 0xE8: opcode1 = "call"; branch_bytes = 4; break; in DumpInstruction()
1227 case 0xE9: opcode1 = "jmp"; branch_bytes = 4; break; in DumpInstruction()
1228 case 0xEB: opcode1 = "jmp"; branch_bytes = 1; break; in DumpInstruction()
1342 } else if (branch_bytes > 0) { in DumpInstruction()
1345 if (branch_bytes == 1) { in DumpInstruction()
1349 CHECK_EQ(branch_bytes, 4u); in DumpInstruction()