Lines Matching refs:exprPtr
86 void OpDerefSize(AddressType& exprPtr)
91 memory_->ReadU8(exprPtr, &operand, true);
146 inline void OpPick(AddressType& exprPtr)
149 memory_->ReadU8(exprPtr, ®, true);
250 inline void OpPlusULEBConst(AddressType& exprPtr)
252 stack_[0] += memory_->ReadUleb128(exprPtr);
280 inline void OpSkip(AddressType& exprPtr)
283 memory_->ReadS16(exprPtr, &offset, true);
284 exprPtr = static_cast<AddressType>(exprPtr + offset);
288 inline void OpBra(AddressType& exprPtr)
292 memory_->ReadS16(exprPtr, &offset, true);
294 exprPtr = exprPtr + offset;
353 inline void OpRegx(AddressType& exprPtr, DfxRegs& regs)
355 auto reg = static_cast<uint32_t>(memory_->ReadUleb128(exprPtr));
364 inline void OpBReg(uint8_t opcode, AddressType& exprPtr, DfxRegs& regs)
372 auto value = static_cast<SignedType>(memory_->ReadSleb128(exprPtr));
377 inline void OpBRegx(AddressType& exprPtr, DfxRegs& regs)
379 auto reg = static_cast<uint32_t>(memory_->ReadUleb128(exprPtr));
385 auto value = static_cast<SignedType>(memory_->ReadSleb128(exprPtr));