Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 213 for asms (0.07 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/ld/asmb.go

    //   - writing out the code/data/dwarf Segments, applying relocations on the fly
    //   - writing out the architecture specific pieces.
    //
    // This function handles the first part.
    func asmb(ctxt *Link) {
    	// TODO(jfaller): delete me.
    	if thearch.Asmb != nil {
    		thearch.Asmb(ctxt, ctxt.loader)
    		return
    	}
    
    	if ctxt.IsELF {
    		Asmbelfsetup()
    	}
    
    	var wg sync.WaitGroup
    	f := func(ctxt *Link, out *OutBuf, start, length int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 09:22:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. src/cmd/vet/testdata/asm/asm.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file contains declarations to test the assembly in asm1.s.
    
    package testdata
    
    func arg1(x int8, y uint8)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 05 01:01:31 UTC 2019
    - 310 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/link/internal/arm/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: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top