Lines Matching refs:uintptr_t
59 uint8_t *Alloca(uintptr_t size, bool isReq, size_t alignSize);
76 uint8_t *AllocaInReqSecBuffer(uintptr_t size, size_t alignSize = 0);
78 uint8_t *AllocaInNotReqSecBuffer(uintptr_t size, size_t alignSize = 0);
80 uint8_t *AllocaCodeSection(uintptr_t size, const char *sectionName);
82 uint8_t *AllocaDataSection(uintptr_t size, const char *sectionName);
90 std::vector<std::pair<uint8_t *, uintptr_t>> GetCodeInfo() const;
105 …std::vector<std::pair<uint8_t *, uintptr_t>> codeInfo_ {}; // info for disasssembler, planed to be…
133 void Disassemble(const std::map<uintptr_t, std::string> &addr2name, uint64_t textOffset,
135 static void Disassemble(const std::map<uintptr_t, std::string> *addr2name,
140 uintptr_t GetSectionAddr(ElfSecName sec) const in GetSectionAddr()
142 return reinterpret_cast<uintptr_t>(codeInfo_.GetSectionAddr(sec)); in GetSectionAddr()
190 … static void PrintInstAndStep(uint64_t &pc, uint8_t **byteSp, uintptr_t &numBytes, size_t instSize,