• Home
  • Raw
  • Download

Lines Matching full:off

147   unw_word_t addr = c->sigcontext_addr, fpstate_addr, off;  in x86_get_scratch_loc()  local
168 case UNW_X86_GS: off = LINUX_SC_GS_OFF; break; in x86_get_scratch_loc()
169 case UNW_X86_FS: off = LINUX_SC_FS_OFF; break; in x86_get_scratch_loc()
170 case UNW_X86_ES: off = LINUX_SC_ES_OFF; break; in x86_get_scratch_loc()
171 case UNW_X86_DS: off = LINUX_SC_DS_OFF; break; in x86_get_scratch_loc()
172 case UNW_X86_EDI: off = LINUX_SC_EDI_OFF; break; in x86_get_scratch_loc()
173 case UNW_X86_ESI: off = LINUX_SC_ESI_OFF; break; in x86_get_scratch_loc()
174 case UNW_X86_EBP: off = LINUX_SC_EBP_OFF; break; in x86_get_scratch_loc()
175 case UNW_X86_ESP: off = LINUX_SC_ESP_OFF; break; in x86_get_scratch_loc()
176 case UNW_X86_EBX: off = LINUX_SC_EBX_OFF; break; in x86_get_scratch_loc()
177 case UNW_X86_EDX: off = LINUX_SC_EDX_OFF; break; in x86_get_scratch_loc()
178 case UNW_X86_ECX: off = LINUX_SC_ECX_OFF; break; in x86_get_scratch_loc()
179 case UNW_X86_EAX: off = LINUX_SC_EAX_OFF; break; in x86_get_scratch_loc()
180 case UNW_X86_TRAPNO: off = LINUX_SC_TRAPNO_OFF; break; in x86_get_scratch_loc()
181 case UNW_X86_EIP: off = LINUX_SC_EIP_OFF; break; in x86_get_scratch_loc()
182 case UNW_X86_CS: off = LINUX_SC_CS_OFF; break; in x86_get_scratch_loc()
183 case UNW_X86_EFLAGS: off = LINUX_SC_EFLAGS_OFF; break; in x86_get_scratch_loc()
184 case UNW_X86_SS: off = LINUX_SC_SS_OFF; break; in x86_get_scratch_loc()
190 case UNW_X86_FCW: is_fpstate = 1; off = LINUX_FPSTATE_CW_OFF; break; in x86_get_scratch_loc()
191 case UNW_X86_FSW: is_fpstate = 1; off = LINUX_FPSTATE_SW_OFF; break; in x86_get_scratch_loc()
192 case UNW_X86_FTW: is_fpstate = 1; off = LINUX_FPSTATE_TAG_OFF; break; in x86_get_scratch_loc()
193 case UNW_X86_FCS: is_fpstate = 1; off = LINUX_FPSTATE_CSSEL_OFF; break; in x86_get_scratch_loc()
194 case UNW_X86_FIP: is_fpstate = 1; off = LINUX_FPSTATE_IPOFF_OFF; break; in x86_get_scratch_loc()
195 case UNW_X86_FEA: is_fpstate = 1; off = LINUX_FPSTATE_DATAOFF_OFF; break; in x86_get_scratch_loc()
196 case UNW_X86_FDS: is_fpstate = 1; off = LINUX_FPSTATE_DATASEL_OFF; break; in x86_get_scratch_loc()
197 case UNW_X86_MXCSR: is_fpstate = 1; off = LINUX_FPSTATE_MXCSR_OFF; break; in x86_get_scratch_loc()
203 off = LINUX_FPSTATE_ST0_OFF + 10*(reg - UNW_X86_ST0); in x86_get_scratch_loc()
216 off = LINUX_FPSTATE_XMM0_OFF + 8*(reg - UNW_X86_XMM0_lo); in x86_get_scratch_loc()
227 off = LINUX_FPSTATE_XMM0_OFF + 16*(reg - UNW_X86_XMM0); in x86_get_scratch_loc()
248 return DWARF_MEM_LOC (c, fpstate_addr + off); in x86_get_scratch_loc()
251 return DWARF_MEM_LOC (c, addr + off); in x86_get_scratch_loc()