[PATCH] D95966: [AIX][support] Implement getHostCPUName
David Tenty via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 8 11:00:16 PST 2021
daltenty updated this revision to Diff 322171.
daltenty added a comment.
- Handle specialized cases for pwr 4/5/6
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D95966/new/
https://reviews.llvm.org/D95966
Files:
llvm/lib/Support/Host.cpp
llvm/unittests/Support/Host.cpp
Index: llvm/unittests/Support/Host.cpp
===================================================================
--- llvm/unittests/Support/Host.cpp
+++ llvm/unittests/Support/Host.cpp
@@ -431,4 +431,33 @@
ASSERT_EQ(std::tie(SystemMajor, SystemMinor),
std::tie(TargetMajor, TargetMinor));
}
+
+TEST_F(HostTest, AIXHostCPUDetect) {
+ // return a value base on the current processor implementation mode.
+ const char *ExePath = "/usr/sbin/getsystype";
+ StringRef argv[] = {ExePath, "-i"};
+ std::unique_ptr<char[]> Buffer;
+ off_t Size;
+ ASSERT_EQ(runAndGetCommandOutput(ExePath, argv, Buffer, Size), true);
+ StringRef CPU(Buffer.get(), Size);
+ StringRef MCPU = StringSwitch<const char *>(CPU)
+ .Case("POWER 4\n", "pwr4")
+ .Case("POWER 5\n", "pwr5")
+ .Case("POWER 6\n", "pwr6")
+ .Case("POWER 7\n", "pwr7")
+ .Case("POWER 8\n", "pwr8")
+ .Case("POWER 9\n", "pwr9")
+ .Case("POWER 10\n", "pwr10")
+ .Default("unknown");
+
+ StringRef HostCPU = sys::getHostCPUName();
+
+ // just do the comparision on the base implementation mode.
+ if (HostCPU == "970")
+ HostCPU = StringRef("pwr4");
+ else if (isalpha(HostCPU.back()))
+ HostCPU=HostCPU.slice(0,HostCPU.size()-1);
+
+ EXPECT_EQ(HostCPU, MCPU);
+}
#endif
Index: llvm/lib/Support/Host.cpp
===================================================================
--- llvm/lib/Support/Host.cpp
+++ llvm/lib/Support/Host.cpp
@@ -43,6 +43,9 @@
#include <mach/mach_host.h>
#include <mach/machine.h>
#endif
+#ifdef _AIX
+#include <sys/systemcfg.h>
+#endif
#define DEBUG_TYPE "host-detection"
@@ -1217,6 +1220,38 @@
return "generic";
}
+#elif defined(_AIX)
+StringRef sys::getHostCPUName() {
+ switch (_system_configuration.implementation) {
+ case POWER_4:
+ if (_system_configuration.version == PV_4_3)
+ return "970";
+ return "pwr4";
+ case POWER_5:
+ if (_system_configuration.version == PV_5)
+ return "pwr5";
+ return "pwr5x";
+ case POWER_6:
+ if (_system_configuration.version == PV_6_Compat)
+ return "pwr6";
+ return "pwr6x";
+ case POWER_7:
+ return "pwr7";
+ case POWER_8:
+ return "pwr8";
+ case POWER_9:
+ return "pwr9";
+// TODO: simplify this once the macro is available in all OS levels.
+#ifdef POWER_10
+ case POWER_10:
+#else
+ case 0x40000:
+#endif
+ return "pwr10";
+ default:
+ return "generic";
+ }
+}
#else
StringRef sys::getHostCPUName() { return "generic"; }
#endif
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D95966.322171.patch
Type: text/x-patch
Size: 2623 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210208/a88fddd1/attachment.bin>
More information about the llvm-commits
mailing list