Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for opSuffix (0.09 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)
Back to top