diff options
| author | Alexander Taylor <alex@vector35.com> | 2025-04-08 14:17:44 -0400 |
|---|---|---|
| committer | Alexander Taylor <alex@vector35.com> | 2025-04-09 17:16:22 -0400 |
| commit | 2ea1bf8666ab3dcc1985d6871463c0d8bff0d78c (patch) | |
| tree | f98fe083234afca51099496d02d71360782e6eed | |
| parent | 7efec08a06a25591ceaf70fe36c834f623b25dc0 (diff) | |
Fix capitalization of AArch64.
| -rw-r--r-- | arch/arm64/README.md | 2 | ||||
| -rw-r--r-- | arch/arm64/arch_arm64.cpp | 14 | ||||
| -rw-r--r-- | plugins/dwarf/dwarf_export/src/lib.rs | 4 | ||||
| -rw-r--r-- | view/macho/machoview.cpp | 2 |
4 files changed, 11 insertions, 11 deletions
diff --git a/arch/arm64/README.md b/arch/arm64/README.md index c727d493..34a80d69 100644 --- a/arch/arm64/README.md +++ b/arch/arm64/README.md @@ -1,6 +1,6 @@ # arch-arm64 -This is the Aarch64 plugin that ships with Binary Ninja. +This is the AArch64 plugin that ships with Binary Ninja. ## What's What diff --git a/arch/arm64/arch_arm64.cpp b/arch/arm64/arch_arm64.cpp index 8493b1bf..b0dee144 100644 --- a/arch/arm64/arch_arm64.cpp +++ b/arch/arm64/arch_arm64.cpp @@ -148,7 +148,7 @@ static const char* GetRelocationString(MachoArm64RelocationType rel) { return relocTable[rel]; } - return "Unknown Aarch64 relocation"; + return "Unknown AArch64 relocation"; } @@ -179,7 +179,7 @@ static const char* GetRelocationString(PeArm64RelocationType rel) { return relocTable[rel]; } - return "Unknown Aarch64 relocation"; + return "Unknown AArch64 relocation"; } @@ -257,7 +257,7 @@ static const char* GetRelocationString(ElfArm64RelocationType rel) if (relocMap.count(rel)) return relocMap.at(rel); - return "Unknown Aarch64 relocation"; + return "Unknown AArch64 relocation"; } @@ -3431,20 +3431,20 @@ public: }; -static void InitAarch64Settings() +static void InitAArch64Settings() { Ref<Settings> settings = Settings::Instance(); settings->RegisterSetting("arch.aarch64.disassembly.alignRequired", R"({ - "title" : "AARCH64 Alignment Requirement", + "title" : "AArch64 Alignment Requirement", "type" : "boolean", "default" : true, "description" : "Require instructions be on 4-byte aligned addresses to be disassembled." })"); settings->RegisterSetting("arch.aarch64.disassembly.preferIntrinsics", R"({ - "title" : "AARCH64 Prefer Intrinsics for Vector Operations", + "title" : "AArch64 Prefer Intrinsics for Vector Operations", "type" : "boolean", "default" : true, "description" : "Prefer generating calls to intrinsics (where one is available) to lifting vector operations as unrolled loops (where available). Note that not all vector operations are currently lifted as either intrinsics or unrolled loops." @@ -3471,7 +3471,7 @@ extern "C" BINARYNINJAPLUGIN bool CorePluginInit() #endif { - InitAarch64Settings(); + InitAArch64Settings(); Architecture* arm64 = new Arm64Architecture(); diff --git a/plugins/dwarf/dwarf_export/src/lib.rs b/plugins/dwarf/dwarf_export/src/lib.rs index bac96729..bc159825 100644 --- a/plugins/dwarf/dwarf_export/src/lib.rs +++ b/plugins/dwarf/dwarf_export/src/lib.rs @@ -605,8 +605,8 @@ fn present_form(bv_arch: &str) -> Vec<FormResponses> { // TODO : Choose to export types/functions/etc let archs = [ "Unknown", - "Aarch64", - "Aarch64_Ilp32", + "AArch64", + "AArch64_Ilp32", "Arm", "Avr", "Bpf", diff --git a/view/macho/machoview.cpp b/view/macho/machoview.cpp index cda602ad..f1b3eabb 100644 --- a/view/macho/machoview.cpp +++ b/view/macho/machoview.cpp @@ -750,7 +750,7 @@ MachOHeader MachoView::HeaderForAddress(BinaryView* data, uint64_t address, bool break; case MachOAarch64: case MachOAarch6432: - m_logger->LogDebug("Aarch64 Thread state\n"); + m_logger->LogDebug("AArch64 Thread state\n"); if (thread.flavor != _ARM_THREAD_STATE64) { reader.SeekRelative(thread.count * sizeof(uint32_t)); |
