Lines Matching defs:regs
43 AddressType Eval(DfxRegs& regs, AddressType initStackValue, AddressType startPtr);
46 bool Decode(DfxRegs& regs, uintptr_t& addr);
341 inline void OpReg(uint8_t opcode, DfxRegs& regs)
349 stack_.push_front(regs[reg]);
353 inline void OpRegx(AddressType& exprPtr, DfxRegs& regs)
361 stack_.push_front(regs[reg]);
364 inline void OpBReg(uint8_t opcode, AddressType& exprPtr, DfxRegs& regs)
373 value += static_cast<SignedType>(regs[reg]);
377 inline void OpBRegx(AddressType& exprPtr, DfxRegs& regs)
386 value += static_cast<SignedType>(regs[reg]);