Lines Matching refs:cfa

144 	struct cfa {  struct
146 } cfa; member
154 static const struct cfa badCFA = { ARRAY_SIZE(reg_info), 1 };
810 memcpy(&state->cfa, &badCFA, in processCFI()
811 sizeof(state->cfa)); in processCFI()
824 state->cfa.reg = get_uleb128(&ptr.p8, end); in processCFI()
825 unw_debug("cfa_def_cfa: r%lu ", state->cfa.reg); in processCFI()
828 state->cfa.offs = get_uleb128(&ptr.p8, end); in processCFI()
830 state->cfa.offs); in processCFI()
833 state->cfa.reg = get_uleb128(&ptr.p8, end); in processCFI()
836 state->cfa.offs = get_sleb128(&ptr.p8, end) in processCFI()
841 state->cfa.reg = get_uleb128(&ptr.p8, end); in processCFI()
901 unsigned long startLoc = 0, endLoc = 0, cfa; in arc_unwind() local
1132 memcpy(&state.cfa, &badCFA, sizeof(state.cfa)); in arc_unwind()
1144 || state.cfa.reg >= ARRAY_SIZE(reg_info) in arc_unwind()
1145 || reg_info[state.cfa.reg].width != sizeof(unsigned long) in arc_unwind()
1146 || state.cfa.offs % sizeof(unsigned long)) in arc_unwind()
1180 cfa = FRAME_REG(state.cfa.reg, unsigned long) + state.cfa.offs; in arc_unwind()
1181 startLoc = min_t(unsigned long, UNW_SP(frame), cfa); in arc_unwind()
1182 endLoc = max_t(unsigned long, UNW_SP(frame), cfa); in arc_unwind()
1184 startLoc = min(STACK_LIMIT(cfa), cfa); in arc_unwind()
1185 endLoc = max(STACK_LIMIT(cfa), cfa); in arc_unwind()
1189 state.cfa.reg, state.cfa.offs, cfa); in arc_unwind()
1244 UNW_SP(frame) = cfa; in arc_unwind()
1269 FRAME_REG(i, unsigned long) = cfa + state.regs[i].value in arc_unwind()
1273 addr = cfa + state.regs[i].value * state.dataAlign; in arc_unwind()