Searched refs:RegsImpl (Results 1 – 18 of 18) sorted by relevance
/system/core/libunwindstack/ |
D | RegsInfo.h | 30 RegsInfo(RegsImpl<AddressType>* regs) : regs(regs) {} in RegsInfo() 32 RegsImpl<AddressType>* regs = nullptr;
|
D | DwarfOp.h | 38 class RegsImpl; variable
|
D | RegsArm64.cpp | 33 : RegsImpl<uint64_t>(ARM64_REG_LAST, Location(LOCATION_REGISTER, ARM64_REG_LR)) {} in RegsArm64()
|
D | RegsArm.cpp | 32 RegsArm::RegsArm() : RegsImpl<uint32_t>(ARM_REG_LAST, Location(LOCATION_REGISTER, ARM_REG_LR)) {} in RegsArm()
|
D | RegsMips64.cpp | 33 : RegsImpl<uint64_t>(MIPS64_REG_LAST, Location(LOCATION_REGISTER, MIPS64_REG_RA)) {} in RegsMips64()
|
D | RegsMips.cpp | 33 : RegsImpl<uint32_t>(MIPS_REG_LAST, Location(LOCATION_REGISTER, MIPS_REG_RA)) {} in RegsMips()
|
D | RegsX86.cpp | 31 RegsX86::RegsX86() : RegsImpl<uint32_t>(X86_REG_LAST, Location(LOCATION_SP_OFFSET, -4)) {} in RegsX86()
|
D | RegsX86_64.cpp | 32 RegsX86_64::RegsX86_64() : RegsImpl<uint64_t>(X86_64_REG_LAST, Location(LOCATION_SP_OFFSET, -8)) {} in RegsX86_64()
|
D | DwarfSection.cpp | 476 RegsImpl<AddressType>* cur_regs = reinterpret_cast<RegsImpl<AddressType>*>(regs); in Eval()
|
/system/core/libunwindstack/include/unwindstack/ |
D | Regs.h | 91 class RegsImpl : public Regs { 93 RegsImpl(uint16_t total_regs, Location return_loc) in RegsImpl() function 95 virtual ~RegsImpl() = default;
|
D | RegsMips.h | 32 class RegsMips : public RegsImpl<uint32_t> {
|
D | RegsArm64.h | 32 class RegsArm64 : public RegsImpl<uint64_t> {
|
D | RegsArm.h | 32 class RegsArm : public RegsImpl<uint32_t> {
|
D | RegsMips64.h | 32 class RegsMips64 : public RegsImpl<uint64_t> {
|
D | RegsX86_64.h | 33 class RegsX86_64 : public RegsImpl<uint64_t> {
|
D | RegsX86.h | 33 class RegsX86 : public RegsImpl<uint32_t> {
|
/system/core/libunwindstack/tests/ |
D | RegsFake.h | 77 class RegsImplFake : public RegsImpl<TypeParam> { 80 : RegsImpl<TypeParam>(total_regs, Regs::Location(Regs::LOCATION_UNKNOWN, 0)) {} in RegsImplFake()
|
D | UnwindOfflineTest.cpp | 130 void ReadRegs(RegsImpl<AddressType>* regs, in ReadRegs()
|