Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for asmvex (0.18 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    type asmFunc struct {
    	arch        *asmArch
    	size        int // size of all arguments
    	vars        map[string]*asmVar
    	varByOffset map[int]*asmVar
    }
    
    // An asmVar describes a single assembly variable.
    type asmVar struct {
    	name  string
    	kind  asmKind
    	typ   string
    	off   int
    	size  int
    	inner []*asmVar
    }
    
    var (
    	asmArch386      = asmArch{name: "386", bigEndian: false, stack: "SP", lr: false}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/a.out.go

    	ACNTTZD
    	ACNTTZDCC
    	ACOPY
    	APASTECC
    	ADARN
    	AMADDHD
    	AMADDHDU
    	AMADDLD
    
    	/* Vector */
    	ALVEBX
    	ALVEHX
    	ALVEWX
    	ALVX
    	ALVXL
    	ALVSL
    	ALVSR
    	ASTVEBX
    	ASTVEHX
    	ASTVEWX
    	ASTVX
    	ASTVXL
    	AVAND
    	AVANDC
    	AVNAND
    	AVOR
    	AVORC
    	AVNOR
    	AVXOR
    	AVEQV
    	AVADDUM
    	AVADDUBM
    	AVADDUHM
    	AVADDUWM
    	AVADDUDM
    	AVADDUQM
    	AVADDCU
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/cpu.go

    	AFCVTWS
    	AFCVTLS
    	AFCVTSW
    	AFCVTSL
    	AFCVTWUS
    	AFCVTLUS
    	AFCVTSWU
    	AFCVTSLU
    	AFSGNJS
    	AFSGNJNS
    	AFSGNJXS
    	AFMVXS
    	AFMVSX
    	AFMVXW
    	AFMVWX
    
    	// 11.8: Single-Precision Floating-Point Compare Instructions
    	AFEQS
    	AFLTS
    	AFLES
    
    	// 11.9: Single-Precision Floating-Point Classify Instruction
    	AFCLASSS
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/inst.go

    	case AFMULQ:
    		return &inst{0x53, 0x0, 0x0, 352, 0xb}
    	case AFMULS:
    		return &inst{0x53, 0x0, 0x0, 256, 0x8}
    	case AFMVDX:
    		return &inst{0x53, 0x0, 0x0, -224, 0x79}
    	case AFMVSX:
    		return &inst{0x53, 0x0, 0x0, -256, 0x78}
    	case AFMVWX:
    		return &inst{0x53, 0x0, 0x0, -256, 0x78}
    	case AFMVXD:
    		return &inst{0x53, 0x0, 0x0, -480, 0x71}
    	case AFMVXS:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	PrefixVEX3Bytes Prefix = 0xC4 // Long form of vex prefix
    )
    
    // IsREX reports whether p is a REX prefix byte.
    func (p Prefix) IsREX() bool {
    	return p&0xF0 == PrefixREX
    }
    
    func (p Prefix) IsVEX() bool {
    	return p&0xFF == PrefixVEX2Bytes || p&0xFF == PrefixVEX3Bytes
    }
    
    func (p Prefix) String() string {
    	p &^= PrefixImplicit | PrefixIgnored | PrefixInvalid
    	if s := prefixNames[p]; s != "" {
    		return s
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/asm.go

    		p.errorf("%s: expected immediate constant; found %s", pseudo, obj.Dconv(&emptyProg, addr))
    		return false
    	}
    	return true
    }
    
    // asmText assembles a TEXT pseudo-op.
    // TEXT runtimeĀ·sigtramp(SB),4,$0-0
    func (p *Parser) asmText(operands [][]lex.Token) {
    	if len(operands) != 2 && len(operands) != 3 {
    		p.errorf("expect two or three operands for TEXT")
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    		implicitData = false
    	)
    	for _, p := range inst.Prefix {
    		if p&0xFF == PrefixDataSize && p&PrefixImplicit != 0 {
    			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 "
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/parse.go

    	case "FUNCDATA":
    		p.asmFuncData(operands)
    	case "GLOBL":
    		p.asmGlobl(operands)
    	case "PCDATA":
    		p.asmPCData(operands)
    	case "PCALIGN":
    		p.asmPCAlign(operands)
    	case "TEXT":
    		p.asmText(operands)
    	default:
    		return false
    	}
    	return true
    }
    
    // symDefRef scans a line for potential text symbol definitions and
    // references and writes symabis information to w.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    am.leg.br ama.aichi.jp ama.shimane.jp amagasaki.hyogo.jp amakusa.kumamoto.jp amami.kagoshima.jp amazon amber.museum ambulance.aero ambulance.museum american.museum americana.museum americanantiques.museum americanart.museum americanexpress americanfamily amex amfam ami.ibaraki.jp amica amli.no amot.no amscompute.com amsterdam amsterdam.museum amusement.aero an.it analytics anamizu.ishikawa.jp anan.nagano.jp anan.tokushima.jp anani.br ancona.it and.museum andasuolo.no andebu.no ando.nara.jp andoy.no and...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top