Home | History | Annotate | Download | only in cctest

Lines Matching defs:target

131 #define COMPARE_PC_JUMP(asm_, compare_string, target)                          \
136 int instr_index = (target >> 2) & kImm26Mask; \
139 compare_string, reinterpret_cast<byte *>(target), \
493 int32_t target = pc_region | 0x4;
494 COMPARE_PC_JUMP(j(target), "08000001 j ", target);
495 target = pc_region | 0xffffffc;
496 COMPARE_PC_JUMP(j(target), "0bffffff j ", target);
498 target = pc_region | 0x4;
499 COMPARE_PC_JUMP(jal(target), "0c000001 jal ", target);
500 target = pc_region | 0xffffffc;
501 COMPARE_PC_JUMP(jal(target), "0fffffff jal ", target);