Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/asm/internal/arch/arm64.go

    		arm64SpecialOperand = map[string]arm64.SpecialOperand{}
    		for opd := arm64.SPOP_BEGIN; opd < arm64.SPOP_END; opd++ {
    			arm64SpecialOperand[opd.String()] = opd
    		}
    
    		// Handle some special cases.
    		specialMapping := map[string]arm64.SpecialOperand{
    			// The internal representation of CS(CC) and HS(LO) are the same.
    			"CS": arm64.SPOP_HS,
    			"CC": arm64.SPOP_LO,
    		}
    		for s, opd := range specialMapping {
    			arm64SpecialOperand[s] = opd
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Sep 29 09:04:58 GMT 2022
    - 10.4K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/parse.go

    	if tok.ScanToken == scanner.Ident && !p.atStartOfRegister(name) {
    		switch p.arch.Family {
    		case sys.ARM64:
    			// arm64 special operands.
    			if opd := arch.GetARM64SpecialOperand(name); opd != arm64.SPOP_END {
    				a.Type = obj.TYPE_SPECIAL
    				a.Offset = int64(opd)
    				break
    			}
    			fallthrough
    		default:
    			// We have a symbol. Parse $sym±offset(symkind)
    			p.symbolReference(a, p.qualifySymbol(name), prefix)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  3. api/go1.16.txt

    pkg debug/elf, const DT_POSFLAG_1 DynTag
    pkg debug/elf, const DT_PPC64_GLINK = 1879048192
    pkg debug/elf, const DT_PPC64_GLINK DynTag
    pkg debug/elf, const DT_PPC64_OPD = 1879048193
    pkg debug/elf, const DT_PPC64_OPD DynTag
    pkg debug/elf, const DT_PPC64_OPDSZ = 1879048194
    pkg debug/elf, const DT_PPC64_OPDSZ DynTag
    pkg debug/elf, const DT_PPC64_OPT = 1879048195
    pkg debug/elf, const DT_PPC64_OPT DynTag
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
Back to top