diff options
| author | bunnei <bunneidev@gmail.com> | 2018-07-21 11:38:16 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-21 11:38:16 -0700 |
| commit | de7cb91995666db7c469feab7bfe90be2156173d (patch) | |
| tree | 5009c848fbc5d75c3612387564ac41267e19d96f /src/core/arm/unicorn | |
| parent | 867ba1ceeec04f186cf14809c36efd50f0838e31 (diff) | |
| parent | ae09adfcb343f4ebf73a3a85a911422cbf50d6fc (diff) | |
Merge pull request #750 from lioncash/ctx
arm_interface: Remove unused tls_address member of ThreadContext
Diffstat (limited to 'src/core/arm/unicorn')
| -rw-r--r-- | src/core/arm/unicorn/arm_unicorn.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/arm/unicorn/arm_unicorn.cpp b/src/core/arm/unicorn/arm_unicorn.cpp index 44a46bf04..4c11f35a4 100644 --- a/src/core/arm/unicorn/arm_unicorn.cpp +++ b/src/core/arm/unicorn/arm_unicorn.cpp @@ -230,8 +230,6 @@ void ARM_Unicorn::SaveContext(ARM_Interface::ThreadContext& ctx) { CHECKED(uc_reg_read_batch(uc, uregs, tregs, 31)); - ctx.tls_address = GetTlsAddress(); - for (int i = 0; i < 32; ++i) { uregs[i] = UC_ARM64_REG_Q0 + i; tregs[i] = &ctx.fpu_registers[i]; @@ -259,8 +257,6 @@ void ARM_Unicorn::LoadContext(const ARM_Interface::ThreadContext& ctx) { CHECKED(uc_reg_write_batch(uc, uregs, tregs, 31)); - SetTlsAddress(ctx.tls_address); - for (auto i = 0; i < 32; ++i) { uregs[i] = UC_ARM64_REG_Q0 + i; tregs[i] = (void*)&ctx.fpu_registers[i]; |
