HomeSort by: relevance | last modified time | path
    Searched defs:vex3 (Results 1 - 1 of 1) sorted by relevancy

  /src/external/gpl3/gdb/dist/gdb/
amd64-tdep.c 1412 /* Escape 0x0f. All VEX3 instructions in this map need ModR/M,
1419 /* Escape 0x0f 0x38 or 0x0f 0x3a. All VEX3 instructions in
3752 /* Recode a vex2 instruction into a vex3 instruction. */
3755 vex2_to_vex3 (gdb::byte_vector &vex2, gdb::byte_vector &vex3)
3766 vex3.resize (3);
3767 vex3[0] = 0xc4;
3768 vex3[1] = (r << 7) | (x << 6) | (b << 5) | m;
3769 vex3[2] = (vex2[1] & ~0x80) | (w << 7);
3772 std::back_inserter (vex3));
3775 /* Test vex2 to vex3. *
3773 gdb::byte_vector vex3; local
3828 gdb::byte_vector vex2, vex3; local
    [all...]

Completed in 19 milliseconds