Home | History | Annotate | Download | only in assembler

Lines Matching defs:relative

1706         intptr_t relative = reinterpret_cast<intptr_t>(target) - (reinterpret_cast<intptr_t>(instruction));
1707 if (((relative << 7) >> 7) == relative) {
1709 if (relative >= 0)
1710 relative ^= 0xC00000;
1713 ASSERT(!(relative & 1));
1722 instruction[-2] = OP_B_T4a | ((relative & 0x1000000) >> 14) | ((relative & 0x3ff000) >> 12);
1723 instruction[-1] = OP_B_T4b | ((relative & 0x800000) >> 10) | ((relative & 0x400000) >> 11) | ((relative & 0xffe) >> 1);