Source File
ext.go
Belonging Package
github.com/tetratelabs/wazero/internal/engine/wazevo/backend/isa/amd64
package amd64// extMode represents the mode of extension in movzx/movsx.type extMode byteconst (// extModeBL represents Byte -> Longword.extModeBL extMode = iota// extModeBQ represents Byte -> Quadword.extModeBQ// extModeWL represents Word -> Longword.extModeWL// extModeWQ represents Word -> Quadword.extModeWQ// extModeLQ represents Longword -> Quadword.extModeLQ)// String implements fmt.Stringer.func ( extMode) () string {switch {case extModeBL:return "bl"case extModeBQ:return "bq"case extModeWL:return "wl"case extModeWQ:return "wq"case extModeLQ:return "lq"default:panic("BUG: invalid ext mode")}}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |