Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Asm (0.03 sec)

  1. src/cmd/internal/obj/loong64/asm.go

    				q.From.Type = obj.TYPE_CONST
    				q.From.Offset = loopAlign
    				// Don't associate the synthesized PCALIGN with
    				// the original source position, for deterministic
    				// mapping between source and corresponding asm.
    				// q.Pos = p.Pos
    
    				// Manually make the PCALIGN come into effect,
    				// since this loop iteration is for p.
    				pc += int64(pcAlignPadLength(ctxt, pc, loopAlign))
    				p.Pc = pc
    				rescan = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "FMADDD", argLength: 3, reg: fp31, asm: "FMADDD"},   // +arg0 + (arg1 * arg2)
    		{name: "FNMADDS", argLength: 3, reg: fp31, asm: "FNMADDS"}, // -arg0 - (arg1 * arg2)
    		{name: "FNMADDD", argLength: 3, reg: fp31, asm: "FNMADDD"}, // -arg0 - (arg1 * arg2)
    		{name: "FMSUBS", argLength: 3, reg: fp31, asm: "FMSUBS"},   // +arg0 - (arg1 * arg2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ppc64/ssa.go

    		r2 := v.Args[1].Reg()
    		p := s.Prog(v.Op.Asm())
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = r2
    		p.Reg = r1
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = r
    
    	case ssa.OpPPC64ADDCC, ssa.OpPPC64ANDCC, ssa.OpPPC64SUBCC, ssa.OpPPC64ORCC, ssa.OpPPC64XORCC, ssa.OpPPC64NORCC,
    		ssa.OpPPC64ANDNCC:
    		r1 := v.Args[0].Reg()
    		r2 := v.Args[1].Reg()
    		p := s.Prog(v.Op.Asm())
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = r2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    // Issue 18225.
    // This is really a cmd/asm issue but this is a convenient place to test it.
    func TestConcurrentAsm(t *testing.T) {
    	skipIfGccgo(t, "gccgo does not use cmd/asm")
    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    	asm := `DATA ·constants<>+0x0(SB)/8,$0
    GLOBL ·constants<>(SB),8,$8
    `
    	tg.tempFile("go/src/p/a.s", asm)
    	tg.tempFile("go/src/p/b.s", asm)
    	tg.tempFile("go/src/p/p.go", `package p`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    		if err != nil {
    			return err
    		}
    		objs = append(objs, "go.o")
    		if len(asms) > 0 {
    			cmd = []string{goTool, "tool", "asm", "-p=main", "-e", "-I", ".", "-o", "asm.o"}
    			cmd = append(cmd, asms...)
    			_, err = runcmd(cmd...)
    			if err != nil {
    				return err
    			}
    			objs = append(objs, "asm.o")
    		}
    		cmd = []string{goTool, "tool", "pack", "c", "all.a"}
    		cmd = append(cmd, objs...)
    		_, err = runcmd(cmd...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    // Before
    tasks.create("foo", { Task it -> it.description "Foo task" } as Action)
    
    // Fixed
    tasks.create("foo", { it.description "Foo task" } as Action<Task>)
    ```
    
    ==== Upgrade to ASM 9.7
    
    ASM was upgraded from 9.6 to https://asm.ow2.io/versions.html[9.7] to ensure earlier compatibility for Java 23.
    
    [[changes_8.7]]
    == Upgrading from 8.6 and earlier
    
    === Potential breaking changes
    
    ==== Upgrade to Kotlin 1.9.22
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    		// We've generated the right files; the go command can do the build.
    		if vflag > 1 {
    			errprintf("skip build for cross-compile %s\n", pkg)
    		}
    		return
    	}
    
    	asmArgs := []string{
    		pathf("%s/asm", tooldir),
    		"-I", workdir,
    		"-I", pathf("%s/pkg/include", goroot),
    		"-D", "GOOS_" + goos,
    		"-D", "GOARCH_" + goarch,
    		"-D", "GOOS_GOARCH_" + goos + "_" + goarch,
    		"-p", pkg,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

    import org.codehaus.groovy.control.ResolveVisitor;
    import org.codehaus.groovy.control.SourceUnit;
    import org.codehaus.groovy.syntax.Types;
    import org.codehaus.groovy.transform.trait.Traits;
    import org.objectweb.asm.Opcodes;
    
    import javax.inject.Inject;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.reflect.Modifier;
    import java.util.HashMap;
    import java.util.HashSet;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    // Inferno utils/8l/asm.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/8l/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 May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top