Lines Matching defs:reg
148 uint8_t reg;
149 memory_->ReadU8(exprPtr, ®, true);
150 if (reg > StackSize()) {
153 AddressType value = StackAt(reg);
343 auto reg = static_cast<UnsignedType>(opcode - DW_OP_reg0);
345 if (!DfxRegsQut::IsQutReg(static_cast<uint16_t>(reg), qutIdx)) {
346 INSTR_STATISTIC(UnsupportedDwarfOp_Reg, reg, UNW_ERROR_UNSUPPORTED_QUT_REG);
349 stack_.push_front(regs[reg]);
355 auto reg = static_cast<uint32_t>(memory_->ReadUleb128(exprPtr));
357 if (!DfxRegsQut::IsQutReg(static_cast<uint16_t>(reg), qutIdx)) {
358 INSTR_STATISTIC(UnsupportedDwarfOp_Regx, reg, UNW_ERROR_UNSUPPORTED_QUT_REG);
361 stack_.push_front(regs[reg]);
366 auto reg = static_cast<uint32_t>(opcode - DW_OP_breg0);
368 if (!DfxRegsQut::IsQutReg(static_cast<uint16_t>(reg), qutIdx)) {
369 INSTR_STATISTIC(UnsupportedDwarfOp_Breg, reg, UNW_ERROR_UNSUPPORTED_QUT_REG);
373 value += static_cast<SignedType>(regs[reg]);
379 auto reg = static_cast<uint32_t>(memory_->ReadUleb128(exprPtr));
381 if (!DfxRegsQut::IsQutReg(static_cast<uint16_t>(reg), qutIdx)) {
382 INSTR_STATISTIC(UnsupportedDwarfOp_Bregx, reg, UNW_ERROR_UNSUPPORTED_QUT_REG);
386 value += static_cast<SignedType>(regs[reg]);