Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for opSuffix (0.23 sec)

  1. src/cmd/internal/obj/x86/evex.go

    	"<bad suffix>",
    }
    
    // opSuffix represents instruction opcode suffix.
    // Compound (multi-part) suffixes expressed with single opSuffix value.
    //
    // uint8 type is used to fit obj.Prog.Scond.
    type opSuffix uint8
    
    // badOpSuffix is used to represent all invalid suffix combinations.
    const badOpSuffix = opSuffix(len(opSuffixTable) - 1)
    
    // newOpSuffix returns opSuffix object that matches suffixes string.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/list6.go

    }
    
    func rlconv(bits int64) string {
    	reg0, reg1 := decodeRegisterRange(bits)
    	return fmt.Sprintf("[%s-%s]", rconv(reg0), rconv(reg1))
    }
    
    func opSuffixString(s uint8) string {
    	return "." + opSuffix(s).String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/cpu.go

    	AFNED
    	AFNES
    	AMOV
    	AMOVB
    	AMOVBU
    	AMOVF
    	AMOVD
    	AMOVH
    	AMOVHU
    	AMOVW
    	AMOVWU
    	ANEG
    	ANEGW
    	ANOT
    	ASEQZ
    	ASNEZ
    
    	// End marker
    	ALAST
    )
    
    // opSuffix encoding to uint8 which fit into p.Scond
    var rmSuffixSet = map[string]uint8{
    	"RNE": RM_RNE,
    	"RTZ": RM_RTZ,
    	"RDN": RM_RDN,
    	"RUP": RM_RUP,
    	"RMM": RM_RMM,
    }
    
    const rmSuffixBit uint8 = 1 << 7
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top