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

Method PerformGetAddressSize

binaryview.cpp:1547–1555  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1545}
1546
1547size_t BinaryView::PerformGetAddressSize() const
1548{
1549 Ref<Architecture> arch = GetDefaultArchitecture();
1550 if (arch)
1551 return arch->GetAddressSize();
1552 if (GetEnd() > (1LL << 32))
1553 return 8;
1554 return 4;
1555}
1556
1557
1558bool BinaryView::PerformSave(FileAccessor* file)

Callers 1

Calls 1

GetAddressSizeMethod · 0.45

Tested by

no test coverage detected