Lines Matching refs:cfa

147 	struct cfa {  struct
149 } cfa; member
157 static const struct cfa badCFA = { ARRAY_SIZE(reg_info), 1 };
818 memcpy(&state->cfa, &badCFA, in processCFI()
819 sizeof(state->cfa)); in processCFI()
832 state->cfa.reg = get_uleb128(&ptr.p8, end); in processCFI()
833 unw_debug("cfa_def_cfa: r%lu ", state->cfa.reg); in processCFI()
836 state->cfa.offs = get_uleb128(&ptr.p8, end); in processCFI()
838 state->cfa.offs); in processCFI()
841 state->cfa.reg = get_uleb128(&ptr.p8, end); in processCFI()
844 state->cfa.offs = get_sleb128(&ptr.p8, end) in processCFI()
849 state->cfa.reg = get_uleb128(&ptr.p8, end); in processCFI()
909 unsigned long startLoc = 0, endLoc = 0, cfa; in arc_unwind() local
1140 memcpy(&state.cfa, &badCFA, sizeof(state.cfa)); in arc_unwind()
1152 || state.cfa.reg >= ARRAY_SIZE(reg_info) in arc_unwind()
1153 || reg_info[state.cfa.reg].width != sizeof(unsigned long) in arc_unwind()
1154 || state.cfa.offs % sizeof(unsigned long)) in arc_unwind()
1190 cfa = FRAME_REG(state.cfa.reg, unsigned long) + state.cfa.offs; in arc_unwind()
1191 startLoc = min_t(unsigned long, UNW_SP(frame), cfa); in arc_unwind()
1192 endLoc = max_t(unsigned long, UNW_SP(frame), cfa); in arc_unwind()
1194 startLoc = min(STACK_LIMIT(cfa), cfa); in arc_unwind()
1195 endLoc = max(STACK_LIMIT(cfa), cfa); in arc_unwind()
1199 state.cfa.reg, state.cfa.offs, cfa); in arc_unwind()
1254 UNW_SP(frame) = cfa; in arc_unwind()
1279 FRAME_REG(i, unsigned long) = cfa + state.regs[i].value in arc_unwind()
1283 addr = cfa + state.regs[i].value * state.dataAlign; in arc_unwind()