mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +00:00
57dc742c76
Bumps [github.com/KimMachineGun/automemlimit](https://github.com/KimMachineGun/automemlimit) from 0.2.4 to 0.2.5. - [Release notes](https://github.com/KimMachineGun/automemlimit/releases) - [Commits](https://github.com/KimMachineGun/automemlimit/compare/v0.2.4...v0.2.5) --- updated-dependencies: - dependency-name: github.com/KimMachineGun/automemlimit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
51 lines
808 B
Go
51 lines
808 B
Go
package asm
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// Register is the source or destination of most operations.
|
|
type Register uint8
|
|
|
|
// R0 contains return values.
|
|
const R0 Register = 0
|
|
|
|
// Registers for function arguments.
|
|
const (
|
|
R1 Register = R0 + 1 + iota
|
|
R2
|
|
R3
|
|
R4
|
|
R5
|
|
)
|
|
|
|
// Callee saved registers preserved by function calls.
|
|
const (
|
|
R6 Register = R5 + 1 + iota
|
|
R7
|
|
R8
|
|
R9
|
|
)
|
|
|
|
// Read-only frame pointer to access stack.
|
|
const (
|
|
R10 Register = R9 + 1
|
|
RFP = R10
|
|
)
|
|
|
|
// Pseudo registers used by 64bit loads and jumps
|
|
const (
|
|
PseudoMapFD = R1 // BPF_PSEUDO_MAP_FD
|
|
PseudoMapValue = R2 // BPF_PSEUDO_MAP_VALUE
|
|
PseudoCall = R1 // BPF_PSEUDO_CALL
|
|
PseudoFunc = R4 // BPF_PSEUDO_FUNC
|
|
)
|
|
|
|
func (r Register) String() string {
|
|
v := uint8(r)
|
|
if v == 10 {
|
|
return "rfp"
|
|
}
|
|
return fmt.Sprintf("r%d", v)
|
|
}
|