Lines Matching refs:inst
1179 uint32_t inst, upper, lower, sign, j1, j2; in addend_arm_rel() local
1185 inst = get_unaligned_native((uint32_t *)loc); in addend_arm_rel()
1186 return inst + sym->st_value; in addend_arm_rel()
1189 inst = get_unaligned_native((uint32_t *)loc); in addend_arm_rel()
1190 offset = sign_extend32(((inst & 0xf0000) >> 4) | (inst & 0xfff), in addend_arm_rel()
1196 inst = get_unaligned_native((uint32_t *)loc); in addend_arm_rel()
1197 offset = sign_extend32((inst & 0x00ffffff) << 2, 25); in addend_arm_rel()
1263 uint32_t inst; in addend_mips_rel() local
1265 inst = get_unaligned_native(location); in addend_mips_rel()
1268 return inst & 0xffff; in addend_mips_rel()
1270 return (inst & 0x03ffffff) << 2; in addend_mips_rel()
1272 return inst; in addend_mips_rel()