Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for asms (0.08 sec)

  1. src/cmd/vet/vet_test.go

    			}
    
    			cmd := vetCmd(t, "-printfuncs=Warn,Warnf", pkg)
    
    			// The asm test assumes amd64.
    			if pkg == "asm" {
    				cmd.Env = append(cmd.Env, "GOOS=linux", "GOARCH=amd64")
    			}
    
    			dir := filepath.Join("testdata", pkg)
    			gos, err := filepath.Glob(filepath.Join(dir, "*.go"))
    			if err != nil {
    				t.Fatal(err)
    			}
    			asms, err := filepath.Glob(filepath.Join(dir, "*.s"))
    			if err != nil {
    				t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/cmd/internal/testdir/testdir_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    		var gos []string
    		var asms []string
    		for _, file := range files {
    			switch filepath.Ext(file.Name()) {
    			case ".go":
    				gos = append(gos, filepath.Join(longdir, file.Name()))
    			case ".s":
    				asms = append(asms, filepath.Join(longdir, file.Name()))
    			}
    
    		}
    		if len(asms) > 0 {
    			emptyHdrFile := filepath.Join(tempDir, "go_asm.h")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/wasm/asm.go

    	va += uint64(abi.MINFUNC)
    	return sect, n, va
    }
    
    type wasmDataSect struct {
    	sect *sym.Section
    	data []byte
    }
    
    var dataSects []wasmDataSect
    
    func asmb(ctxt *ld.Link, ldr *loader.Loader) {
    	sections := []*sym.Section{
    		ldr.SymSect(ldr.Lookup("runtime.rodata", 0)),
    		ldr.SymSect(ldr.Lookup("runtime.typelink", 0)),
    		ldr.SymSect(ldr.Lookup("runtime.itablink", 0)),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    			i++
    		}
    		oprange[r0] = optab[start:i]
    
    		switch r {
    		default:
    			if !opsetGen(r) {
    				ctxt.Diag("unknown op in build: %v", r)
    				log.Fatalf("instruction missing from switch in asm9.go:buildop: %v", r)
    			}
    
    		case ADCBF: /* unary indexed: op (b+a); op (b) */
    			opset(ADCBI, r0)
    
    			opset(ADCBST, r0)
    			opset(ADCBT, r0)
    			opset(ADCBTST, r0)
    			opset(ADCBZ, r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/asmz.go

    				zRXY(op_LG, uint32(p.To.Reg), regtmp(p), 0, 1, asm)
    				i2 -= 1
    			} else {
    				zRIL(_b, op_LGRL, uint32(p.To.Reg), 0, asm)
    			}
    		case AMOVW:
    			zRIL(_b, op_LGFRL, uint32(p.To.Reg), 0, asm)
    		case AMOVWZ:
    			zRIL(_b, op_LLGFRL, uint32(p.To.Reg), 0, asm)
    		case AMOVH:
    			zRIL(_b, op_LGHRL, uint32(p.To.Reg), 0, asm)
    		case AMOVHZ:
    			zRIL(_b, op_LLGHRL, uint32(p.To.Reg), 0, asm)
    		case AMOVB, AMOVBZ:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    	{ADMB, C_VCON, C_NONE, C_NONE, C_NONE, C_NONE, 51, 4, 0, 0, 0},
    	{AHINT, C_VCON, C_NONE, C_NONE, C_NONE, C_NONE, 52, 4, 0, 0, 0},
    	{ASYS, C_VCON, C_NONE, C_NONE, C_NONE, C_NONE, 50, 4, 0, 0, 0},
    	{ASYS, C_VCON, C_NONE, C_NONE, C_ZREG, C_NONE, 50, 4, 0, 0, 0},
    	{ASYSL, C_VCON, C_NONE, C_NONE, C_ZREG, C_NONE, 50, 4, 0, 0, 0},
    	{ATLBI, C_SPOP, C_NONE, C_NONE, C_NONE, C_NONE, 107, 4, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ppc64/asm.go

    // Inferno utils/5l/asm.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/5l/asm.c
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    			jt.Sym.WriteAddr(ctxt, int64(i)*8, 8, s, p.Pc)
    		}
    	}
    }
    
    func instinit(ctxt *obj.Link) {
    	if ycover[0] != 0 {
    		// Already initialized; stop now.
    		// This happens in the cmd/asm tests,
    		// each of which re-initializes the arch.
    		return
    	}
    
    	switch ctxt.Headtype {
    	case objabi.Hplan9:
    		plan9privates = ctxt.Lookup("_privates")
    	}
    
    	for i := range avxOptab {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/mips/asm0.go

    }
    
    func opset(a, b0 obj.As) {
    	oprange[a&obj.AMask] = oprange[b0]
    }
    
    func buildop(ctxt *obj.Link) {
    	if oprange[AOR&obj.AMask] != nil {
    		// Already initialized; stop now.
    		// This happens in the cmd/asm tests,
    		// each of which re-initializes the arch.
    		return
    	}
    
    	var n int
    
    	for i := 0; i < C_NCLASS; i++ {
    		for n = 0; n < C_NCLASS; n++ {
    			if cmp(n, i) {
    				xcmp[i][n] = true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/arm64/asm.go

    // Inferno utils/5l/asm.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/5l/asm.c
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
Back to top