mirror of
https://github.com/cheat/cheat.git
synced 2026-03-07 11:13:33 +01:00
- Bump Go from 1.19 to 1.26 and update all dependencies - Rewrite CI workflow with matrix strategy (Linux, macOS, Windows) - Update GitHub Actions to current versions (checkout@v4, setup-go@v5) - Update CodeQL actions from v1 to v3 - Fix cross-platform bug in mock/path.go (path.Join -> filepath.Join) - Clean up dependabot config (weekly schedule, remove stale ignore) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
37 lines
1.1 KiB
ArmAsm
37 lines
1.1 KiB
ArmAsm
// Copyright (c) 2015 Klaus Post, released under MIT License. See LICENSE file.
|
|
|
|
//+build arm64,!gccgo,!noasm,!appengine
|
|
|
|
// See https://www.kernel.org/doc/Documentation/arm64/cpu-feature-registers.txt
|
|
|
|
// func getMidr
|
|
TEXT ·getMidr(SB), 7, $0
|
|
WORD $0xd5380000 // mrs x0, midr_el1 /* Main ID Register */
|
|
MOVD R0, midr+0(FP)
|
|
RET
|
|
|
|
// func getProcFeatures
|
|
TEXT ·getProcFeatures(SB), 7, $0
|
|
WORD $0xd5380400 // mrs x0, id_aa64pfr0_el1 /* Processor Feature Register 0 */
|
|
MOVD R0, procFeatures+0(FP)
|
|
RET
|
|
|
|
// func getInstAttributes
|
|
TEXT ·getInstAttributes(SB), 7, $0
|
|
WORD $0xd5380600 // mrs x0, id_aa64isar0_el1 /* Instruction Set Attribute Register 0 */
|
|
WORD $0xd5380621 // mrs x1, id_aa64isar1_el1 /* Instruction Set Attribute Register 1 */
|
|
MOVD R0, instAttrReg0+0(FP)
|
|
MOVD R1, instAttrReg1+8(FP)
|
|
RET
|
|
|
|
TEXT ·getVectorLength(SB), 7, $0
|
|
WORD $0xd2800002 // mov x2, #0
|
|
WORD $0x04225022 // addvl x2, x2, #1
|
|
WORD $0xd37df042 // lsl x2, x2, #3
|
|
WORD $0xd2800003 // mov x3, #0
|
|
WORD $0x04635023 // addpl x3, x3, #1
|
|
WORD $0xd37df063 // lsl x3, x3, #3
|
|
MOVD R2, vl+0(FP)
|
|
MOVD R3, pl+8(FP)
|
|
RET
|