Lines Matching refs:cfa
145 struct cfa { struct
147 } cfa; member
155 static const struct cfa badCFA = { ARRAY_SIZE(reg_info), 1 };
795 memcpy(&state->cfa, &badCFA, in processCFI()
796 sizeof(state->cfa)); in processCFI()
809 state->cfa.reg = get_uleb128(&ptr.p8, end); in processCFI()
810 unw_debug("cfa_def_cfa: r%lu ", state->cfa.reg); in processCFI()
813 state->cfa.offs = get_uleb128(&ptr.p8, end); in processCFI()
815 state->cfa.offs); in processCFI()
818 state->cfa.reg = get_uleb128(&ptr.p8, end); in processCFI()
821 state->cfa.offs = get_sleb128(&ptr.p8, end) in processCFI()
826 state->cfa.reg = get_uleb128(&ptr.p8, end); in processCFI()
886 unsigned long startLoc = 0, endLoc = 0, cfa; in arc_unwind() local
1148 memcpy(&state.cfa, &badCFA, sizeof(state.cfa)); in arc_unwind()
1160 || state.cfa.reg >= ARRAY_SIZE(reg_info) in arc_unwind()
1161 || reg_info[state.cfa.reg].width != sizeof(unsigned long) in arc_unwind()
1162 || state.cfa.offs % sizeof(unsigned long)) in arc_unwind()
1198 cfa = FRAME_REG(state.cfa.reg, unsigned long) + state.cfa.offs; in arc_unwind()
1199 startLoc = min_t(unsigned long, UNW_SP(frame), cfa); in arc_unwind()
1200 endLoc = max_t(unsigned long, UNW_SP(frame), cfa); in arc_unwind()
1202 startLoc = min(STACK_LIMIT(cfa), cfa); in arc_unwind()
1203 endLoc = max(STACK_LIMIT(cfa), cfa); in arc_unwind()
1207 state.cfa.reg, state.cfa.offs, cfa); in arc_unwind()
1262 UNW_SP(frame) = cfa; in arc_unwind()
1287 FRAME_REG(i, unsigned long) = cfa + state.regs[i].value in arc_unwind()
1291 addr = cfa + state.regs[i].value * state.dataAlign; in arc_unwind()