Lines Matching refs:Inst_t
140 typedef int32_t Inst_t; in relocateARM() typedef
141 Inst_t *inst = (Inst_t *)&(*text)[rel->getOffset()]; in relocateARM()
142 Inst_t P = (Inst_t)(int64_t)inst; in relocateARM()
143 Inst_t A = 0; in relocateARM()
144 Inst_t S = (Inst_t)(int64_t)sym->getAddress(); in relocateARM()
162 A = (Inst_t)(int64_t)SIGN_EXTEND(*inst & 0xFFFFFF, 24); in relocateARM()
183 S = (Inst_t)(uintptr_t)ext_func; in relocateARM()
227 S = (Inst_t)(uintptr_t)ext_sym; in relocateARM()
269 typedef int32_t Inst_t; in relocateX86_64() typedef
270 Inst_t *inst = (Inst_t *)&(*text)[rel->getOffset()]; in relocateX86_64()
271 Inst_t P = (Inst_t)(int64_t)inst; in relocateX86_64()
272 Inst_t A = (Inst_t)(int64_t)rel->getAddend(); in relocateX86_64()
273 Inst_t S = (Inst_t)(int64_t)sym->getAddress(); in relocateX86_64()
276 S = (Inst_t)(int64_t)find_sym(context, sym->getName()); in relocateX86_64()
320 typedef int32_t Inst_t; in relocateX86_32() typedef
321 Inst_t *inst = (Inst_t *)&(*text)[rel->getOffset()]; in relocateX86_32()
322 Inst_t P = (Inst_t)(uintptr_t)inst; in relocateX86_32()
323 Inst_t A = (Inst_t)(uintptr_t)*inst; in relocateX86_32()
324 Inst_t S = (Inst_t)(uintptr_t)sym->getAddress(); in relocateX86_32()
327 S = (Inst_t)(uintptr_t)find_sym(context, sym->getName()); in relocateX86_32()