Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for instArgs (0.17 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	// WFI
    	{0xffffffff, 0xd503207f, WFI, instArgs{}, nil},
    	// YIELD
    	{0xffffffff, 0xd503203f, YIELD, instArgs{}, nil},
    	// HINT #<imm>
    	{0xfffff01f, 0xd503201f, HINT, instArgs{arg_immediate_0_127_CRm_op2}, nil},
    	// HLT #<imm>
    	{0xffe0001f, 0xd4400000, HLT, instArgs{arg_immediate_0_65535_imm16}, nil},
    	// ISB {<option>|<imm>}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	{0x0fe00000, 0x02800000, 2, ADD_EQ, 0x14011c04, instArgs{arg_R_12, arg_R_16, arg_const}},                      // ADD{S}<c> <Rd>,<Rn>,#<const> cond:4|0|0|1|0|1|0|0|S|Rn:4|Rd:4|imm12:12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/arg.go

    //       The encoding size = 11, Q = 0 is reserved.
    //
    // - arg_Vt_1_arrangement_H_index__Q_S_size_1:
    //     one register with arrangement:H and element index encoded in "Q:S:size<1>".
    
    type instArg uint16
    
    const (
    	_ instArg = iota
    	arg_Bt
    	arg_Cm
    	arg_Cn
    	arg_cond_AllowALNV_Normal
    	arg_conditional
    	arg_cond_NotAllowALNV_Invert
    	arg_Da
    	arg_Dd
    	arg_Dm
    	arg_Dn
    	arg_Dt
    	arg_Dt2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 20K bytes
    - Viewed (0)
Back to top