MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / GetAssociatedArchitectureByAddress

Method GetAssociatedArchitectureByAddress

arch/armv7/arch_armv7.cpp:1685–1693  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1683}
1684
1685Ref<Architecture> ArmCommonArchitecture::GetAssociatedArchitectureByAddress(uint64_t& addr)
1686{
1687 if (addr & 1)
1688 {
1689 addr &= ~1LL;
1690 return m_thumbArch;
1691 }
1692 return m_armArch;
1693}
1694
1695string ArmCommonArchitecture::GetFlagName(uint32_t flag)
1696{

Callers 2

ApplyRelocationMethod · 0.45
ApplyRelocationMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected