-
Notifications
You must be signed in to change notification settings - Fork 580
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cpu: support darwin/arm64 CPU feature detection #114
base: master
Are you sure you want to change the base?
Conversation
This PR (HEAD: 107027e) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/sys/+/332729 to see it. Tip: You can toggle comments from me using the |
107027e
to
1ba4687
Compare
This PR (HEAD: 1ba4687) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/sys/+/332729 to see it. Tip: You can toggle comments from me using the |
Message from Martin Möhrmann: Patch Set 4: (7 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/332729. |
1ba4687
to
c3be48e
Compare
This PR (HEAD: c3be48e) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/sys/+/332729 to see it. Tip: You can toggle comments from me using the |
c3be48e
to
cfc9f86
Compare
This PR (HEAD: cfc9f86) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/sys/+/332729 to see it. Tip: You can toggle comments from me using the |
021ce95
to
e57cd24
Compare
This PR (HEAD: e57cd24) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/sys/+/332729 to see it. Tip: You can toggle comments from me using the |
e57cd24
to
dbeb491
Compare
This PR (HEAD: dbeb491) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/sys/+/332729 to see it. Tip: You can toggle comments from me using the |
dbeb491
to
76cf32c
Compare
This PR (HEAD: 76cf32c) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/sys/+/332729 to see it. Tip: You can toggle comments from me using the |
Message from Hau Yang: Patch Set 4: (5 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/332729. |
Message from Hau Yang: Patch Set 9: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/332729. |
Message from Martin Möhrmann: Patch Set 10: (8 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/332729. |
76cf32c
to
a305a6c
Compare
This PR (HEAD: a305a6c) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/sys/+/332729 to see it. Tip: You can toggle comments from me using the |
a305a6c
to
7244160
Compare
This PR (HEAD: 7244160) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/sys/+/332729 to see it. Tip: You can toggle comments from me using the |
Message from Hau Yang: Patch Set 12: (8 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/332729. |
7244160
to
54c2df7
Compare
This PR (HEAD: 54c2df7) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/sys/+/332729 to see it. Tip: You can toggle comments from me using the |
54c2df7
to
7942793
Compare
This PR (HEAD: 7942793) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/sys/+/332729 to see it. Tip: You can toggle comments from me using the |
Message from Hau Yang: Patch Set 9: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/332729. |
Message from Martin Möhrmann: Patch Set 10: (8 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/332729. |
Message from Hau Yang: Patch Set 12: (8 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/332729. |
Support ARM64 features detection. The CPU features which are supported by Apple Silicon M1 are assumed as the minimal set of features for Go programs running on darwin/arm64. The ARM64 supporting features are referred to https://en.wikichip.org/wiki/arm/armv8#ARMv8_Extensions_and_Processor_Features
7942793
to
44d7b39
Compare
Message from Eric Lagergren: Patch Set 14: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/332729. |
Message from Daniel Martí: Patch Set 14: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/332729. |
Message from Eric Lagergren: Patch Set 14: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/332729. |
Message from Daniel Martí: Patch Set 14: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/332729. |
Message from Koichi Shiraishi: Patch Set 14: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/332729. |
This PR (HEAD: 44d7b39) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/sys/+/332729 to see it. Tip: You can toggle comments from me using the |
Message from Hau Yang: Patch Set 14: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/332729. |
Support ARM64 features detection. The CPU features which are supported by
Apple Silicon M1 are assumed as the minimal set of features for Go programs
running on darwin/arm64.
The ARM64 supporting features are referred to
https://en.wikichip.org/wiki/arm/armv8#ARMv8_Extensions_and_Processor_Features
close golang/go#42747