Lines Matching refs:reg

73     uint64_t reg = 0;  in DecodeDwCfa()  local
103 reg = memory_->ReadUleb128(instPtr); in DecodeDwCfa()
105 LOGU("DW_CFA_offset_extended: reg=%d", (int)reg); in DecodeDwCfa()
106 if (!DfxRegsQut::IsQutReg(static_cast<uint16_t>(reg), qutIdx)) { in DecodeDwCfa()
107 INSTR_STATISTIC(UnsupportedDwCfaOffset, reg, UNW_ERROR_UNSUPPORTED_QUT_REG); in DecodeDwCfa()
114 reg = memory_->ReadUleb128(instPtr); in DecodeDwCfa()
115 LOGU("DW_CFA_restore_extended: reg=%d", (int)reg); in DecodeDwCfa()
116 if (!DfxRegsQut::IsQutReg(static_cast<uint16_t>(reg), qutIdx)) { in DecodeDwCfa()
117 INSTR_STATISTIC(UnsupportedDwCfaRestore, reg, UNW_ERROR_UNSUPPORTED_QUT_REG); in DecodeDwCfa()
123 reg = memory_->ReadUleb128(instPtr); in DecodeDwCfa()
124 LOGU("DW_CFA_undefined: reg=%d", (int)reg); in DecodeDwCfa()
125 if (reg == rsState.returnAddressRegister) { in DecodeDwCfa()
128 if (!DfxRegsQut::IsQutReg(static_cast<uint16_t>(reg), qutIdx)) { in DecodeDwCfa()
129 INSTR_STATISTIC(UnsupportedDwCfaUndefined, reg, UNW_ERROR_UNSUPPORTED_QUT_REG); in DecodeDwCfa()
135 reg = memory_->ReadUleb128(instPtr); in DecodeDwCfa()
136 LOGU("DW_CFA_same_value: reg=%d", (int)reg); in DecodeDwCfa()
137 if (reg == rsState.returnAddressRegister) { in DecodeDwCfa()
140 if (!DfxRegsQut::IsQutReg(static_cast<uint16_t>(reg), qutIdx)) { in DecodeDwCfa()
141 INSTR_STATISTIC(UnsupportedDwCfaSame, reg, UNW_ERROR_UNSUPPORTED_QUT_REG); in DecodeDwCfa()
147 reg = memory_->ReadUleb128(instPtr); in DecodeDwCfa()
149 LOGU("DW_CFA_register: reg=%d, reg2=%d", (int)reg, (int)reg2); in DecodeDwCfa()
151 !DfxRegsQut::IsQutReg(static_cast<uint16_t>(reg), qutIdx)) { in DecodeDwCfa()
152 INSTR_STATISTIC(UnsupportedDwCfaRegister, reg, UNW_ERROR_UNSUPPORTED_QUT_REG); in DecodeDwCfa()
172 reg = memory_->ReadUleb128(instPtr); in DecodeDwCfa()
174 rsState.cfaReg = (uint32_t)reg; in DecodeDwCfa()
176 LOGU("DW_CFA_def_cfa: reg=%d, offset=%" PRIu64 "", (int)reg, offset); in DecodeDwCfa()
179 reg = memory_->ReadUleb128(instPtr); in DecodeDwCfa()
180 rsState.cfaReg = (uint32_t)reg; in DecodeDwCfa()
181 LOGU("DW_CFA_def_cfa_register: reg=%d", (int)reg); in DecodeDwCfa()
188 reg = memory_->ReadUleb128(instPtr); in DecodeDwCfa()
190 if (!DfxRegsQut::IsQutReg(static_cast<uint16_t>(reg), qutIdx)) { in DecodeDwCfa()
191 INSTR_STATISTIC(UnsupportedDwCfaOffset, reg, UNW_ERROR_UNSUPPORTED_QUT_REG); in DecodeDwCfa()
198 reg = memory_->ReadUleb128(instPtr); in DecodeDwCfa()
201 rsState.cfaReg = (uint32_t)reg; in DecodeDwCfa()
210 reg = memory_->ReadUleb128(instPtr); in DecodeDwCfa()
212 LOGU("DW_CFA_val_offset: reg=%d, offset=%" PRIu64 "", (int)reg, offset); in DecodeDwCfa()
213 if (!DfxRegsQut::IsQutReg(static_cast<uint16_t>(reg), qutIdx)) { in DecodeDwCfa()
214 INSTR_STATISTIC(UnsupportedDwCfaValOffset, reg, UNW_ERROR_UNSUPPORTED_QUT_REG); in DecodeDwCfa()
221 reg = memory_->ReadUleb128(instPtr); in DecodeDwCfa()
223 LOGU("DW_CFA_val_offset_sf: reg=%d, offset=%" PRIu64 "", (int)reg, offset); in DecodeDwCfa()
224 if (!DfxRegsQut::IsQutReg(static_cast<uint16_t>(reg), qutIdx)) { in DecodeDwCfa()
225 INSTR_STATISTIC(UnsupportedDwCfaValOffset, reg, UNW_ERROR_UNSUPPORTED_QUT_REG); in DecodeDwCfa()
237 reg = memory_->ReadUleb128(instPtr); in DecodeDwCfa()
238 if (!DfxRegsQut::IsQutReg(static_cast<uint16_t>(reg), qutIdx)) { in DecodeDwCfa()
239 INSTR_STATISTIC(UnsupportedDwCfaExpr, reg, UNW_ERROR_UNSUPPORTED_QUT_REG); in DecodeDwCfa()
247 reg = memory_->ReadUleb128(instPtr); in DecodeDwCfa()
248 if (!DfxRegsQut::IsQutReg(static_cast<uint16_t>(reg), qutIdx)) { in DecodeDwCfa()
249 INSTR_STATISTIC(UnsupportedDwCfaValExpr, reg, UNW_ERROR_UNSUPPORTED_QUT_REG); in DecodeDwCfa()
262 reg = memory_->ReadUleb128(instPtr); in DecodeDwCfa()
264 … LOGU("DW_CFA_GNU_negative_offset_extended: reg=%d, offset=%" PRIu64 "", (int)reg, offset); in DecodeDwCfa()
265 if (!DfxRegsQut::IsQutReg(static_cast<uint16_t>(reg), qutIdx)) { in DecodeDwCfa()
266 INSTR_STATISTIC(UnsupportedDwCfaOffset, reg, UNW_ERROR_UNSUPPORTED_QUT_REG); in DecodeDwCfa()
282 reg = operand; in DecodeDwCfa()
284 LOGU("DW_CFA_offset: reg=%d, offset=%" PRId64 "", (int)reg, offset); in DecodeDwCfa()
285 if (!DfxRegsQut::IsQutReg(static_cast<uint16_t>(reg), qutIdx)) { in DecodeDwCfa()
286 INSTR_STATISTIC(UnsupportedDwCfaOffset, reg, UNW_ERROR_UNSUPPORTED_QUT_REG); in DecodeDwCfa()
293 reg = operand; in DecodeDwCfa()
294 LOGU("DW_CFA_restore: reg=%d", (int)reg); in DecodeDwCfa()
295 if (!DfxRegsQut::IsQutReg(static_cast<uint16_t>(reg), qutIdx)) { in DecodeDwCfa()
296 … INSTR_STATISTIC(UnsupportedDwCfaRestore, reg, UNW_ERROR_UNSUPPORTED_QUT_REG); in DecodeDwCfa()