Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for instArgs (0.32 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    // args[i] == 0 marks the end of the argument list.
    type instFormat struct {
    	mask     uint32
    	value    uint32
    	priority int8
    	op       Op
    	opBits   uint64
    	args     instArgs
    }
    
    type instArgs [4]instArg
    
    var (
    	errMode    = fmt.Errorf("unsupported execution mode")
    	errShort   = fmt.Errorf("truncated instruction")
    	errUnknown = fmt.Errorf("unknown instruction")
    )
    
    var decoderCover []bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package arm64asm
    
    import (
    	"encoding/binary"
    	"fmt"
    )
    
    type instArgs [5]instArg
    
    // An instFormat describes the format of an instruction encoding.
    // An instruction with 32-bit value x matches the format if x&mask == value
    // and the predicator: canDecode(x) return true.
    type instFormat struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
Back to top