Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for isHex (0.02 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    		for i, p := range inst.Prefix {
    			switch p &^ PrefixIgnored {
    			case PrefixData16, PrefixData32, PrefixCS, PrefixDS, PrefixES, PrefixSS:
    				inst.Prefix[i] |= PrefixImplicit
    			}
    			if p.IsREX() {
    				inst.Prefix[i] |= PrefixImplicit
    			}
    			if p.IsVEX() {
    				if p == PrefixVEX3Bytes {
    					inst.Prefix[i+2] |= PrefixImplicit
    				}
    				inst.Prefix[i] |= PrefixImplicit
    				inst.Prefix[i+1] |= PrefixImplicit
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    			implicitData = true
    		}
    	}
    	for _, p := range inst.Prefix {
    		if p == 0 || p.IsVEX() {
    			break
    		}
    		if p&PrefixImplicit != 0 {
    			continue
    		}
    		switch p &^ (PrefixIgnored | PrefixInvalid) {
    		default:
    			if p.IsREX() {
    				if p&0xFF == PrefixREX {
    					prefix += "rex "
    				} else {
    					prefix += "rex." + p.String()[4:] + " "
    				}
    				break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    			for j := 0; j < n; j++ {
    				prefix := Prefix(decoder[pc+2*j])
    				if prefix.IsREX() {
    					rexUsed |= prefix
    					if rex&prefix == prefix {
    						pc = int(decoder[pc+2*j+1])
    						continue Decode
    					}
    					continue
    				}
    				ok := false
    				if prefix == 0 {
    					ok = true
    				} else if prefix.IsREX() {
    					rexUsed |= prefix
    					if rex&prefix == prefix {
    						ok = true
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
Back to top